diff --git a/Customizations/AllKnownLayouts.ts b/Customizations/AllKnownLayouts.ts index 3bfa56f93..f979a0751 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(); @@ -209,9 +210,9 @@ export class AllKnownLayouts { ]) } - private static getSharedLayers(): Map { + 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") @@ -226,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) => { @@ -236,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++) { diff --git a/Docs/BuiltinIndex.md b/Docs/BuiltinIndex.md index a9f1a8c58..3b4f3e478 100644 --- a/Docs/BuiltinIndex.md +++ b/Docs/BuiltinIndex.md @@ -39,9 +39,11 @@ + [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) @@ -101,6 +103,7 @@ - play_forest - playground - public_bookcase + - rainbow_crossings - recycling - shops - slow_roads @@ -532,6 +535,17 @@ +### wikidata.school-language + + + + + + - school + + + + ### id_presets.shop_types @@ -561,6 +575,17 @@ - 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 c5b18bb99..20382a5c2 100644 --- a/Docs/BuiltinLayers.md +++ b/Docs/BuiltinLayers.md @@ -837,6 +837,7 @@ The following layers are included in MapComplete: - [play_forest](./Layers/play_forest.md) - [playground](./Layers/playground.md) - [public_bookcase](./Layers/public_bookcase.md) + - [rainbow_crossings](./Layers/rainbow_crossings.md) - [recycling](./Layers/recycling.md) - [school](./Layers/school.md) - [shelter](./Layers/shelter.md) diff --git a/Docs/Layers/bike_repair_station.md b/Docs/Layers/bike_repair_station.md index d06f83a32..42769afa4 100644 --- a/Docs/Layers/bike_repair_station.md +++ b/Docs/Layers/bike_repair_station.md @@ -26,6 +26,7 @@ A layer showing bicycle pumps and bicycle repair tool stands - [cyclofix](https://mapcomplete.osm.be/cyclofix) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) diff --git a/Docs/Layers/bike_shop.md b/Docs/Layers/bike_shop.md index dc4ff20e9..54a5143a9 100644 --- a/Docs/Layers/bike_shop.md +++ b/Docs/Layers/bike_shop.md @@ -26,6 +26,7 @@ A shop specifically selling bicycles or related items - [cyclofix](https://mapcomplete.osm.be/cyclofix) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) diff --git a/Docs/Layers/cafe_pub.md b/Docs/Layers/cafe_pub.md index 3b98fa7d9..a80604f11 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) diff --git a/Docs/Layers/cycleways_and_roads.md b/Docs/Layers/cycleways_and_roads.md index 7d2222aec..25f215eb3 100644 --- a/Docs/Layers/cycleways_and_roads.md +++ b/Docs/Layers/cycleways_and_roads.md @@ -18,6 +18,7 @@ All infrastructure that someone can cycle over, accompanied with questions about - 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) @@ -30,7 +31,9 @@ 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) diff --git a/Docs/Layers/doctors.md b/Docs/Layers/doctors.md index 45b9a24cd..ffd56c75c 100644 --- a/Docs/Layers/doctors.md +++ b/Docs/Layers/doctors.md @@ -7,6 +7,8 @@ +This layer shows doctor offices, dentists and other healthcare facilities + @@ -24,6 +26,7 @@ - [healthcare](https://mapcomplete.osm.be/healthcare) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) @@ -62,6 +65,7 @@ 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) | [](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) @@ -151,6 +155,20 @@ This is rendered with {website} +### 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 diff --git a/Docs/Layers/entrance.md b/Docs/Layers/entrance.md index 54edacf28..ccbef0aae 100644 --- a/Docs/Layers/entrance.md +++ b/Docs/Layers/entrance.md @@ -28,6 +28,7 @@ A layer showing entrances and offering capabilities to survey some advanced data - [entrances](https://mapcomplete.osm.be/entrances) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) diff --git a/Docs/Layers/food.md b/Docs/Layers/food.md index 296ec9c6a..412c84496 100644 --- a/Docs/Layers/food.md +++ b/Docs/Layers/food.md @@ -27,6 +27,7 @@ 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) diff --git a/Docs/Layers/kerbs.md b/Docs/Layers/kerbs.md index 638ea1d40..a7af81395 100644 --- a/Docs/Layers/kerbs.md +++ b/Docs/Layers/kerbs.md @@ -29,6 +29,7 @@ A layer showing kerbs. - [kerbs_and_crossings](https://mapcomplete.osm.be/kerbs_and_crossings) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) @@ -121,7 +122,7 @@ 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 is rendered with Kerb height: {kerb:height} diff --git a/Docs/Layers/lit_streets.md b/Docs/Layers/lit_streets.md index 76285a378..ae7d43085 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` diff --git a/Docs/Layers/parking.md b/Docs/Layers/parking.md index 3f8479bc8..81cc86629 100644 --- a/Docs/Layers/parking.md +++ b/Docs/Layers/parking.md @@ -25,6 +25,7 @@ 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) @@ -53,6 +54,19 @@ 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/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 @@ -61,6 +75,66 @@ Elements must have the all of following tags to be shown on this layer: This tagrendering has no question and is thus read-only + + + + +### 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 + This document is autogenerated from [assets/layers/parking/parking.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/parking/parking.json) \ No newline at end of file diff --git a/Docs/Layers/pedestrian_path.md b/Docs/Layers/pedestrian_path.md index 748945885..51ec053f2 100644 --- a/Docs/Layers/pedestrian_path.md +++ b/Docs/Layers/pedestrian_path.md @@ -27,6 +27,7 @@ Pedestrian footpaths, especially used for indoor navigation and snapping entranc - [entrances](https://mapcomplete.osm.be/entrances) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) diff --git a/Docs/Layers/picnic_table.md b/Docs/Layers/picnic_table.md index 9e8e1ee42..f0b4132c2 100644 --- a/Docs/Layers/picnic_table.md +++ b/Docs/Layers/picnic_table.md @@ -27,6 +27,7 @@ The layer showing picnic tables - [benches](https://mapcomplete.osm.be/benches) - [nature](https://mapcomplete.osm.be/nature) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) diff --git a/Docs/Layers/rainbow_crossing_high_zoom.md b/Docs/Layers/rainbow_crossing_high_zoom.md new file mode 100644 index 000000000..f5ea2ab29 --- /dev/null +++ b/Docs/Layers/rainbow_crossing_high_zoom.md @@ -0,0 +1,106 @@ + + + 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 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 + + + +This tagrendering has no question and is thus read-only + + + + + +### minimap + + + +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 000000000..b7990c47b --- /dev/null +++ b/Docs/Layers/rainbow_crossings.md @@ -0,0 +1,86 @@ + + + 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 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/school.md b/Docs/Layers/school.md index f0e64ecce..03a916e15 100644 --- a/Docs/Layers/school.md +++ b/Docs/Layers/school.md @@ -21,6 +21,18 @@ Schools giving primary and secondary education and post-secondary, non-tertiary +#### Themes using this layer + + + + + + - [onwheels](https://mapcomplete.osm.be/onwheels) + - [personal](https://mapcomplete.osm.be/personal) + + + + Basic tags for this layer --------------------------- diff --git a/Docs/Layers/shops.md b/Docs/Layers/shops.md index b3f29720b..679d5d7f6 100644 --- a/Docs/Layers/shops.md +++ b/Docs/Layers/shops.md @@ -25,6 +25,7 @@ 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) diff --git a/Docs/Layers/street_lamps.md b/Docs/Layers/street_lamps.md index 6e4c91d08..fc10da2ad 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 diff --git a/Docs/Layers/toilet.md b/Docs/Layers/toilet.md index 0717b5afc..70fb53261 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) diff --git a/Docs/Layers/viewpoint.md b/Docs/Layers/viewpoint.md index 7ee32f4af..e4522ef0f 100644 --- a/Docs/Layers/viewpoint.md +++ b/Docs/Layers/viewpoint.md @@ -19,6 +19,18 @@ A nice viewpoint or nice view. Ideal to add an image if no other category fits +#### Themes using this layer + + + + + + - [onwheels](https://mapcomplete.osm.be/onwheels) + - [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 20ed9ceaa..558af2997 100644 --- a/Docs/Layers/walls_and_buildings.md +++ b/Docs/Layers/walls_and_buildings.md @@ -33,6 +33,7 @@ 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) + - [onwheels](https://mapcomplete.osm.be/onwheels) - [personal](https://mapcomplete.osm.be/personal) - [surveillance](https://mapcomplete.osm.be/surveillance) diff --git a/Docs/Schemas/AndTagConfigJson.schema.json b/Docs/Schemas/AndTagConfigJson.schema.json new file mode 100644 index 000000000..9f510d6b2 --- /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 000000000..2903f36b1 --- /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 bdaca19ed..e0b80f573 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 eb67718d7..14fd5ed83 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 9d232d1f2..157922a93 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 1c751bf9a..762e6f4ad 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 5e5019560..d6557cac4 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 014ec8b6f..6030dd61d 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 7b46dfbdc..7e5630400 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", @@ -304,7 +291,17 @@ "type": "object", "properties": { "builtin": { - "type": "string" + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] }, "override": {} }, @@ -367,7 +364,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 +375,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 +391,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 +510,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 +545,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 +586,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 +727,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 +771,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 +879,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 +987,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 +1009,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" @@ -976,7 +1028,7 @@ "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]", + "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": { @@ -1049,9 +1101,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 +1180,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 +1197,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 19fb40134..5fc142c56 100644 --- a/Docs/Schemas/LayerConfigJsonJSC.ts +++ b/Docs/Schemas/LayerConfigJsonJSC.ts @@ -1,1184 +1,1247 @@ 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": "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" + } ] + } }, - "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": {} + }, + "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:any;})[]>" + }, + { "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" + } + ] + } + } + }, + "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:any;})[]>": { + "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": {} + }, + "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 ec1bd4df9..6bf1155aa 100644 --- a/Docs/Schemas/LayoutConfigJson.schema.json +++ b/Docs/Schemas/LayoutConfigJson.schema.json @@ -253,7 +253,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 +288,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 +407,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 +442,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 +483,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 +624,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 +668,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 +776,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 +884,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 +906,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" @@ -870,7 +925,7 @@ "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]", + "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": { @@ -943,9 +998,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 +1077,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 +1094,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" @@ -1148,15 +1217,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 +1233,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 +1246,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", @@ -1431,7 +1487,17 @@ "type": "object", "properties": { "builtin": { - "type": "string" + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] }, "override": {} }, @@ -1494,7 +1560,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 +1571,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", diff --git a/Docs/Schemas/LayoutConfigJsonJSC.ts b/Docs/Schemas/LayoutConfigJsonJSC.ts index 7b03e721b..627d070db 100644 --- a/Docs/Schemas/LayoutConfigJsonJSC.ts +++ b/Docs/Schemas/LayoutConfigJsonJSC.ts @@ -1,1542 +1,1605 @@ 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" + }, + "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" + } + ] + } + } + }, + "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:any;})[]>": { + "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": {} + }, + "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" + ] + }, + "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": "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": { + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "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 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 a852559fd..bb1365aea 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 5f4e0a443..5c7aea7cd 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 000000000..b2dd05386 --- /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 000000000..5f3d2c5c7 --- /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 d248960be..eee6d82e7 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 9c62ce5ca..c32177955 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 000000000..338fb9524 --- /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 000000000..c0aa3ec56 --- /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 dea072665..211201cd9 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 09c31651d..d3ec5552a 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 8bf8cdfa1..ea5bf65af 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 3bdb30066..cb14ce95b 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 81d22de45..120b922da 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 49c3479eb..dd99db574 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 000000000..326d7601d --- /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 000000000..5c3745a21 --- /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 3ad494ccb..e4ea00cb1 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 b4a8e2990..c7acab367 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 fccfb49a8..e3b47b1d0 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" @@ -618,7 +673,7 @@ "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]", + "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": { @@ -691,9 +746,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 +825,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 +842,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 4cdaad0b5..3a84c9689 100644 --- a/Docs/Schemas/TilesourceConfigJsonJSC.ts +++ b/Docs/Schemas/TilesourceConfigJsonJSC.ts @@ -1,826 +1,892 @@ 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" + } + ] + } + } + }, + "default<(string|QuestionableTagRenderingConfigJson|{builtin:string;override:any;})[]>": { + "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": {} + }, + "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 0941241c7..715b15a77 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 27a62b6b2..43573dfd9 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/TagInfo/mapcomplete_healthcare.json b/Docs/TagInfo/mapcomplete_healthcare.json index 5f7b5e2d1..a3f63a874 100644 --- a/Docs/TagInfo/mapcomplete_healthcare.json +++ b/Docs/TagInfo/mapcomplete_healthcare.json @@ -69,6 +69,10 @@ "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')" diff --git a/Docs/TagInfo/mapcomplete_onwheels.json b/Docs/TagInfo/mapcomplete_onwheels.json new file mode 100644 index 000000000..93f89ca68 --- /dev/null +++ b/Docs/TagInfo/mapcomplete_onwheels.json @@ -0,0 +1,3347 @@ +{ + "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": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "cycleway" + }, + { + "key": "cycleway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "lane" + }, + { + "key": "cycleway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "shared_lane" + }, + { + "key": "cycleway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "track" + }, + { + "key": "cyclestreet", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "yes" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "residential" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "tertiary" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "unclassified" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "primary" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "secondary" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "tertiary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "primary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "secondary_link" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "service" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "footway" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "pedestrian" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "living_street" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Cycleways and roads showing features with this tag", + "value": "path" + }, + { + "key": "bicycle", + "description": "The MapComplete theme OnWheels 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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels') 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 'OnWheels')" + }, + { + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')" + }, + { + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "value": "impassable" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'surface' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')" + }, + { + "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 'OnWheels')", + "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 'OnWheels')" + }, + { + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')" + }, + { + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')" + }, + { + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "value": "kerb" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Pedestrian paths showing features with this tag", + "value": "footway" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Pedestrian paths showing features with this tag", + "value": "path" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Pedestrian paths showing features with this tag", + "value": "corridor" + }, + { + "key": "highway", + "description": "The MapComplete theme OnWheels has a layer Pedestrian paths showing features with this tag", + "value": "steps" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Bicycle pump and repair showing features with this tag", + "value": "bicycle_repair_station" + }, + { + "key": "image", + "description": "The layer 'Bicycle pump and repair allows to upload images and adds them under the 'image'-tag (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 pump and repair allows to upload images and adds them under the 'image'-tag (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 pump and repair allows to upload images and adds them under the 'image'-tag (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 pump and repair allows to upload images and adds them under the 'image'-tag (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": "service:bicycle:tools", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=no&service:bicycle:pump=yes with a fixed text, namely 'There is only a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "service:bicycle:pump", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=no&service:bicycle:pump=yes with a fixed text, namely 'There is only a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "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 'OnWheels')", + "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 'OnWheels')", + "value": "no" + }, + { + "key": "service:bicycle:tools", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=yes with a fixed text, namely 'There are both tools and a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:bicycle:pump", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=yes with a fixed text, namely 'There are both tools and a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:bicycle:pump:operational_status", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:pump:operational_status=broken with a fixed text, namely 'The bike pump is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "broken" + }, + { + "key": "service:bicycle:pump:operational_status", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:pump:operational_status=operational with a fixed text, namely 'The bike pump is operational' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "operational" + }, + { + "key": "opening_hours", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "opening_hours", + "description": "Layer 'Bicycle pump and repair' shows opening_hours=24/7 with a fixed text, namely 'Always open' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "24/7" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' 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 'OnWheels')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=public with a fixed text, namely 'Publicly accessible' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "public" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=customers with a fixed text, namely 'Only for customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "customers" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=private with a fixed text, namely 'Not accessible to the general public' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "private" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=no with a fixed text, namely 'Not accessible to the general public' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "operator", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "email", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "phone", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "service:bicycle:chain_tool", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:chain_tool=yes with a fixed text, namely 'There is a chain tool' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:bicycle:chain_tool", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:chain_tool=no with a fixed text, namely 'There is no chain tool' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "service:bicycle:stand", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:stand=yes with a fixed text, namely 'There is a hook or stand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:bicycle:stand", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:stand=no with a fixed text, namely 'There is no hook or stand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "valves", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'valves' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "valves", + "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 'OnWheels')", + "value": "sclaverand" + }, + { + "key": "valves", + "description": "Layer 'Bicycle pump and repair' shows valves=dunlop with a fixed text, namely 'Dunlop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "dunlop" + }, + { + "key": "valves", + "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 'OnWheels')", + "value": "schrader" + }, + { + "key": "manual", + "description": "Layer 'Bicycle pump and repair' shows manual=yes with a fixed text, namely 'Manual pump' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "manual", + "description": "Layer 'Bicycle pump and repair' shows manual=no with a fixed text, namely 'Electrical pump' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "manometer", + "description": "Layer 'Bicycle pump and repair' shows manometer=yes with a fixed text, namely 'There is a manometer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "manometer", + "description": "Layer 'Bicycle pump and repair' shows manometer=no with a fixed text, namely 'There is no manometer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "manometer", + "description": "Layer 'Bicycle pump and repair' shows manometer=broken with a fixed text, namely 'There is manometer but it is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "broken" + }, + { + "key": "level", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "location", + "description": "Layer 'Bicycle pump and repair' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Bicycle pump and repair' 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 'Bicycle pump and repair' 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 'Bicycle pump and repair' 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 'Bicycle pump and repair' 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": "shop", + "description": "The MapComplete theme OnWheels has a layer Bike repair/shop showing features with this tag", + "value": "bicycle" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels has a layer Bike repair/shop showing features with this tag", + "value": "bicycle_rental" + }, + { + "key": "network", + "description": "The MapComplete theme OnWheels has a layer Bike repair/shop showing features with this tag", + "value": "" + }, + { + "key": "shop", + "description": "The MapComplete theme OnWheels has a layer Bike repair/shop showing features with this tag", + "value": "sports" + }, + { + "key": "sport", + "description": "The MapComplete theme OnWheels has a layer Bike repair/shop showing features with this tag", + "value": "bicycle" + }, + { + "key": "sport", + "description": "The MapComplete theme OnWheels has a layer Bike repair/shop showing features with this tag", + "value": "cycling" + }, + { + "key": "sport", + "description": "The MapComplete theme OnWheels has a layer Bike repair/shop showing features with this tag", + "value": "" + }, + { + "key": "image", + "description": "The layer 'Bike repair/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 'Bike repair/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 'Bike repair/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 'Bike repair/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": "shop", + "description": "Layer 'Bike repair/shop' shows shop=rental with a fixed text, namely 'This business focuses on rental' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "rental" + }, + { + "key": "name", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "website", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "phone", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "email", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "opening_hours", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "access", + "description": "Layer 'Bike repair/shop' shows values with key 'access' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "service:bicycle:retail", + "description": "Layer 'Bike repair/shop' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:bicycle:retail", + "description": "Layer 'Bike repair/shop' shows service:bicycle:retail=no with a fixed text, namely 'This shop doesn't sell bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "service:bicycle:repair", + "description": "Layer 'Bike repair/shop' shows service:bicycle:repair=yes with a fixed text, namely 'This shop repairs bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:bicycle:repair", + "description": "Layer 'Bike repair/shop' shows service:bicycle:repair=no with a fixed text, namely 'This shop doesn't repair bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "service:bicycle:repair", + "description": "Layer 'Bike repair/shop' shows service:bicycle:repair=only_sold with a fixed text, namely 'This shop only repairs bikes bought here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "only_sold" + }, + { + "key": "service:bicycle:repair", + "description": "Layer 'Bike repair/shop' shows service:bicycle:repair=brand with a fixed text, namely 'This shop only repairs bikes of a certain brand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "brand" + }, + { + "key": "service:bicycle:rental", + "description": "Layer 'Bike repair/shop' shows service:bicycle:rental=yes with a fixed text, namely 'This shop rents out bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:bicycle:rental", + "description": "Layer 'Bike repair/shop' shows service:bicycle:rental=no with a fixed text, namely 'This shop doesn't rent out bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "rental", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'rental' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "rental", + "description": "Layer 'Bike repair/shop' 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 'OnWheels')", + "value": "city_bike" + }, + { + "key": "rental", + "description": "Layer 'Bike repair/shop' 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 'OnWheels')", + "value": "ebike" + }, + { + "key": "rental", + "description": "Layer 'Bike repair/shop' 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 'OnWheels')", + "value": "bmx" + }, + { + "key": "rental", + "description": "Layer 'Bike repair/shop' 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 'OnWheels')", + "value": "mtb" + }, + { + "key": "rental", + "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 'OnWheels')", + "value": "kid_bike" + }, + { + "key": "rental", + "description": "Layer 'Bike repair/shop' 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 'OnWheels')", + "value": "tandem" + }, + { + "key": "rental", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')" + }, + { + "key": "capacity:ebike", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:ebike' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "capacity:kid_bike", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:kid_bike' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "capacity:bmx", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:bmx' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "capacity:mtb", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:mtb' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "capacity:bicycle_pannier", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "capacity:tandem_bicycle", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "service:bicycle:second_hand", + "description": "Layer 'Bike repair/shop' shows service:bicycle:second_hand=yes with a fixed text, namely 'This shop sells second-hand bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:bicycle:second_hand", + "description": "Layer 'Bike repair/shop' shows service:bicycle:second_hand=no with a fixed text, namely 'This shop doesn't sell second-hand bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "service:bicycle:second_hand", + "description": "Layer 'Bike repair/shop' shows service:bicycle:second_hand=only with a fixed text, namely 'This shop only sells second-hand bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "only" + }, + { + "key": "service:bicycle:pump", + "description": "Layer 'Bike repair/shop' shows service:bicycle:pump=yes with a fixed text, namely 'This shop offers a bike pump for anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:bicycle:pump", + "description": "Layer 'Bike repair/shop' shows service:bicycle:pump=no with a fixed text, namely 'This shop doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "service:bicycle:pump", + "description": "Layer 'Bike repair/shop' shows service:bicycle:pump=separate with a fixed text, namely 'There is bicycle pump, it is shown as a separate point ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "separate" + }, + { + "key": "service:bicycle:diy", + "description": "Layer 'Bike repair/shop' shows service:bicycle:diy=yes with a fixed text, namely 'This shop offers tools for DIY repair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:bicycle:diy", + "description": "Layer 'Bike repair/shop' shows service:bicycle:diy=no with a fixed text, namely 'This shop doesn't offer tools for DIY repair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "service:bicycle:diy", + "description": "Layer 'Bike repair/shop' shows service:bicycle:diy=only_sold with a fixed text, namely 'Tools for DIY repair are only available if you bought/hire the bike in the shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "only_sold" + }, + { + "key": "service:bicycle:cleaning", + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning=yes with a fixed text, namely 'This shop cleans bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes" + }, + { + "key": "service:bicycle:cleaning", + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning=diy with a fixed text, namely 'This shop has an installation where one can clean bicycles themselves' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "diy" + }, + { + "key": "service:bicycle:cleaning", + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning=no with a fixed text, namely 'This shop doesn't offer bicycle cleaning' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "service:bicycle:cleaning:charge", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "service:bicycle:cleaning:fee", + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=no&service:bicycle:cleaning:charge= with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no&service:bicycle:cleaning:charge=" + }, + { + "key": "service:bicycle:cleaning:fee", + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "no" + }, + { + "key": "service:bicycle:cleaning:fee", + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=yes&service:bicycle:cleaning:charge= with a fixed text, namely 'The cleaning service has a fee, but the amount is not known' (in the MapComplete.osm.be theme 'OnWheels')", + "value": "yes&service:bicycle:cleaning:charge=" + }, + { + "key": "description", + "description": "Layer 'Bike repair/shop' 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 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": "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": "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 '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": "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": "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": "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": "leisure", + "description": "The MapComplete theme OnWheels has a layer Picnic tables showing features with this tag", + "value": "picnic_table" + }, + { + "key": "image", + "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": "mapillary", + "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": "wikidata", + "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": "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": "material", + "description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "material", + "description": "Layer 'Picnic tables' shows material=wood with a fixed text, namely 'This is a wooden picnic table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "wood" + }, + { + "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 'OnWheels')", + "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 'OnWheels')", + "value": "plastic" + }, + { + "key": "amenity", + "description": "The MapComplete theme OnWheels 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 'OnWheels')" + }, + { + "key": "capacity", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')" + }, + { + "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 'OnWheels') 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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')", + "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 'OnWheels')" + }, + { + "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 'OnWheels')" + }, + { + "key": "phone", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "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 'OnWheels')" + }, + { + "key": "email", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "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 'OnWheels')" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'school:language' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=english with a fixed text, namely 'The main language of this school is unknown' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "english" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=french with a fixed text, namely 'French is the main language of {name}' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "french" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dutch with a fixed text, namely 'Dutch is the main language of {name}' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "dutch" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=german with a fixed text, namely 'German is the main language of {name}' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'OnWheels')", + "value": "german" + }, + { + "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 'OnWheels') Picking this answer will delete the key school:language.", + "value": "" + }, + { + "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": "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": "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": "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": "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": "description", + "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'OnWheels')" + }, + { + "key": "tourism", + "description": "The MapComplete theme OnWheels has a layer Viewpoint showing features with this tag", + "value": "viewpoint" + }, + { + "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": "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": "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": "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": "description", + "description": "Layer 'Viewpoint' 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 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" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_parkings.json b/Docs/TagInfo/mapcomplete_parkings.json index d9058dff6..ea8f135af 100644 --- a/Docs/TagInfo/mapcomplete_parkings.json +++ b/Docs/TagInfo/mapcomplete_parkings.json @@ -30,6 +30,74 @@ { "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": "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 ea728a1b0..b27a2e514 100644 --- a/Docs/TagInfo/mapcomplete_personal.json +++ b/Docs/TagInfo/mapcomplete_personal.json @@ -4628,6 +4628,10 @@ "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')" @@ -6292,6 +6296,74 @@ "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": "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": "amenity", "description": "The MapComplete theme Personal theme has a layer pharmacy showing features with this tag", @@ -6691,6 +6763,37 @@ "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 Recycling showing features with this tag", @@ -6893,6 +6996,176 @@ "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 and asks freeform values for key 'school:language' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=english with a fixed text, namely 'The main language of this school is unknown' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "english" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=french with a fixed text, namely 'French is the main language of {name}' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "french" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=dutch with a fixed text, namely 'Dutch is the main language of {name}' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dutch" + }, + { + "key": "school:language", + "description": "Layer 'Primary and secondary schools' shows school:language=german with a fixed text, namely 'German is the main language of {name}' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "german" + }, + { + "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": "amenity", "description": "The MapComplete theme Personal theme has a layer Shelter showing features with this tag", @@ -8903,6 +9176,31 @@ "key": "name", "description": "Layer 'veterinary' shows and asks freeform values for key 'name' (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": "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": "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": "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": "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": "description", + "description": "Layer 'Viewpoint' shows and asks freeform values for key 'description' (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", diff --git a/Docs/TagInfo/mapcomplete_rainbow_crossings.json b/Docs/TagInfo/mapcomplete_rainbow_crossings.json new file mode 100644 index 000000000..0c48ec6a3 --- /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_transit.json b/Docs/TagInfo/mapcomplete_transit.json index bfab04cb1..040309999 100644 --- a/Docs/TagInfo/mapcomplete_transit.json +++ b/Docs/TagInfo/mapcomplete_transit.json @@ -356,6 +356,74 @@ "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": "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", diff --git a/Docs/Tools/GenerateSeries.ts b/Docs/Tools/GenerateSeries.ts index ca68ff1de..9bb2fa203 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,36 @@ 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)){ + continue + } + await this.DownloadStatsForDay(year, month, day, path) } - 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 +81,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 +186,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 +216,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 +808,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")) diff --git a/Docs/Tools/cache_centerpoints.sh b/Docs/Tools/cache_centerpoints.sh index 0fdf56c09..35a1652a9 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/stats/stats.2022-5-01.json b/Docs/Tools/stats/stats.2022-5-01.json new file mode 100644 index 000000000..e64746bd7 --- /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 000000000..3b2d122d9 --- /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 000000000..eaedacc3d --- /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 000000000..84096c242 --- /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 000000000..8201370c1 --- /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 000000000..881813996 --- /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 000000000..21514b066 --- /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 000000000..acf1ca44a --- /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 000000000..9d5bb20e8 --- /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 000000000..397fac6a5 --- /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 000000000..8c6ccf178 --- /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 000000000..ca5c23c70 --- /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 000000000..924cceab1 --- /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 000000000..80101fad1 --- /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 000000000..cc40022bc --- /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 000000000..65688ebc9 --- /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 000000000..a621f4a8d --- /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 000000000..c7e624119 --- /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 000000000..2fe6cb76e --- /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 000000000..2a01818b7 --- /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 000000000..61e524adf --- /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 000000000..d699a8f60 --- /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 000000000..cfb9d27c9 --- /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 000000000..cd9ffd7ab --- /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 000000000..4730255a1 --- /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 000000000..86d17c6d0 --- /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 000000000..09b2be0fd --- /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 000000000..c93c3f74c --- /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 000000000..38f88dfea --- /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 000000000..5b303ed45 --- /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 000000000..16ae9634a --- /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-5.json b/Docs/Tools/stats/stats.2022-5.json deleted file mode 100644 index b5e89cd88..000000000 --- a/Docs/Tools/stats/stats.2022-5.json +++ /dev/null @@ -1,31755 +0,0 @@ -{ - "features": [ - { - "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 - } - }, - { - "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": 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, - "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 - } - }, - { - "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": [], - "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": 2, - "modify": 9, - "delete": 0, - "area": 0.000920663745299788, - "is_suspect": false, - "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 - } - }, - { - "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 - } - }, - { - "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 - } - }, - { - "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 - } - }, - { - "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 - } - }, - { - "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 - } - }, - { - "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 - } - }, - { - "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 - } - }, - { - "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 - } - }, - { - "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-6-01.json b/Docs/Tools/stats/stats.2022-6-01.json new file mode 100644 index 000000000..23d98db7c --- /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 000000000..64c60c694 --- /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 000000000..bb9d908fb --- /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 000000000..d44fdfe8a --- /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 000000000..a7a2ed10b --- /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 000000000..ec3188140 --- /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 000000000..7858886b4 --- /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 000000000..c3a3ef773 --- /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 000000000..2e6b69f17 --- /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 000000000..781e9e2a9 --- /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 000000000..ffbe2bcdf --- /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 000000000..d8948e277 --- /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 000000000..62b674b2c --- /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 000000000..1eda93849 --- /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 000000000..b671cd89b --- /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 000000000..b6207a12e --- /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 000000000..aca576e70 --- /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 000000000..9874fa2a9 --- /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 000000000..8c0efd045 --- /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 000000000..4c4fada9d --- /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 000000000..4921e1f9c --- /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 000000000..758d9b45d --- /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 000000000..b446c7065 --- /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 000000000..c864c0736 --- /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 000000000..ed64255b1 --- /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 000000000..79ddd8cc6 --- /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 000000000..2584e9333 --- /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 000000000..d4e53ae26 --- /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 000000000..141b70d5a --- /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 000000000..0e886cc70 --- /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 000000000..3af24cbb9 --- /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 000000000..7c9143502 --- /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 000000000..cdcca0b94 --- /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 000000000..41e038c7e --- /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 000000000..f1b0deeba --- /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 000000000..842315b49 --- /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 000000000..d187ed471 --- /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 000000000..99e4a4a9a --- /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 000000000..44a620e39 --- /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 000000000..18ad3109c --- /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 000000000..4de39c4b8 --- /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 000000000..3e289befa --- /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 000000000..51a87738b --- /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 000000000..2ef1a4d4b --- /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 000000000..624e2852e --- /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/Logic/FeatureSource/Sources/FilteringFeatureSource.ts b/Logic/FeatureSource/Sources/FilteringFeatureSource.ts index f363813a7..1fbb7fbe0 100644 --- a/Logic/FeatureSource/Sources/FilteringFeatureSource.ts +++ b/Logic/FeatureSource/Sources/FilteringFeatureSource.ts @@ -4,6 +4,8 @@ import {FeatureSourceForLayer, Tiled} from "../FeatureSource"; import {BBox} from "../../BBox"; import {ElementStorage} from "../../ElementStorage"; import {TagsFilter} from "../../Tags/TagsFilter"; +import {tag} from "@turf/turf"; +import {OsmFeature} from "../../../Models/OsmFeature"; export default class FilteringFeatureSource implements FeatureSourceForLayer, Tiled { public features: UIEventSource<{ feature: any; freshness: Date }[]> = @@ -65,21 +67,16 @@ 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 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() ?? []) diff --git a/Logic/ImageProviders/Imgur.ts b/Logic/ImageProviders/Imgur.ts index 27689a32e..715813f7b 100644 --- a/Logic/ImageProviders/Imgur.ts +++ b/Logic/ImageProviders/Imgur.ts @@ -122,7 +122,7 @@ export class Imgur extends ImageProvider { 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/Tags/TagUtils.ts b/Logic/Tags/TagUtils.ts index 0440ffd2a..caca5c0b7 100644 --- a/Logic/Tags/TagUtils.ts +++ b/Logic/Tags/TagUtils.ts @@ -6,12 +6,11 @@ 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 -type OsmTags = Tags & {id: string} export class TagUtils { private static keyCounts: { keys: any, tags: any } = key_counts["default"] ?? key_counts @@ -249,7 +248,7 @@ export class TagUtils { * // 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) { @@ -258,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 */ @@ -308,20 +321,20 @@ export class TagUtils { return {key, value, invert: invert == "!", modifier: (modifier == "i~" ? "i" : "")}; } - private static TagUnsafe(json: AndOrTagConfigJson | string, context: string = ""): TagsFilter { + private static TagUnsafe(json: TagConfigJson, context: string = ""): TagsFilter { if (json === undefined) { 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" } diff --git a/Models/ThemeConfig/Conversion/AddContextToTranslations.ts b/Models/ThemeConfig/Conversion/AddContextToTranslations.ts index 9e3dc8c56..af9961a89 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 2b7880c1f..48177827f 100644 --- a/Models/ThemeConfig/Conversion/Conversion.ts +++ b/Models/ThemeConfig/Conversion/Conversion.ts @@ -141,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) { diff --git a/Models/ThemeConfig/Conversion/CreateNoteImportLayer.ts b/Models/ThemeConfig/Conversion/CreateNoteImportLayer.ts index 666bf3cf7..076c898af 100644 --- a/Models/ThemeConfig/Conversion/CreateNoteImportLayer.ts +++ b/Models/ThemeConfig/Conversion/CreateNoteImportLayer.ts @@ -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 = trs(t.importButton,{layerId: layer.id, title: layer.presets[0].title}) + const translations = trs(t.importButton, {layerId: layer.id, title: layer.presets[0].title}) for (const key in translations) { - if(key !== "_context"){ + if (key !== "_context") { importButton[key] = "{" + translations[key] + "}" - }else{ + } else { importButton[key] = translations[key] } } @@ -68,19 +68,19 @@ export default class CreateNoteImportLayer extends Conversion(translation: TypedTranslation, subs: T) : object{ + function trs(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": trs(t.description , {title: layer.title.render}), + "description": trs(t.description, {title: layer.title.render}), "source": { "osmTags": { "and": [ @@ -93,7 +93,7 @@ export default class CreateNoteImportLayer extends Conversion {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": [ { @@ -165,9 +153,9 @@ export default class CreateNoteImportLayer extends Conversion { 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[] } { @@ -33,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 spl = name.split("."); + let layer = state.sharedLayers.get(spl[0]) + if (spl[0] === this._self.id) { + layer = this._self + } - 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) - } + 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; } @@ -86,7 +96,7 @@ class ExpandTagRendering extends Conversion 0){ - const [layer, search] = name.split(".") - candidates = Utils.NoNull( state.sharedLayers.get(layer).tagRenderings.map(tr => tr["id"])).map(id => layer+"."+id) + let candidates = Array.from(state.tagRenderings.keys()) + if (name.indexOf(".") > 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(", ") + "?") + 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) { @@ -168,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}" @@ -187,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 } @@ -199,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 @@ -233,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: { @@ -287,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` + } } } @@ -315,50 +338,50 @@ export class ExpandRewrite extends Conversion, T[ */ 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"] - * + * * // 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"] */ - 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 } @@ -367,17 +390,17 @@ export class RewriteSpecial extends DesugaringStep { } 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 } - + const argNamesList = vis.args.map(a => a.name) const argNames = new Set(argNamesList) // Check for obsolete and misspelled arguments @@ -385,21 +408,21 @@ export class RewriteSpecial extends DesugaringStep { .filter(k => !argNames.has(k)) .filter(k => k !== "type") .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 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) @@ -407,25 +430,26 @@ export class RewriteSpecial extends DesugaringStep { for (const translatedArg of translatedArgs) { for (const ln of Object.keys(translatedArg)) { foundLanguages.add(ln) - } + } } - + const before = Translations.T(input.before) const after = Translations.T(input.after) - for (const ln of Object.keys(before?.translations??{})) { + for (const ln of Object.keys(before?.translations ?? {})) { foundLanguages.add(ln) } - for (const ln of Object.keys(after?.translations??{})) { + 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})}` + if (foundLanguages.size === 0) { + const args = argNamesList.map(nm => special[nm] ?? "").join(",") + return { + '*': `{${type}(${args})}` + } } - } - + const result = {} const languages = Array.from(foundLanguages) languages.sort() @@ -433,9 +457,9 @@ export class RewriteSpecial extends DesugaringStep { const args = [] for (const argName of argNamesList) { const v = special[argName] ?? "" - if(Translations.isProbablyATranslation(v)){ + if (Translations.isProbablyATranslation(v)) { args.push(new Translation(v).textFor(ln)) - }else{ + } else { args.push(v) } } @@ -459,7 +483,7 @@ 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 - * + * * const tr = { * render: {special: {type: "image_carousel", image_key: "image"}, before: {en: "Some introduction"} }, * } @@ -470,20 +494,20 @@ export class RewriteSpecial extends DesugaringStep { 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 { @@ -492,11 +516,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",new Each( new On("icon", new FirstOf(new ExpandTagRendering(state))))), + 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 772aa56bc..df0807120 100644 --- a/Models/ThemeConfig/Conversion/PrepareTheme.ts +++ b/Models/ThemeConfig/Conversion/PrepareTheme.ts @@ -357,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) diff --git a/Models/ThemeConfig/Conversion/Validation.ts b/Models/ThemeConfig/Conversion/Validation.ts index ea49777a9..22400569e 100644 --- a/Models/ThemeConfig/Conversion/Validation.ts +++ b/Models/ThemeConfig/Conversion/Validation.ts @@ -508,6 +508,7 @@ export class ValidateLayer extends DesugaringStep { 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 { @@ -548,6 +549,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 diff --git a/Models/ThemeConfig/FilterConfig.ts b/Models/ThemeConfig/FilterConfig.ts index 40bb2a3d3..d649dacea 100644 --- a/Models/ThemeConfig/FilterConfig.ts +++ b/Models/ThemeConfig/FilterConfig.ts @@ -4,7 +4,7 @@ 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"; @@ -16,7 +16,7 @@ export default class FilterConfig { public readonly options: { question: Translation; osmTags: TagsFilter | undefined; - originalTagsSpec: string | AndOrTagConfigJson + originalTagsSpec: TagConfigJson fields: { name: string, type: string }[] }[]; public readonly defaultSelection? : number diff --git a/Models/ThemeConfig/Json/DeleteConfigJson.ts b/Models/ThemeConfig/Json/DeleteConfigJson.ts index 56b199f4e..88ae47e4f 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: string | 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 bd03200f3..db0e258a8 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 68687fde1..772b9ff54 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,7 +47,7 @@ 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 */ @@ -135,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. @@ -143,7 +143,7 @@ export interface LayerConfigJson { * * The default value is 'yes' */ - isShown?: TagRenderingConfigJson; + isShown?: TagConfigJson; /** * Advanced option - might be set by the theme compiler diff --git a/Models/ThemeConfig/Json/PointRenderingConfigJson.ts b/Models/ThemeConfig/Json/PointRenderingConfigJson.ts index 65655ac32..9f372b880 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 diff --git a/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts b/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts index 043f67244..963f67e0a 100644 --- a/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts +++ b/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts @@ -1,4 +1,4 @@ -import {AndOrTagConfigJson} from "./TagConfigJson"; +import {TagConfigJson} from "./TagConfigJson"; import {TagRenderingConfigJson} from "./TagRenderingConfigJson"; @@ -7,7 +7,7 @@ export interface MappingConfigJson { /** * @inheritDoc */ - if: AndOrTagConfigJson | string, + if: TagConfigJson, /** * Shown if the 'if is fulfilled * Type: rendered @@ -89,7 +89,7 @@ export interface MappingConfigJson { * hideInAnswer: "_country!=be" * } */ - hideInAnswer?: boolean | string | AndOrTagConfigJson, + hideInAnswer?: boolean | TagConfigJson, /** * Only applicable if 'multiAnswer' is set. * This is for situations such as: @@ -98,7 +98,7 @@ export interface MappingConfigJson { * 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 + ifnot?: TagConfigJson /** * If chosen as answer, these tags will be applied as well onto the object. @@ -107,10 +107,18 @@ export interface MappingConfigJson { addExtraTags?: string[] /** - * Searchterms (per language) to easily find an option if there are many options + * 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 + } /** diff --git a/Models/ThemeConfig/Json/TagConfigJson.ts b/Models/ThemeConfig/Json/TagConfigJson.ts index ab3d1a9ce..265312c45 100644 --- a/Models/ThemeConfig/Json/TagConfigJson.ts +++ b/Models/ThemeConfig/Json/TagConfigJson.ts @@ -1,9 +1,21 @@ /** - * A small interface to combine tags and tagsfilters. - * + * 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 interface AndOrTagConfigJson { - and?: (string | AndOrTagConfigJson)[] - or?: (string | AndOrTagConfigJson)[] -} \ No newline at end of file +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 1ccf1c2f8..88b225800 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. @@ -35,11 +35,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 +100,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/LayerConfig.ts b/Models/ThemeConfig/LayerConfig.ts index 0582c57ac..d45c2c132 100644 --- a/Models/ThemeConfig/LayerConfig.ts +++ b/Models/ThemeConfig/LayerConfig.ts @@ -39,7 +39,7 @@ 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; @@ -302,7 +302,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) { @@ -478,7 +478,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/LineRenderingConfig.ts b/Models/ThemeConfig/LineRenderingConfig.ts index 6b7f8082b..fbe1c6756 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/SourceConfig.ts b/Models/ThemeConfig/SourceConfig.ts index 5c31bdbcf..928284436 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 0328a9106..cdcf916de 100644 --- a/Models/ThemeConfig/TagRenderingConfig.ts +++ b/Models/ThemeConfig/TagRenderingConfig.ts @@ -23,7 +23,8 @@ export interface Mapping { readonly iconClass: string | "small" | "medium" | "large" | "small-height" | "medium-height" | "large-height", readonly hideInAnswer: boolean | TagsFilter readonly addExtraTags: Tag[], - readonly searchTerms?: Record + readonly searchTerms?: Record, + readonly priorityIf?: TagsFilter } /*** @@ -287,6 +288,11 @@ 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") { @@ -337,6 +343,7 @@ export default class TagRenderingConfig { 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), @@ -345,7 +352,8 @@ export default class TagRenderingConfig { icon, iconClass, addExtraTags, - searchTerms: mapping.searchTerms + searchTerms: mapping.searchTerms, + priorityIf: prioritySearch }; if (isQuestionable) { if (hideInAnswer !== true && mp.if !== undefined && !mp.if.isUsableAsAnswer()) { diff --git a/UI/Input/SearchableMappingsSelector.ts b/UI/Input/SearchableMappingsSelector.ts index 8a414a879..e1f639203 100644 --- a/UI/Input/SearchableMappingsSelector.ts +++ b/UI/Input/SearchableMappingsSelector.ts @@ -57,7 +57,13 @@ class SelfHidingToggle extends UIElement implements InputElement { return true } s = s?.trim()?.toLowerCase() - return searchTerms[Locale.language.data]?.some(t => t.indexOf(s) >= 0) ?? false; + 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; @@ -138,13 +144,19 @@ export class SearchablePillsSelector extends Combine implements InputElement< searchValue?: UIEventSource, onNoMatches?: BaseUIElement, onNoSearchMade?: BaseUIElement, + /** + * Shows this if there are many (>200) possible mappings + */ + onManyElements?: BaseUIElement, + onManyElementsValue?: UIEventSource, selectIfSingle?: false | boolean, - searchAreaClass?: string + searchAreaClass?: string, + hideSearchBar?: false | boolean }) { const search = new TextField({value: options?.searchValue}) - const searchBar = new Combine([Svg.search_svg().SetClass("w-8 normal-background"), search.SetClass("w-full")]) + 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()) @@ -193,10 +205,10 @@ export class SearchablePillsSelector extends Combine implements InputElement< }; }) - let somethingShown: Store + let totalShown: Store if (options.selectIfSingle) { let forcedSelection : { value: T, show: SelfHidingToggle } = undefined - somethingShown = searchValue.map(_ => { + totalShown = searchValue.map(_ => { let totalShown = 0; let lastShownValue: { value: T, show: SelfHidingToggle } for (const mv of mappedValues) { @@ -218,31 +230,43 @@ export class SearchablePillsSelector extends Combine implements InputElement< selectedElements.setData([]) } - return totalShown > 0 + return totalShown }, mappedValues.map(mv => mv.show.GetValue())) } else { - somethingShown = searchValue.map(_ => mappedValues.some(mv => mv.show.isShown.data), mappedValues.map(mv => mv.show.GetValue())) + 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 (!somethingShown.data) { + 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 ?? "") - }, [somethingShown, searchValue])) + }, [totalShown, searchValue])) ]) this.selectedElements = selectedElements; - this.someMatchFound = somethingShown; + this.someMatchFound = totalShown.map(t => t > 0); } diff --git a/UI/Popup/TagRenderingQuestion.ts b/UI/Popup/TagRenderingQuestion.ts index 60dab8ab9..2f2dd157a 100644 --- a/UI/Popup/TagRenderingQuestion.ts +++ b/UI/Popup/TagRenderingQuestion.ts @@ -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"; @@ -232,6 +232,29 @@ 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 @@ -305,23 +328,9 @@ export default class TagRenderingQuestion extends Combine { options?: { search: UIEventSource }): InputElement { - const values: { show: BaseUIElement, value: number, mainTerm: Record, searchTerms?: Record }[] = [] - 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 ?? "./assets/svg/none.svg" - } - const fancy = TagRenderingQuestion.GenerateMappingContent(patchedMapping, tagsSource, state).SetClass("normal-background") - values.push({ - show: fancy, - value: i, - mainTerm: tr.translations, - searchTerms: mapping.searchTerms - }) - } + + + const values = TagRenderingQuestion.MappingToPillValue(applicableMappings, tagsSource, state) const searchValue: UIEventSource = options?.search ?? new UIEventSource(undefined) const ff = configuration.freeform @@ -329,14 +338,39 @@ export default class TagRenderingQuestion extends Combine { 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: configuration.multiAnswer ? "select-many" : "select-one", + 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) { diff --git a/Utils/LanguageUtils.ts b/Utils/LanguageUtils.ts new file mode 100644 index 000000000..045e5e2da --- /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 000000000..8b0146060 --- /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/layers/school/school.json b/assets/layers/school/school.json index ae5cf3809..5d1024791 100644 --- a/assets/layers/school/school.json +++ b/assets/layers/school/school.json @@ -21,17 +21,9 @@ "_is_enclosed=feat.properties._enclosing != '[]'" ], "isShown": { - "render": "yes", - "mappings": [ - { - "if": { - "and": [ - "building~*", - "_is_enclosed=true" - ] - }, - "then": "no" - } + "or": [ + "building=", + "_is_enclosed!=true" ] }, "tagRenderings": [ @@ -304,76 +296,25 @@ "phone", "email", { - "id": "language", - "question": { - "en": "What is the main language of this school?
What language is spoken with the students in non-language related courses and with the administration?
", - "nl": "Wat is de voertaal van deze school?
Welke taal wordt met de studenten gesproken in niet-taal-gerelateerde vakken en met de administratie?
", - "de": "Was ist die Hauptsprache dieser Schule?
Welche Sprache wird mit den Schülern in den nicht sprachbezogenen Kursen und mit der Verwaltung gesprochen?
", - "fr": "Quelle est la langue principale de cette école ?
Quelle langue est parlée avec les élèves des cours non linguistiques et avec l'administration ?
" - }, - "render": { - "en": "{school:language} is the main language of {title()}", - "nl": "{school:language} is de voertaal van {title()}", - "de": "{school:language} ist die Hauptsprache von {title()}", - "fr": "{school:language} est la langue principale de {title()}" - }, - "freeform": { - "key": "school:language", - "inline": true, - "placeholder": { - "en": "Language in lowercase English", - "nl": "Taal in lowercase Engel", - "de": "Sprache in Englisch in Kleinbuchstaben" - }, - "addExtraTags": [ - "fixme=Freeform tag `school:language` used, to be doublechecked" - ] - }, - "mappings": [ - { - "if": "school:language=english", - "then": { - "en": "The main language of this school is unknown", - "nl": "De voertaal van deze school is niet gekend", - "de": "Die Hauptsprache dieser Schule ist unbekannt", - "fr": "La langue principale de cette école est inconnue" + "builtin": "wikidata.school-language", + "override": { + "+mappings": [ + { + "if": "school:language=", + "hideInAnswer": true, + "then": { + "en": "The main language of this school is unknown", + "nl": "De voertaal van deze school is niet gekend" + } } - }, - { - "if": "school:language=french", - "then": { - "en": "French is the main language of {name}", - "nl": "Frans is de voertaal van {name}", - "de": "Französisch ist die Hauptsprache von {name}" - } - }, - { - "if": "school:language=dutch", - "then": { - "en": "Dutch is the main language of {name}", - "nl": "Nederlands is de voertaal van {name}", - "de": "Niederländisch ist die Hauptsprache von {name}" - } - }, - { - "if": "school:language=german", - "then": { - "en": "German is the main language of {name}", - "nl": "Duits is de voertaal van {name}", - "de": "Deutsch ist die Hauptsprache von {name}" - } - }, - { - "if": "school:language=", - "then": { - "en": "The main language of this school is unknown", - "nl": "De voertaal van deze school is niet gekend", - "de": "Die Hauptsprache dieser Schule ist unbekannt", - "fr": "La langue principale de cette école est inconnue" - }, - "hideInAnswer": true + ], + "question": { + "en": "What is the main language of this school?
What language is spoken with the students in non-language related courses and with the administration?
", + "nl": "Wat is de voertaal van deze school?
Welke taal wordt met de studenten gesproken in niet-taal-gerelateerde vakken en met de administratie?
", + "de": "Was ist die Hauptsprache dieser Schule?
Welche Sprache wird mit den Schülern in den nicht sprachbezogenen Kursen und mit der Verwaltung gesprochen?
", + "fr": "Quelle est la langue principale de cette école ?
Quelle langue est parlée avec les élèves des cours non linguistiques et avec l'administration ?
" } - ] + } } ], "presets": [ diff --git a/assets/layers/toilet/toilet.json b/assets/layers/toilet/toilet.json index daaa6ecb4..5dfeb438d 100644 --- a/assets/layers/toilet/toilet.json +++ b/assets/layers/toilet/toilet.json @@ -386,7 +386,8 @@ }, "condition": "changing_table=yes", "freeform": { - "key": "changing_table:location" + "key": "changing_table:location", + "inline": true }, "mappings": [ { diff --git a/assets/layers/wikidata/wikidata.json b/assets/layers/wikidata/wikidata.json new file mode 100644 index 000000000..e770e4985 --- /dev/null +++ b/assets/layers/wikidata/wikidata.json @@ -0,0 +1,27140 @@ +{ + "id": "wikidata", + "description": "Various tagrenderings which are generated from Wikidata. Automatically generated with a script, don't edit manually", + "#dont-translate": "*", + "source": { + "osmTags": "id~*" + }, + "mapRendering": null, + "tagRenderings": [ + { + "id": "language", + "description": "Enables to pick *a single* 'language:=yes' within the mappings", + "mappings": [ + { + "if": "language:ay=yes", + "ifnot": "language:ay=", + "searchTerms": { + "*": [ + "ay" + ] + }, + "then": { + "ca": "aimara", + "da": "Aymara", + "de": "Aymara", + "en": "Aymara", + "it": "aymara", + "fr": "aymara", + "eo": "ajmara lingvo", + "es": "aymara", + "fi": "aimara", + "gl": "Lingua aimará", + "hu": "ajmara", + "id": "Bahasa Aymara", + "ja": "アイマラ語", + "nb_NO": "aymara", + "nl": "Aymara", + "pl": "język ajmara", + "pt": "Língua aymará", + "pt_BR": "Língua aimará", + "ru": "аймара", + "sl": "Ajmarščina", + "sv": "aymara", + "zh_Hans": "艾马拉语", + "zh_Hant": "艾馬拉語" + }, + "priorityIf": "_country~((^|;)bo($|;))|((^|;)pe($|;))" + }, + { + "if": "language:ab=yes", + "ifnot": "language:ab=", + "searchTerms": { + "*": [ + "ab" + ] + }, + "then": { + "sv": "abchaziska", + "zh_Hans": "阿布哈兹语", + "zh_Hant": "阿布哈茲語", + "ca": "abkhaz", + "en": "Abkhaz", + "fr": "abkhaze", + "da": "Abkhasisk", + "de": "Abchasisch", + "eo": "abĥaza lingvo", + "es": "abjasio", + "fi": "abhaasi", + "gl": "Lingua abkhaza", + "hu": "abház", + "id": "Bahasa Abkhaz", + "it": "abcaso", + "ja": "アブハズ語", + "nb_NO": "abkhasisk", + "nl": "Abchazisch", + "pl": "język abchaski", + "pt": "Língua abecásia", + "pt_BR": "Língua abecásia", + "ru": "абхазский язык", + "sl": "Abhaščina" + }, + "priorityIf": "_country~((^|;)ge($|;))" + }, + { + "if": "language:an=yes", + "ifnot": "language:an=", + "searchTerms": { + "*": [ + "an" + ] + }, + "then": { + "ca": "aragonès", + "da": "aragonsk", + "de": "Aragonesisch", + "en": "Aragonese", + "eo": "aragona lingvo", + "es": "aragonés", + "fi": "aragonia", + "fr": "aragonais", + "gl": "Lingua aragonesa", + "hu": "aragóniai", + "id": "Bahasa Aragon", + "it": "aragonese", + "ja": "アラゴン語", + "nb_NO": "aragonesisk", + "nl": "Aragonees", + "pl": "język aragoński", + "pt": "Língua aragonesa", + "pt_BR": "Língua aragonesa", + "ru": "арагонский язык", + "sv": "aragonska", + "zh_Hans": "阿拉贡语", + "zh_Hant": "亞拉岡語" + } + }, + { + "if": "language:de=yes", + "ifnot": "language:de=", + "searchTerms": { + "*": [ + "de" + ] + }, + "then": { + "ca": "alemany", + "en": "German", + "fr": "allemand", + "hu": "német", + "id": "Jerman", + "it": "tedesco", + "pt_BR": "alemão", + "de": "Deutsch", + "da": "tysk", + "nl": "Duits", + "es": "alemán", + "ja": "ドイツ語", + "eo": "germana lingvo", + "fi": "saksa", + "gl": "lingua alemá", + "nb_NO": "tysk", + "pl": "język niemiecki", + "pt": "alemão", + "ru": "немецкий язык", + "sl": "nemščina", + "sv": "tyska", + "zh_Hans": "德语", + "zh_Hant": "德語" + }, + "priorityIf": "_country~((^|;)at($|;))|((^|;)be($|;))|((^|;)ch($|;))|((^|;)de($|;))|((^|;)li($|;))|((^|;)lu($|;))" + }, + { + "if": "language:ca=yes", + "ifnot": "language:ca=", + "searchTerms": { + "*": [ + "ca" + ] + }, + "then": { + "en": "Catalan", + "de": "Katalanisch", + "nl": "Catalaans", + "ca": "català", + "es": "catalán", + "fr": "catalan", + "da": "catalansk", + "eo": "kataluna lingvo", + "fi": "katalaani", + "gl": "lingua catalá", + "hu": "katalán", + "id": "Bahasa Katala", + "it": "catalano", + "ja": "カタルーニャ語", + "nb_NO": "katalansk", + "pl": "język kataloński", + "pt": "língua catalã", + "pt_BR": "língua catalã", + "ru": "каталанский язык", + "sl": "Katalonščina", + "sv": "katalanska", + "zh_Hans": "加泰罗尼亚语", + "zh_Hant": "加泰隆尼亞語" + }, + "priorityIf": "_country~((^|;)ad($|;))" + }, + { + "if": "language:az=yes", + "ifnot": "language:az=", + "searchTerms": { + "*": [ + "az" + ] + }, + "then": { + "en": "Azerbaijani", + "ca": "àzeri", + "hu": "azeri", + "de": "Aserbaidschanisch", + "es": "azerí", + "it": "azero", + "da": "aserbajdsjansk", + "eo": "azerbajĝana lingvo", + "fi": "azeri", + "fr": "azéri", + "gl": "Lingua azerí", + "id": "Bahasa Azeri", + "ja": "アゼルバイジャン語", + "nb_NO": "aserbajdsjansk", + "nl": "Azerbeidzjaans", + "pl": "język azerski", + "pt": "Língua azeri", + "pt_BR": "língua azeri", + "ru": "азербайджанский язык", + "sl": "azerbajdžanščina", + "sv": "azerbajdzjanska", + "zh_Hans": "阿塞拜疆语", + "zh_Hant": "亞塞拜然語" + }, + "priorityIf": "_country~((^|;)az($|;))" + }, + { + "if": "language:hr=yes", + "ifnot": "language:hr=", + "searchTerms": { + "*": [ + "hr" + ] + }, + "then": { + "nb_NO": "kroatisk", + "nl": "Kroatisch", + "pl": "język chorwacki", + "pt": "croata", + "pt_BR": "língua croata", + "ru": "хорватский язык", + "sl": "hrvaščina", + "sv": "kroatiska", + "zh_Hans": "克罗地亚语", + "zh_Hant": "克羅埃西亞語", + "ca": "croat", + "da": "kroatisk", + "de": "Kroatisch", + "en": "Croatian", + "eo": "kroata lingvo", + "es": "croata", + "fi": "kroatia", + "fr": "croate", + "gl": "lingua croata", + "hu": "horvát", + "id": "Bahasa Kroasia", + "it": "croato", + "ja": "クロアチア語" + }, + "priorityIf": "_country~((^|;)ba($|;))|((^|;)hr($|;))" + }, + { + "if": "language:eo=yes", + "ifnot": "language:eo=", + "searchTerms": { + "*": [ + "eo" + ] + }, + "then": { + "nb_NO": "esperanto", + "pl": "esperanto", + "pt": "esperanto", + "pt_BR": "esperanto", + "ru": "эсперанто", + "sl": "esperanto", + "sv": "esperanto", + "zh_Hans": "世界语", + "en": "Esperanto", + "eo": "Esperanto", + "nl": "Esperanto", + "de": "Esperanto", + "id": "Esperanto", + "zh_Hant": "世界語", + "ja": "エスペラント", + "fr": "espéranto", + "ca": "esperanto", + "da": "esperanto", + "es": "esperanto", + "fi": "esperanto", + "gl": "esperanto", + "hu": "eszperantó", + "it": "esperanto" + } + }, + { + "if": "language:ba=yes", + "ifnot": "language:ba=", + "searchTerms": { + "*": [ + "ba" + ] + }, + "then": { + "it": "baschiro", + "ja": "バシキール語", + "nb_NO": "basjkirsk", + "nl": "Basjkiers", + "pl": "język baszkirski", + "pt": "Língua bashkir", + "pt_BR": "Língua bashkir", + "ru": "башкирский язык", + "sl": "Baškirščina", + "sv": "basjkiriska", + "zh_Hans": "巴什基尔语", + "zh_Hant": "巴什基爾語", + "en": "Bashkir", + "de": "Baschkirisch", + "ca": "baixkir", + "da": "basjkirsk", + "eo": "baŝkira lingvo", + "es": "bashkir", + "fi": "baškiiri", + "fr": "bachkir", + "gl": "Lingua baskir", + "hu": "baskír", + "id": "Bahasa Bashkir" + } + }, + { + "if": "language:ar=yes", + "ifnot": "language:ar=", + "searchTerms": { + "*": [ + "ar" + ] + }, + "then": { + "zh_Hant": "阿拉伯語", + "en": "Arabic", + "id": "Arab", + "nl": "Arabisch", + "sv": "arabiska", + "ca": "àrab", + "es": "árabe", + "fr": "arabe", + "hu": "arab", + "pt_BR": "árabe", + "ru": "арабский язык", + "da": "arabisk", + "de": "Arabisch", + "eo": "araba lingvo", + "fi": "arabia", + "gl": "árabe", + "it": "arabo", + "ja": "アラビア語", + "zh_Hans": "阿拉伯语", + "nb_NO": "arabisk", + "pl": "język arabski", + "pt": "árabe", + "sl": "Arabščina" + }, + "priorityIf": "_country~((^|;)ae($|;))|((^|;)af($|;))|((^|;)bh($|;))|((^|;)dj($|;))|((^|;)dz($|;))|((^|;)eg($|;))|((^|;)er($|;))|((^|;)iq($|;))|((^|;)jo($|;))|((^|;)km($|;))|((^|;)kw($|;))|((^|;)lb($|;))|((^|;)ly($|;))|((^|;)ma($|;))|((^|;)mr($|;))|((^|;)om($|;))|((^|;)pk($|;))|((^|;)ps($|;))|((^|;)qa($|;))|((^|;)sa($|;))|((^|;)sd($|;))|((^|;)so($|;))|((^|;)ss($|;))|((^|;)sy($|;))|((^|;)td($|;))|((^|;)tn($|;))|((^|;)ye($|;))" + }, + { + "if": "language:he=yes", + "ifnot": "language:he=", + "searchTerms": { + "*": [ + "he" + ] + }, + "then": { + "nb_NO": "hebraisk", + "pl": "język hebrajski", + "pt": "hebraico", + "pt_BR": "hebraico", + "ru": "иврит", + "sl": "Hebrejščina", + "sv": "hebreiska", + "zh_Hans": "希伯来语", + "zh_Hant": "希伯來語", + "nl": "Hebreeuws", + "en": "Hebrew", + "es": "hebreo", + "fr": "hébreu", + "ja": "ヘブライ語", + "ca": "hebreu", + "da": "hebraisk", + "de": "Hebräisch", + "eo": "hebrea lingvo", + "fi": "heprea", + "gl": "lingua hebrea", + "hu": "héber", + "id": "Bahasa Ibrani", + "it": "ebraico" + }, + "priorityIf": "_country~((^|;)il($|;))" + }, + { + "if": "language:gl=yes", + "ifnot": "language:gl=", + "searchTerms": { + "*": [ + "gl" + ] + }, + "then": { + "en": "Galician", + "es": "gallego", + "ca": "gallec", + "da": "galicisk", + "de": "Galicisch", + "eo": "galega lingvo", + "fi": "galicia", + "fr": "galicien", + "gl": "lingua galega", + "hu": "galiciai", + "id": "Bahasa Galisia", + "it": "gallego", + "ja": "ガリシア語", + "nb_NO": "galisisk", + "nl": "Galicisch", + "pl": "język galicyjski", + "pt": "galego", + "pt_BR": "língua galega", + "ru": "галисийский язык", + "sl": "Galicijščina", + "sv": "galiciska", + "zh_Hant": "加利西亞語" + } + }, + { + "if": "language:el=yes", + "ifnot": "language:el=", + "searchTerms": { + "*": [ + "el" + ] + }, + "then": { + "da": "nygræsk", + "eo": "moderna greka lingvo", + "fi": "nykykreikka", + "gl": "lingua grega moderna", + "hu": "újgörög", + "id": "Yunani Modern", + "it": "greco moderno", + "ja": "現代ギリシア語", + "nb_NO": "nygresk", + "nl": "Nieuwgrieks", + "ru": "новогреческий язык", + "de": "Neugriechisch", + "en": "Modern Greek", + "es": "griego moderno", + "fr": "grec moderne", + "ca": "grec modern", + "pl": "język nowogrecki", + "pt": "grego moderno", + "pt_BR": "língua grega", + "sl": "grščina", + "sv": "nygrekiska", + "zh_Hant": "現代希臘語", + "zh_Hans": "希腊语" + }, + "priorityIf": "_country~((^|;)cy($|;))" + }, + { + "if": "language:cs=yes", + "ifnot": "language:cs=", + "searchTerms": { + "*": [ + "cs" + ] + }, + "then": { + "sl": "češčina", + "sv": "tjeckiska", + "zh_Hans": "捷克语", + "zh_Hant": "捷克語", + "en": "Czech", + "hu": "cseh", + "it": "ceco", + "de": "Tschechisch", + "es": "checo", + "fr": "tchèque", + "ca": "txec", + "da": "tjekkisk", + "eo": "ĉeĥa lingvo", + "fi": "tšekki", + "gl": "lingua checa", + "id": "Bahasa Ceska", + "ja": "チェコ語", + "nb_NO": "tsjekkisk", + "nl": "Tsjechisch", + "pl": "język czeski", + "pt": "checo", + "pt_BR": "língua tcheca", + "ru": "чешский язык" + }, + "priorityIf": "_country~((^|;)cz($|;))" + }, + { + "if": "language:da=yes", + "ifnot": "language:da=", + "searchTerms": { + "*": [ + "da" + ] + }, + "then": { + "pt": "dinamarquês", + "pt_BR": "dinamarquês", + "ru": "датский язык", + "sl": "Danščina", + "sv": "danska", + "zh_Hans": "丹麦语", + "zh_Hant": "丹麥語", + "ca": "danès", + "da": "dansk", + "de": "Dänisch", + "en": "Danish", + "eo": "dana lingvo", + "es": "danés", + "fi": "tanska", + "fr": "danois", + "gl": "lingua dinamarquesa", + "hu": "dán", + "id": "Bahasa Denmark", + "it": "danese", + "ja": "デンマーク語", + "nb_NO": "dansk", + "nl": "Deens", + "pl": "język duński" + }, + "priorityIf": "_country~((^|;)dk($|;))" + }, + { + "if": "language:af=yes", + "ifnot": "language:af=", + "searchTerms": { + "*": [ + "af" + ] + }, + "then": { + "en": "Afrikaans", + "fr": "afrikaans", + "ca": "afrikaans", + "da": "afrikaans", + "de": "Afrikaans", + "eo": "afrikansa lingvo", + "es": "afrikáans", + "fi": "afrikaans", + "gl": "Lingua africáner", + "hu": "afrikaans", + "id": "Bahasa Afrikaans", + "it": "afrikaans", + "ja": "アフリカーンス語", + "nb_NO": "afrikaans", + "nl": "Afrikaans", + "pl": "język afrikaans", + "pt": "língua africâner", + "pt_BR": "língua africâner", + "ru": "африкаанс", + "sl": "Afrikanščina", + "sv": "afrikaans", + "zh_Hans": "南非语", + "zh_Hant": "南非語" + }, + "priorityIf": "_country~((^|;)za($|;))" + }, + { + "if": "language:ga=yes", + "ifnot": "language:ga=", + "searchTerms": { + "*": [ + "ga" + ] + }, + "then": { + "en": "Irish", + "es": "irlandés", + "fr": "irlandais", + "hu": "ír", + "it": "irlandese", + "ca": "gaèlic irlandès", + "da": "irsk", + "de": "Irisch", + "eo": "irlanda lingvo", + "fi": "iiri", + "gl": "lingua irlandesa", + "id": "Bahasa Irlandia", + "ja": "アイルランド語", + "nb_NO": "irsk", + "nl": "Iers", + "pl": "język irlandzki", + "pt": "irlandês", + "pt_BR": "língua irlandesa", + "ru": "ирландский язык", + "sl": "Irska gelščina", + "sv": "iriska", + "zh_Hans": "爱尔兰语", + "zh_Hant": "愛爾蘭語" + }, + "priorityIf": "_country~((^|;)ie($|;))" + }, + { + "if": "language:hi=yes", + "ifnot": "language:hi=", + "searchTerms": { + "*": [ + "hi" + ] + }, + "then": { + "nb_NO": "hindi", + "pl": "język hindi", + "pt": "língua hindi", + "pt_BR": "língua hindi", + "ru": "хинди", + "sl": "hindijščina", + "sv": "hindi", + "zh_Hans": "印地语", + "zh_Hant": "印地語", + "de": "Hindi", + "en": "Hindi", + "nl": "Hindi", + "es": "hindi", + "ca": "hindi", + "da": "hindi", + "eo": "hindia lingvo", + "fi": "hindi", + "fr": "hindi", + "gl": "lingua hindi", + "hu": "hindi", + "id": "Bahasa Hindi", + "it": "hindi", + "ja": "ヒンディー語" + }, + "priorityIf": "_country~((^|;)in($|;))" + }, + { + "if": "language:bg=yes", + "ifnot": "language:bg=", + "searchTerms": { + "*": [ + "bg" + ] + }, + "then": { + "pl": "język bułgarski", + "pt": "língua búlgara", + "pt_BR": "língua búlgara", + "ru": "болгарский язык", + "sl": "bolgarščina", + "sv": "bulgariska", + "zh_Hans": "保加利亚语", + "zh_Hant": "保加利亞語", + "ca": "búlgar", + "da": "bulgarsk", + "de": "Bulgarisch", + "en": "Bulgarian", + "eo": "bulgara lingvo", + "es": "búlgaro", + "fi": "bulgaria", + "fr": "bulgare", + "gl": "lingua búlgara", + "hu": "bolgár", + "id": "Bahasa Bulgaria", + "it": "bulgaro", + "ja": "ブルガリア語", + "nb_NO": "bulgarsk", + "nl": "Bulgaars" + }, + "priorityIf": "_country~((^|;)bg($|;))" + }, + { + "if": "language:be=yes", + "ifnot": "language:be=", + "searchTerms": { + "*": [ + "be" + ] + }, + "then": { + "ca": "bielorús", + "da": "hviderussisk", + "de": "Belarussisch", + "en": "Belarusian", + "eo": "belorusa lingvo", + "es": "bielorruso", + "fi": "valkovenäjä", + "fr": "biélorusse", + "gl": "Lingua belarusa", + "hu": "belarusz", + "id": "Bahasa Belarus", + "it": "bielorusso", + "ja": "ベラルーシ語", + "nl": "Wit-Russisch", + "pl": "język białoruski", + "pt": "Língua bielorrussa", + "pt_BR": "língua bielorrussa", + "ru": "белорусский язык", + "sl": "Beloruščina", + "sv": "belarusiska", + "zh_Hans": "白俄罗斯语", + "zh_Hant": "白俄羅斯語", + "nb_NO": "belarusisk" + }, + "priorityIf": "_country~((^|;)by($|;))" + }, + { + "if": "language:gu=yes", + "ifnot": "language:gu=", + "searchTerms": { + "*": [ + "gu" + ] + }, + "then": { + "en": "Gujarati", + "ru": "гуджарати", + "de": "Gujarati", + "nl": "Gujarati", + "ca": "gujarati", + "da": "gujarati", + "eo": "guĝarata lingvo", + "es": "guyaratí", + "fi": "Gudžarati", + "fr": "gujarati", + "gl": "lingua guxaratí", + "hu": "gudzsaráti", + "id": "Bahasa Gujarati", + "it": "gujarati", + "ja": "グジャラート語", + "nb_NO": "gujarati", + "pl": "język gudźarati", + "pt": "gujarate", + "pt_BR": "Língua gujarati", + "sl": "gudžaratščina", + "sv": "gujarati" + } + }, + { + "if": "language:cy=yes", + "ifnot": "language:cy=", + "searchTerms": { + "*": [ + "cy" + ] + }, + "then": { + "da": "walisisk", + "de": "Walisisch", + "eo": "kimra lingvo", + "fi": "kymri", + "gl": "lingua galesa", + "hu": "walesi", + "id": "Bahasa Wales", + "it": "gallese", + "ja": "ウェールズ語", + "nb_NO": "walisisk", + "pl": "język walijski", + "pt": "galês", + "pt_BR": "galês", + "ru": "валлийский язык", + "sl": "Valižanščina", + "ca": "gal·lès", + "es": "galés", + "fr": "gallois", + "en": "Welsh", + "nl": "Welsh", + "sv": "kymriska", + "zh_Hant": "威爾士語" + } + }, + { + "if": "language:fr=yes", + "ifnot": "language:fr=", + "searchTerms": { + "*": [ + "fr" + ] + }, + "then": { + "nb_NO": "fransk", + "pl": "język francuski", + "pt_BR": "francês", + "ru": "французский язык", + "sl": "francoščina", + "sv": "franska", + "zh_Hans": "法语", + "es": "francés", + "nl": "Frans", + "en": "French", + "fr": "français", + "it": "francese", + "pt": "francês", + "hu": "francia", + "ca": "francès", + "zh_Hant": "法語", + "de": "Französisch", + "id": "Prancis", + "da": "fransk", + "eo": "franca lingvo", + "fi": "ranska", + "gl": "lingua francesa", + "ja": "フランス語" + }, + "priorityIf": "_country~((^|;)be($|;))|((^|;)bf($|;))|((^|;)bi($|;))|((^|;)bj($|;))|((^|;)ca($|;))|((^|;)cd($|;))|((^|;)cf($|;))|((^|;)cg($|;))|((^|;)ch($|;))|((^|;)ci($|;))|((^|;)cm($|;))|((^|;)dj($|;))|((^|;)fr($|;))|((^|;)ga($|;))|((^|;)gn($|;))|((^|;)gq($|;))|((^|;)ht($|;))|((^|;)km($|;))|((^|;)lu($|;))|((^|;)mc($|;))|((^|;)mg($|;))|((^|;)ml($|;))|((^|;)mu($|;))|((^|;)ne($|;))|((^|;)rw($|;))|((^|;)sc($|;))|((^|;)sn($|;))|((^|;)td($|;))|((^|;)tg($|;))|((^|;)va($|;))|((^|;)vu($|;))" + }, + { + "if": "language:hsb=yes", + "ifnot": "language:hsb=", + "searchTerms": { + "*": [ + "hsb" + ] + }, + "then": { + "hu": "felsőszorb", + "id": "Bahasa Sorbia Hulu", + "it": "alto sorabo", + "ja": "高地ソルブ語", + "nl": "Oppersorbisch", + "pl": "język górnołużycki", + "pt": "alto sorábio", + "pt_BR": "Alto sorábio", + "ru": "верхнелужицкий язык", + "sl": "Zgornjelužiščina", + "sv": "högsorbiska", + "zh_Hans": "上索布语", + "zh_Hant": "上索布语", + "ca": "alt sòrab", + "de": "Obersorbisch", + "en": "Upper Sorbian", + "eo": "suprasoraba lingvo", + "es": "alto sorabo", + "fi": "yläsorbi", + "fr": "haut-sorabe", + "gl": "Alto sorabo" + } + }, + { + "if": "language:fy=yes", + "ifnot": "language:fy=", + "searchTerms": { + "*": [ + "fy" + ] + }, + "then": { + "ca": "frisó occidental", + "da": "Westerlauwersfrisisk", + "de": "Westfriesisch", + "en": "West Frisian", + "eo": "okcidentfrisa lingvo", + "es": "frisón occidental", + "fi": "länsifriisin kieli", + "fr": "frison occidental", + "gl": "Lingua frisoa occidental", + "hu": "nyugati fríz", + "id": "Bahasa Frisia Barat", + "it": "frisone occidentale", + "ja": "西フリジア語", + "nb_NO": "vestfrisisk", + "nl": "Westerlauwers Fries", + "pl": "język zachodniofryzyjski", + "pt": "frísio ocidental", + "pt_BR": "frísio ocidental", + "ru": "западнофризский язык", + "sv": "västfrisiska", + "zh_Hans": "西弗里斯兰语", + "zh_Hant": "西菲士蘭語" + } + }, + { + "if": "language:ak=yes", + "ifnot": "language:ak=", + "searchTerms": { + "*": [ + "ak" + ] + }, + "then": { + "eo": "akanaj lingvoj", + "es": "lenguas akánicas", + "fi": "akanin kieli", + "fr": "akan", + "gl": "Lingua akán", + "hu": "akan", + "it": "akan", + "ja": "アカン語", + "nb_NO": "akan", + "nl": "Akan", + "pl": "język akan", + "pt": "língua akan", + "pt_BR": "língua akan", + "ru": "акан", + "sv": "akan", + "zh_Hans": "阿肯语", + "zh_Hant": "阿寒語", + "ca": "àkan", + "de": "Akan", + "en": "Akan" + } + }, + { + "if": "language:am=yes", + "ifnot": "language:am=", + "searchTerms": { + "*": [ + "am" + ] + }, + "then": { + "en": "Amharic", + "ca": "amhàric", + "fr": "amharique", + "da": "amharisk", + "de": "Amharisch", + "eo": "amhara lingvo", + "es": "amhárico", + "fi": "amharan kieli", + "gl": "Lingua amhárica", + "hu": "amhara", + "id": "Bahasa Amhar", + "it": "amarico", + "ja": "アムハラ語", + "nb_NO": "amharisk", + "nl": "Amhaars", + "pl": "język amharski", + "pt": "Língua amárica", + "pt_BR": "língua amárica", + "ru": "амхарский язык", + "sl": "Amharščina", + "sv": "amhariska", + "zh_Hans": "阿姆哈拉语", + "zh_Hant": "阿姆哈拉語" + }, + "priorityIf": "_country~((^|;)et($|;))" + }, + { + "if": "language:es=yes", + "ifnot": "language:es=", + "searchTerms": { + "*": [ + "es" + ] + }, + "then": { + "pl": "język hiszpański", + "pt": "espanhol", + "pt_BR": "espanhol", + "ru": "испанский язык", + "sl": "španščina", + "sv": "spanska", + "zh_Hans": "西班牙语", + "zh_Hant": "西班牙語", + "hu": "spanyol", + "id": "Spanyol", + "it": "spagnolo", + "ja": "スペイン語", + "nb_NO": "spansk", + "nl": "Spaans", + "en": "Spanish", + "es": "español", + "ca": "castellà", + "fr": "espagnol", + "da": "spansk", + "de": "Spanisch", + "eo": "hispana lingvo", + "fi": "espanja", + "gl": "lingua castelá" + }, + "priorityIf": "_country~((^|;)ar($|;))|((^|;)bo($|;))|((^|;)cl($|;))|((^|;)co($|;))|((^|;)cr($|;))|((^|;)cu($|;))|((^|;)do($|;))|((^|;)ec($|;))|((^|;)es($|;))|((^|;)gq($|;))|((^|;)gt($|;))|((^|;)hn($|;))|((^|;)mx($|;))|((^|;)ni($|;))|((^|;)pa($|;))|((^|;)pe($|;))|((^|;)py($|;))|((^|;)sv($|;))|((^|;)uy($|;))|((^|;)ve($|;))" + }, + { + "if": "language:bs=yes", + "ifnot": "language:bs=", + "searchTerms": { + "*": [ + "bs" + ] + }, + "then": { + "en": "Bosnian", + "es": "bosnio", + "de": "Bosnisch", + "ca": "bosnià", + "da": "bosnisk", + "eo": "bosna lingvo", + "fi": "bosnia", + "fr": "bosnien", + "gl": "Lingua bosníaca", + "hu": "bosnyák", + "id": "Bahasa Bosnia", + "it": "bosniaco", + "ja": "ボスニア語", + "nb_NO": "bosnisk", + "nl": "Bosnisch", + "pl": "język bośniacki", + "pt": "Língua bósnia", + "pt_BR": "língua bósnia", + "ru": "боснийский язык", + "sl": "Bosanščina", + "sv": "bosniska", + "zh_Hans": "波斯尼亚语", + "zh_Hant": "波士尼亞語" + }, + "priorityIf": "_country~((^|;)ba($|;))" + }, + { + "if": "language:diq=yes", + "ifnot": "language:diq=", + "searchTerms": { + "*": [ + "diq" + ] + }, + "then": { + "ca": "zazaqui", + "da": "Zazaki", + "de": "Zaza-Sprache", + "en": "Zazaki", + "eo": "zazaa lingvo", + "es": "zazaki", + "fi": "zaza", + "fr": "zazaki", + "gl": "Lingua zazaki", + "hu": "zazaki", + "id": "Bahasa Zazaki", + "it": "zazaki", + "ja": "ザザキ語", + "nb_NO": "zazaisk", + "nl": "Zazaki", + "pl": "język zazaki", + "pt": "Zazaki", + "pt_BR": "Zazaki", + "ru": "зазаки", + "sv": "zazaiska", + "zh_Hans": "扎扎其语", + "zh_Hant": "扎扎其語" + } + }, + { + "if": "language:dz=yes", + "ifnot": "language:dz=", + "searchTerms": { + "*": [ + "dz" + ] + }, + "then": { + "nl": "Dzongkha", + "pl": "Dzongkha", + "pt": "língua butanesa", + "pt_BR": "Língua butanesa", + "ru": "дзонг-кэ", + "sl": "Dzongkha", + "sv": "dzongkha", + "zh_Hans": "宗卡语", + "zh_Hant": "宗喀語", + "ca": "dzongkha", + "da": "dzongkha", + "de": "Dzongkha", + "en": "Dzongkha", + "eo": "dzonka lingvo", + "es": "dzongkha", + "fi": "Dzongkhan kieli", + "fr": "dzongkha", + "gl": "Lingua dzongkha", + "hu": "dzongkha", + "id": "Dzongkha", + "it": "dzongkha", + "ja": "ゾンカ語", + "nb_NO": "dzongkha" + }, + "priorityIf": "_country~((^|;)bt($|;))" + }, + { + "if": "language:co=yes", + "ifnot": "language:co=", + "searchTerms": { + "*": [ + "co" + ] + }, + "then": { + "es": "corso", + "en": "Corsican", + "ca": "cors", + "fr": "corse", + "da": "Korsikansk", + "de": "Korsisch", + "eo": "korsika lingvo", + "fi": "Korsikan kieli", + "gl": "Lingua corsa", + "hu": "korzikai", + "id": "Bahasa Korsika", + "it": "Lingua corsa", + "ja": "コルシカ語", + "nb_NO": "korsikansk", + "nl": "Corsicaans", + "pl": "język korsykański", + "pt": "Língua corsa", + "ru": "корсиканский язык", + "sl": "Korziščina", + "sv": "korsikanska" + } + }, + { + "if": "language:cr=yes", + "ifnot": "language:cr=", + "searchTerms": { + "*": [ + "cr" + ] + }, + "then": { + "id": "Bahasa Cree", + "it": "cree", + "ja": "クリー語", + "nb_NO": "cree", + "pl": "język kri", + "pt": "Língua cree", + "sv": "cree", + "de": "Cree", + "en": "Cree", + "fi": "Cree", + "nl": "Cree", + "fr": "cri", + "ca": "cree", + "ru": "кри", + "eo": "kria lingvo", + "es": "idioma cree", + "gl": "Lingua cree", + "hu": "krí" + } + }, + { + "if": "language:csb=yes", + "ifnot": "language:csb=", + "searchTerms": { + "*": [ + "csb" + ] + }, + "then": { + "de": "Kaschubisch", + "en": "Kashubian", + "ca": "caixubi", + "da": "Kasjubisk", + "eo": "kaŝuba lingvo", + "es": "casubio", + "fi": "Kašubi", + "fr": "cachoube", + "gl": "Lingua caxubia", + "hu": "kasub", + "id": "bahasa Kasubia", + "it": "casciubo", + "ja": "カシューブ語", + "nb_NO": "kasjubisk", + "nl": "Kasjoebisch", + "pl": "język kaszubski", + "pt": "cassúbio", + "pt_BR": "Língua cassúbia", + "ru": "кашубский язык", + "sl": "Kašubščina", + "sv": "kasjubiska" + } + }, + { + "if": "language:gv=yes", + "ifnot": "language:gv=", + "searchTerms": { + "*": [ + "gv" + ] + }, + "then": { + "hu": "manx", + "id": "Bahasa Manx", + "ja": "マン島語", + "nb_NO": "mansk", + "pl": "język manx", + "pt": "Língua manesa", + "pt_BR": "manês", + "ru": "мэнский язык", + "sl": "Manska gelščina", + "sv": "manx", + "en": "Manx", + "nl": "Manx", + "fr": "mannois", + "de": "Manx", + "it": "mannese", + "ca": "gaèlic manx", + "da": "Manx", + "eo": "manksa lingvo", + "es": "manés", + "fi": "manksi", + "gl": "Lingua manx" + } + }, + { + "if": "language:cv=yes", + "ifnot": "language:cv=", + "searchTerms": { + "*": [ + "cv" + ] + }, + "then": { + "ca": "txuvaix", + "de": "Tschuwaschisch", + "en": "Chuvash", + "eo": "ĉuvaŝa lingvo", + "es": "chuvasio", + "fi": "tšuvassi", + "fr": "tchouvache", + "gl": "Lingua chuvash", + "hu": "csuvas", + "id": "Bahasa Chuvash", + "it": "ciuvascio", + "ja": "チュヴァシ語", + "nb_NO": "tsjuvasjisk", + "nl": "Tsjoevasjisch", + "pl": "język czuwaski", + "pt": "tchuvache", + "pt_BR": "Língua tchuvache", + "ru": "чувашский язык", + "sv": "tjuvasjiska", + "zh_Hant": "楚瓦什語" + } + }, + { + "if": "language:bn=yes", + "ifnot": "language:bn=", + "searchTerms": { + "*": [ + "bn" + ] + }, + "then": { + "de": "Bengali", + "en": "Bengali", + "nl": "Bengaals", + "sl": "bengalščina", + "sv": "bengali", + "zh_Hans": "孟加拉语", + "zh_Hant": "孟加拉語", + "ca": "bengalí", + "da": "bengali", + "eo": "bengala lingvo", + "es": "bengalí", + "fi": "bengali", + "fr": "bengali", + "gl": "lingua bengalí", + "hu": "bengáli", + "id": "Bahasa Bengali", + "it": "bengali", + "ja": "ベンガル語", + "nb_NO": "bengali", + "pl": "język bengalski", + "pt": "língua bengali", + "pt_BR": "língua bengali", + "ru": "бенгальский язык" + }, + "priorityIf": "_country~((^|;)bd($|;))" + }, + { + "if": "language:gd=yes", + "ifnot": "language:gd=", + "searchTerms": { + "*": [ + "gd" + ] + }, + "then": { + "nb_NO": "skotsk-gælisk", + "nl": "Schots-Gaelisch", + "pl": "język gaelicki szkocki", + "pt": "Língua gaélica escocesa", + "pt_BR": "Língua gaélica escocesa", + "sl": "Škotska gelščina", + "ru": "шотландский гэльский язык", + "sv": "skotsk gaeliska", + "ca": "gaèlic escocès", + "da": "skotsk gælisk", + "de": "Schottisch-Gälisch", + "en": "Scottish Gaelic", + "eo": "skotgaela lingvo", + "es": "gaélico escocés", + "fi": "Gaeli", + "fr": "gaélique écossais", + "gl": "Lingua gaélica escocesa", + "hu": "skót gael", + "id": "Bahasa Gaelik Skotlandia", + "it": "gaelico scozzese", + "ja": "スコットランド・ゲール語" + } + }, + { + "if": "language:av=yes", + "ifnot": "language:av=", + "searchTerms": { + "*": [ + "av" + ] + }, + "then": { + "ca": "àvar", + "de": "Awarisch", + "en": "Avaric", + "eo": "avara lingvo", + "es": "ávaro", + "fi": "Avaarin kieli", + "fr": "avar", + "gl": "Lingua avar", + "hu": "avar", + "id": "Bahasa Avar", + "ja": "アヴァル語", + "nb_NO": "avarisk", + "nl": "Avaars", + "pl": "język awarski", + "pt": "Língua avar", + "ru": "аварский язык", + "sl": "Avarščina", + "sv": "avariska", + "it": "avaro" + } + }, + { + "if": "language:awa=yes", + "ifnot": "language:awa=", + "searchTerms": { + "*": [ + "awa" + ] + }, + "then": { + "ca": "Avadhi", + "de": "Awadhi", + "en": "Awadhi", + "es": "awadhi", + "fi": "Awadhin kieli", + "fr": "awadhi", + "gl": "Lingua awadhi", + "id": "Bahasa Awadhi", + "it": "awadhi", + "ja": "アワディー語", + "nb_NO": "Awadhi", + "nl": "Awadhi", + "pl": "Awadhi", + "pt": "Língua awadhi", + "pt_BR": "Língua awadhi", + "ru": "авадхи", + "sv": "awadhi", + "zh_Hans": "阿瓦德语", + "zh_Hant": "阿瓦德語" + } + }, + { + "if": "language:br=yes", + "ifnot": "language:br=", + "searchTerms": { + "*": [ + "br" + ] + }, + "then": { + "en": "Breton", + "ca": "bretó", + "pt": "bretão", + "da": "bretonsk", + "de": "Bretonisch", + "eo": "bretona lingvo", + "es": "bretón", + "fi": "bretoni", + "fr": "breton", + "gl": "lingua bretoa", + "hu": "breton", + "id": "Bahasa Breton", + "it": "bretone", + "ja": "ブルトン語", + "nb_NO": "bretonsk", + "nl": "Bretons", + "pl": "język bretoński", + "pt_BR": "língua bretã", + "ru": "бретонский язык", + "sl": "Bretonščina", + "sv": "bretonska", + "zh_Hant": "布列塔尼語" + } + }, + { + "if": "language:ee=yes", + "ifnot": "language:ee=", + "searchTerms": { + "*": [ + "ee" + ] + }, + "then": { + "en": "Ewe", + "fr": "ewe", + "de": "Ewe", + "nl": "Ewe", + "es": "ewé", + "it": "ewe", + "ca": "ewe", + "eo": "evea lingvo", + "fi": "ewen kieli", + "gl": "Lingua ewe", + "hu": "eve", + "id": "Bahasa Ewe", + "ja": "エウェ語", + "nb_NO": "ewe", + "pl": "Język ewe", + "pt": "ewe", + "ru": "эве", + "sv": "ewe" + } + }, + { + "if": "language:dag=yes", + "ifnot": "language:dag=", + "searchTerms": { + "*": [ + "dag" + ] + }, + "then": { + "de": "Dagbani", + "en": "Dagbani", + "es": "dagbani", + "fr": "dagbani", + "gl": "Lingua dagbani", + "it": "Dagbani", + "ja": "ダバニ語", + "nl": "Dagbani", + "pt": "Língua dagbani", + "pt_BR": "Língua dagbani", + "ru": "Дагбани", + "sv": "dagbani", + "eo": "Dagbania lingvo", + "da": "Dagbani", + "ca": "dagbani" + } + }, + { + "if": "language:dv=yes", + "ifnot": "language:dv=", + "searchTerms": { + "*": [ + "dv" + ] + }, + "then": { + "en": "Maldivian", + "ca": "divehi", + "da": "Dhivehi", + "de": "Dhivehi", + "eo": "maldiva lingvo", + "es": "dhivehi", + "fi": "Divehin kieli", + "fr": "maldivien", + "gl": "lingua maldivana", + "hu": "maldív", + "id": "Divehi", + "it": "maldiviano", + "ja": "ディベヒ語", + "nb_NO": "dhivehi", + "nl": "Maldivisch", + "pl": "język malediwski", + "pt": "Língua divehi", + "pt_BR": "Língua divehi", + "ru": "мальдивский язык", + "sv": "divehi" + }, + "priorityIf": "_country~((^|;)mv($|;))" + }, + { + "if": "language:fi=yes", + "ifnot": "language:fi=", + "searchTerms": { + "*": [ + "fi" + ] + }, + "then": { + "nl": "Fins", + "de": "Finnisch", + "en": "Finnish", + "ja": "フィンランド語", + "fi": "suomi", + "es": "finés", + "ru": "финский язык", + "hu": "finn", + "id": "Finlandia", + "it": "finlandese", + "ca": "finès", + "da": "finsk", + "eo": "finna lingvo", + "fr": "finnois", + "gl": "finés", + "nb_NO": "finsk", + "pl": "język fiński", + "pt": "finlandês", + "pt_BR": "língua finlandesa", + "sl": "finščina", + "sv": "finska", + "zh_Hans": "芬兰语", + "zh_Hant": "芬蘭語" + }, + "priorityIf": "_country~((^|;)fi($|;))" + }, + { + "if": "language:en=yes", + "ifnot": "language:en=", + "searchTerms": { + "*": [ + "en" + ] + }, + "then": { + "pl": "język angielski", + "pt": "inglês", + "pt_BR": "inglês", + "ru": "английский язык", + "sl": "angleščina", + "sv": "engelska", + "zh_Hans": "英语", + "zh_Hant": "英語", + "ca": "anglès", + "da": "engelsk", + "de": "Englisch", + "en": "English", + "eo": "angla lingvo", + "es": "inglés", + "fi": "englanti", + "fr": "anglais", + "gl": "lingua inglesa", + "hu": "angol", + "id": "Inggris", + "it": "inglese", + "ja": "英語", + "nb_NO": "engelsk", + "nl": "Engels" + }, + "priorityIf": "_country~((^|;)ag($|;))|((^|;)au($|;))|((^|;)bb($|;))|((^|;)bi($|;))|((^|;)bn($|;))|((^|;)bs($|;))|((^|;)bw($|;))|((^|;)bz($|;))|((^|;)ca($|;))|((^|;)cm($|;))|((^|;)dm($|;))|((^|;)er($|;))|((^|;)fj($|;))|((^|;)fm($|;))|((^|;)gb($|;))|((^|;)gd($|;))|((^|;)gh($|;))|((^|;)gi($|;))|((^|;)gm($|;))|((^|;)gy($|;))|((^|;)ie($|;))|((^|;)in($|;))|((^|;)jm($|;))|((^|;)ke($|;))|((^|;)ki($|;))|((^|;)kn($|;))|((^|;)lc($|;))|((^|;)lr($|;))|((^|;)ls($|;))|((^|;)mh($|;))|((^|;)mt($|;))|((^|;)mu($|;))|((^|;)mw($|;))|((^|;)na($|;))|((^|;)ng($|;))|((^|;)nr($|;))|((^|;)nz($|;))|((^|;)pg($|;))|((^|;)ph($|;))|((^|;)pk($|;))|((^|;)pw($|;))|((^|;)rw($|;))|((^|;)sb($|;))|((^|;)sc($|;))|((^|;)sd($|;))|((^|;)sg($|;))|((^|;)sl($|;))|((^|;)ss($|;))|((^|;)sz($|;))|((^|;)to($|;))|((^|;)tt($|;))|((^|;)tv($|;))|((^|;)tz($|;))|((^|;)ug($|;))|((^|;)vc($|;))|((^|;)vu($|;))|((^|;)ws($|;))|((^|;)za($|;))|((^|;)zm($|;))|((^|;)zw($|;))" + }, + { + "if": "language:ady=yes", + "ifnot": "language:ady=", + "searchTerms": { + "*": [ + "ady" + ] + }, + "then": { + "it": "adighè", + "ca": "adigué", + "de": "Adygeisch", + "en": "Adyghe", + "eo": "adigea lingvo", + "es": "idioma adigué", + "fi": "adygen kieli", + "fr": "adyguéen", + "gl": "Lingua adigue", + "ja": "アディゲ語", + "nb_NO": "adygeisk", + "nl": "West-Circassisch", + "pl": "język adygejski", + "pt": "língua adigue", + "ru": "адыгейский язык", + "sv": "adygeiska", + "id": "Bahasa Adighe" + } + }, + { + "if": "language:as=yes", + "ifnot": "language:as=", + "searchTerms": { + "*": [ + "as" + ] + }, + "then": { + "en": "Assamese", + "ca": "assamès", + "da": "assamesisk", + "de": "Assamesisch", + "eo": "asama lingvo", + "es": "asamés", + "fi": "assami", + "fr": "assamais", + "gl": "Lingua asamesa", + "hu": "asszámi", + "id": "Bahasa Assam", + "it": "assamese", + "ja": "アッサム語", + "nb_NO": "assamesisk", + "nl": "Assamees", + "pl": "język asamski", + "pt": "língua assamesa", + "ru": "ассамский язык", + "sv": "assamesiska", + "zh_Hant": "阿薩姆語" + } + }, + { + "if": "language:gn=yes", + "ifnot": "language:gn=", + "searchTerms": { + "*": [ + "gn" + ] + }, + "then": { + "nb_NO": "guaraní", + "nl": "Guarani", + "pl": "język guarani", + "pt": "língua guarani", + "pt_BR": "língua guarani", + "ru": "гуарани", + "sl": "Gvaranščina", + "sv": "guaraní", + "ca": "guaraní", + "da": "Guaraní", + "de": "Guaraní", + "en": "Guarani", + "eo": "gvarania lingvo", + "es": "guaraní", + "fi": "Guaranin kieli", + "fr": "guarani", + "gl": "Lingua guaraní", + "hu": "guarani", + "id": "Bahasa Guarani", + "it": "guaraní", + "ja": "グアラニー語" + }, + "priorityIf": "_country~((^|;)bo($|;))|((^|;)py($|;))" + }, + { + "if": "language:hif=yes", + "ifnot": "language:hif=", + "searchTerms": { + "*": [ + "hif" + ] + }, + "then": { + "en": "Fiji Hindi", + "ca": "hindi de Fiji", + "da": "Fiji Hindi", + "de": "Fidschi-Hindi", + "eo": "Fiĝia hindia lingvo", + "es": "hindi de Fiyi", + "fi": "Fidžinhindi", + "fr": "hindi des Fidji", + "gl": "Hindi de Fidxi", + "id": "Bahasa Fiji Hindi", + "it": "hindi figiano", + "ja": "フィジー・ヒンディー語", + "nb_NO": "Fijiansk hindi", + "nl": "Fijisch Hindoestani", + "pl": "hindi fidżyjskie", + "pt": "Hindi fijiano", + "ru": "фиджийский хинди", + "sv": "fijiansk hindi" + } + }, + { + "if": "language:ast=yes", + "ifnot": "language:ast=", + "searchTerms": { + "*": [ + "ast" + ] + }, + "then": { + "zh_Hans": "阿斯图里亚斯语", + "zh_Hant": "阿斯圖里亞斯語", + "ca": "asturià", + "da": "asturiansk", + "de": "Asturisch", + "en": "Asturian", + "eo": "astura lingvo", + "es": "asturiano", + "fi": "asturia", + "fr": "asturien", + "gl": "lingua asturiana", + "hu": "asztúriai", + "id": "Bahasa Asturia", + "it": "asturiano", + "ja": "アストゥリアス語", + "nb_NO": "asturiansk", + "nl": "Asturisch", + "pl": "język asturyjski", + "pt": "asturiano", + "pt_BR": "Língua asturiana", + "ru": "астурийский язык", + "sv": "asturiska" + } + }, + { + "if": "language:dsb=yes", + "ifnot": "language:dsb=", + "searchTerms": { + "*": [ + "dsb" + ] + }, + "then": { + "it": "sorabo inferiore", + "ja": "低地ソルブ語", + "nl": "Nedersorbisch", + "pl": "język dolnołużycki", + "pt": "baixo sorábio", + "pt_BR": "Baixo sorábio", + "ru": "нижнелужицкий язык", + "sl": "Dolnjesrbščina", + "sv": "lågsorbiska", + "en": "Lower Sorbian", + "ca": "baix sòrab", + "de": "Niedersorbisch", + "eo": "malsuprasoraba lingvo", + "es": "bajo sorabo", + "fr": "bas-sorabe", + "gl": "Baixo sorabo", + "hu": "alsó szorb", + "id": "Bahasa Sorbia Hilir" + } + }, + { + "if": "language:haw=yes", + "ifnot": "language:haw=", + "searchTerms": { + "*": [ + "haw" + ] + }, + "then": { + "gl": "Lingua hawaiana", + "hu": "hawaii", + "id": "Bahasa Hawaii", + "it": "hawaiano", + "ja": "ハワイ語", + "nb_NO": "hawaiisk", + "nl": "Hawaïaans", + "pl": "język hawajski", + "pt": "havaiano", + "pt_BR": "língua havaiana", + "ru": "гавайский язык", + "sl": "Havajščina", + "sv": "hawaiiska", + "zh_Hant": "夏威夷語", + "en": "Hawaiian", + "fr": "hawaïen", + "ca": "hawaià", + "da": "Hawaiiansk", + "de": "Hawaiisch", + "eo": "havaja lingvo", + "es": "hawaiano", + "fi": "havaijin kieli" + } + }, + { + "if": "language:glk=yes", + "ifnot": "language:glk=", + "searchTerms": { + "*": [ + "glk" + ] + }, + "then": { + "ca": "gilaki", + "de": "Gilaki", + "en": "Gilaki", + "eo": "gila lingvo", + "es": "gileki", + "fi": "Gilakin kieli", + "fr": "gilaki", + "gl": "Lingua gilaki", + "hu": "gilaki", + "id": "Bahasa Gilaki", + "it": "gilaki", + "ja": "ギラキ語", + "nb_NO": "Gileki", + "nl": "Gilaki", + "pl": "Język giliański", + "pt": "Língua gilaki", + "sv": "gilaki", + "ru": "гилякский язык" + } + }, + { + "if": "language:gag=yes", + "ifnot": "language:gag=", + "searchTerms": { + "*": [ + "gag" + ] + }, + "then": { + "zh_Hans": "加告兹语", + "zh_Hant": "加告茲語", + "hu": "gagauz", + "ca": "gagaús", + "de": "Gagausisch", + "en": "Gagauz", + "eo": "gagauza lingvo", + "es": "gagauzo", + "fi": "gagauzi", + "fr": "gagaouze", + "gl": "Lingua gagauza", + "id": "Bahasa Gagauz", + "it": "gagauzo", + "ja": "ガガウズ語", + "nb_NO": "gagausisk", + "nl": "Gagaoezisch", + "pl": "Język gagauski", + "pt": "Língua gagaúza", + "ru": "Гагаузский язык", + "sl": "Gagauščina", + "sv": "gagauziska" + } + }, + { + "if": "language:gan=yes", + "ifnot": "language:gan=", + "searchTerms": { + "*": [ + "gan" + ] + }, + "then": { + "en": "Gan", + "nl": "Gan", + "ca": "gan", + "da": "Gan", + "de": "Gan", + "eo": "gana lingvo", + "es": "chino gan", + "fi": "Gan-kiina", + "fr": "gan", + "gl": "Gan", + "id": "Bahasa Gan", + "it": "gan", + "ja": "贛語", + "nb_NO": "gan", + "pl": "język gan", + "pt": "Chinês gan", + "ru": "Гань", + "sv": "gan", + "zh_Hant": "贛語" + } + }, + { + "if": "language:ase=yes", + "ifnot": "language:ase=", + "searchTerms": { + "*": [ + "ase" + ] + }, + "then": { + "de": "American Sign Language", + "en": "American Sign Language", + "eo": "usona signolingvo", + "es": "lengua de señas americana", + "fi": "amerikkalainen viittomakieli", + "fr": "langue des signes américaine", + "gl": "Lingua de signos americana", + "id": "Bahasa Isyarat Amerika", + "it": "lingua dei segni americana", + "ja": "アメリカ手話", + "nb_NO": "amerikansk tegnspråk", + "nl": "Amerikaanse Gebarentaal", + "pl": "amerykański język migowy", + "pt": "língua de sinais americana", + "pt_BR": "Língua de sinais americana", + "ru": "амслен", + "sv": "amerikanskt teckenspråk", + "zh_Hant": "美國手語", + "da": "ASL", + "ca": "llengua de signes americana" + } + }, + { + "if": "language:cal=yes", + "ifnot": "language:cal=", + "searchTerms": { + "*": [ + "cal" + ] + }, + "then": { + "en": "Carolinian", + "fi": "Karoliini", + "ca": "carolinià", + "de": "Karolinisch", + "eo": "karolina lingvo", + "es": "carolinio", + "fr": "carolinien", + "id": "Bahasa Caroline", + "it": "lingua caroliniana", + "ja": "カロリン語", + "nb_NO": "karolinsk", + "nl": "Caroliniaans", + "pt": "Língua caroliniana", + "ru": "Каролинский язык", + "sv": "karoliniska", + "pl": "język karoliński" + } + }, + { + "if": "language:gil=yes", + "ifnot": "language:gil=", + "searchTerms": { + "*": [ + "gil" + ] + }, + "then": { + "it": "gilbertese", + "ca": "gilbertès", + "da": "Kiribatisk", + "de": "Kiribatisch", + "en": "Gilbertese", + "eo": "kiribata lingvo", + "es": "gilbertino", + "fi": "Kiribatin kieli", + "fr": "gilbertin", + "gl": "Lingua kiribatiana", + "hu": "gilberti", + "id": "Bahasa Kiribati", + "ja": "キリバス語", + "nb_NO": "Kiribatisk", + "nl": "Kiribatisch", + "pl": "Język kiribati", + "pt": "Gilbertês", + "ru": "кирибати", + "sv": "kiribatiska" + } + }, + { + "if": "language:arz=yes", + "ifnot": "language:arz=", + "searchTerms": { + "*": [ + "arz" + ] + }, + "then": { + "pt_BR": "Árabe egípcio", + "ru": "египетский диалект арабского языка", + "sv": "egyptisk arabiska", + "zh_Hant": "埃及阿拉伯語", + "hu": "egyiptomi arab", + "de": "Ägyptisch-Arabisch", + "en": "Egyptian Arabic", + "ca": "àrab egipci", + "da": "egyptisk arabisk", + "eo": "egipt-araba lingvo", + "es": "árabe egipcio", + "fi": "egyptinarabia", + "fr": "arabe égyptien", + "gl": "Árabe exipcio", + "id": "bahasa Arab Mesir", + "it": "arabo egiziano", + "ja": "アラビア語エジプト方言", + "nb_NO": "egyptisk arabisk", + "nl": "Egyptisch Arabisch", + "pl": "dialekt egipski języka arabskiego", + "pt": "árabe egípcio" + } + }, + { + "if": "language:ban=yes", + "ifnot": "language:ban=", + "searchTerms": { + "*": [ + "ban" + ] + }, + "then": { + "en": "Balinese", + "fr": "balinais", + "nl": "Balinees", + "ca": "balinès", + "de": "Balinesisch", + "eo": "balia lingvo", + "es": "balinés", + "fi": "Balin kieli", + "gl": "Lingua balinesa", + "id": "Bahasa Bali", + "it": "balinese", + "ja": "バリ語", + "nb_NO": "balinesisk", + "pl": "język balijski", + "pt": "balinês", + "pt_BR": "Língua balinesa", + "ru": "Балийский язык", + "sv": "balinesiska", + "zh_Hans": "巴厘语", + "zh_Hant": "峇里語" + } + }, + { + "if": "language:hak=yes", + "ifnot": "language:hak=", + "searchTerms": { + "*": [ + "hak" + ] + }, + "then": { + "ru": "хакка", + "en": "Hakka", + "ca": "hakka", + "de": "Hakka", + "id": "Hakka", + "nl": "Hakka", + "eo": "hakaa lingvo", + "es": "Chino hakka", + "fi": "Hakka-kiina", + "fr": "hakka", + "gl": "Lingua hakka", + "it": "hakka", + "ja": "客家語", + "nb_NO": "hakka", + "pl": "język hakka", + "pt": "Língua hakka", + "sv": "hakka", + "zh_Hans": "客家语", + "zh_Hant": "客家話", + "hu": "hakka" + } + }, + { + "if": "language:din=yes", + "ifnot": "language:din=", + "searchTerms": { + "*": [ + "din" + ] + }, + "then": { + "fr": "dinka", + "gl": "Lingua dinka", + "id": "Bahasa Dinka", + "it": "lingua dinka", + "ja": "ディンカ語", + "pl": "język dinka", + "pt": "Língua dinka", + "sv": "dinka", + "en": "Dinka", + "nl": "Dinka", + "de": "Dinka", + "ru": "Динка", + "ca": "dinka", + "es": "idioma dinka", + "fi": "dinka" + } + }, + { + "if": "language:egl=yes", + "ifnot": "language:egl=", + "searchTerms": { + "*": [ + "egl" + ] + }, + "then": { + "ca": "emilià", + "de": "Emilianisch", + "en": "Emilian", + "eo": "Emiliaj lingvoj", + "es": "emiliano", + "fi": "Emilian kieli", + "fr": "émilien", + "hu": "emilián", + "id": "Bahasa Emilian", + "it": "emiliano", + "ja": "エミリア語", + "nl": "Emiliaans", + "pt": "Dialeto emiliano", + "ru": "эмилианский", + "sv": "emilianska", + "zh_Hant": "艾米利亞語" + } + }, + { + "if": "language:dty=yes", + "ifnot": "language:dty=", + "searchTerms": { + "*": [ + "dty" + ] + }, + "then": { + "ca": "doteli", + "de": "Doteli", + "en": "Doteli", + "eo": "Doteli", + "es": "Doteli", + "fr": "dotyali", + "gl": "Lingua doteli", + "ja": "ドテリ語", + "nl": "Doteli", + "pl": "Język doteli", + "pt": "Doteli", + "ru": "дотели", + "sv": "doteli" + } + }, + { + "if": "language:fa=yes", + "ifnot": "language:fa=", + "searchTerms": { + "*": [ + "fa" + ] + }, + "then": { + "fi": "persia", + "gl": "lingua persa", + "hu": "perzsa", + "it": "persiano", + "ja": "ペルシア語", + "nb_NO": "persisk", + "nl": "Perzisch", + "pl": "język perski", + "en": "Persian", + "id": "Persia", + "sv": "persiska", + "fr": "persan", + "ca": "persa", + "da": "persisk", + "de": "Persisch", + "eo": "persa lingvo", + "es": "persa", + "pt": "persa", + "pt_BR": "persa", + "ru": "персидский язык", + "sl": "Perzijščina", + "zh_Hant": "波斯語" + }, + "priorityIf": "_country~((^|;)ir($|;))" + }, + { + "if": "language:cnr=yes", + "ifnot": "language:cnr=", + "searchTerms": { + "*": [ + "cnr" + ] + }, + "then": { + "en": "Montenegrin", + "fr": "monténégrin", + "ca": "montenegrí", + "da": "montenegrinsk", + "de": "Montenegrinisch", + "eo": "montenegra lingvo", + "es": "montenegrino", + "fi": "montenegro", + "gl": "Lingua montenegrina", + "hu": "montenegrói", + "id": "Bahasa Montenegro", + "it": "montenegrino", + "ja": "モンテネグロ語", + "nb_NO": "montenegrinsk", + "nl": "Montenegrijns", + "pl": "język czarnogórski", + "pt": "língua montenegrina", + "pt_BR": "língua montenegrina", + "ru": "черногорский язык", + "sl": "Črnogorščina", + "sv": "montenegrinska", + "zh_Hans": "黑山语", + "zh_Hant": "蒙特內哥羅語" + } + }, + { + "if": "language:bxr=yes", + "ifnot": "language:bxr=", + "searchTerms": { + "*": [ + "bxr" + ] + }, + "then": { + "en": "Russia Buriat", + "hu": "burját", + "ca": "buriat", + "de": "Burjatisch", + "eo": "burjata lingvo", + "es": "idioma buriato", + "fi": "Burjaatin kieli", + "fr": "bouriate de Russie", + "gl": "Lingua buriata", + "id": "Bahasa Buryat", + "it": "buriato", + "ja": "ブリヤート語", + "nb_NO": "burjatisk", + "nl": "Russisch-Boerjatisch", + "pl": "język buriacki", + "pt": "Língua buriata", + "ru": "бурятский язык", + "sv": "burjatiska", + "zh_Hant": "布里亞特語", + "pt_BR": "Língua buriata", + "zh_Hans": "俄罗斯布里亚特语" + } + }, + { + "if": "language:ckb=yes", + "ifnot": "language:ckb=", + "searchTerms": { + "*": [ + "ckb" + ] + }, + "then": { + "nl": "Sorani", + "fr": "sorani", + "ca": "sorani", + "da": "Sorani", + "de": "Sorani", + "en": "Sorani", + "eo": "sorana lingvo", + "es": "sorani", + "fi": "sorani", + "gl": "lingua kurda central", + "hu": "szoráni", + "id": "Soranî", + "it": "sorani", + "ja": "ソラニー", + "pl": "język sorani", + "pt": "Língua sorâni", + "ru": "сорани", + "sv": "soranî", + "zh_Hans": "中库尔德语", + "zh_Hant": "中庫德語" + } + }, + { + "if": "language:eu=yes", + "ifnot": "language:eu=", + "searchTerms": { + "*": [ + "eu" + ] + }, + "then": { + "en": "Basque", + "pt": "basco", + "de": "Baskisch", + "nl": "Baskisch", + "fr": "basque", + "ca": "basc", + "da": "baskisk", + "eo": "eŭska lingvo", + "es": "euskera", + "fi": "baski", + "gl": "lingua éuscara", + "hu": "baszk", + "id": "Bahasa Basque", + "it": "basco", + "ja": "バスク語", + "nb_NO": "baskisk", + "pl": "język baskijski", + "pt_BR": "basco", + "ru": "баскский язык", + "sl": "baskovščina", + "sv": "baskiska", + "zh_Hans": "巴斯克语", + "zh_Hant": "巴斯克語" + } + }, + { + "if": "language:et=yes", + "ifnot": "language:et=", + "searchTerms": { + "*": [ + "et" + ] + }, + "then": { + "da": "estisk", + "eo": "estona lingvo", + "es": "estonio", + "fi": "viro", + "fr": "estonien", + "gl": "lingua estoniana", + "id": "Esti", + "ja": "エストニア語", + "nb_NO": "estisk", + "nl": "Estisch", + "pl": "język estoński", + "pt": "estónio", + "pt_BR": "língua estônia", + "ru": "эстонский язык", + "sl": "estonščina", + "sv": "estniska", + "zh_Hant": "愛沙尼亞語", + "de": "Estnisch", + "en": "Estonian", + "ca": "estonià", + "hu": "észt", + "it": "estone" + }, + "priorityIf": "_country~((^|;)ee($|;))" + }, + { + "if": "language:bar=yes", + "ifnot": "language:bar=", + "searchTerms": { + "*": [ + "bar" + ] + }, + "then": { + "fr": "bavarois", + "ca": "bavarès", + "da": "Bajersk", + "de": "Bairisch", + "en": "Bavarian", + "eo": "bavara lingvo", + "es": "bávaro", + "fi": "Baijerin kieli", + "hu": "bajor", + "id": "Bahasa Bayern", + "it": "bavarese", + "ja": "バイエルン・オーストリア語", + "nb_NO": "bairisk", + "nl": "Beiers", + "pl": "dialekt bawarski", + "pt": "língua bávara", + "ru": "австро-баварский язык", + "sv": "bayerska", + "zh_Hans": "奥地利-巴伐利亚德语", + "zh_Hant": "奧地利-巴伐利亞德語", + "gl": "Lingua bavaresa", + "sl": "Bavarščina" + } + }, + { + "if": "language:fo=yes", + "ifnot": "language:fo=", + "searchTerms": { + "*": [ + "fo" + ] + }, + "then": { + "id": "Bahasa Faroe", + "ja": "フェロー語", + "nb_NO": "færøysk", + "nl": "Faeröers", + "pl": "język farerski", + "pt": "Língua feroesa", + "ru": "фарерский язык", + "sl": "Ferščina", + "sv": "färöiska", + "en": "Faroese", + "fr": "féroïen", + "it": "faroese", + "ca": "feroès", + "da": "færøsk", + "de": "Färöisch", + "eo": "feroa lingvo", + "es": "feroés", + "fi": "fäärin kieli", + "gl": "lingua feroesa", + "hu": "feröeri" + } + }, + { + "if": "language:frr=yes", + "ifnot": "language:frr=", + "searchTerms": { + "*": [ + "frr" + ] + }, + "then": { + "ca": "frisó septentrional", + "da": "Nordfrisisk", + "de": "Nordfriesisch", + "en": "North Frisian", + "eo": "nordfrisa lingvo", + "es": "frisón septentrional", + "fi": "Pohjoisfriisi", + "fr": "frison septentrional", + "gl": "Lingua frisoa setentrional", + "hu": "északi fríz", + "id": "Bahasa Frisia Utara", + "it": "frisone settentrionale", + "ja": "北フリジア語", + "nb_NO": "nordfrisisk", + "nl": "Noord-Fries", + "pl": "język północnofryzyjski", + "pt": "frisão setentrional", + "ru": "севернофризский язык", + "sv": "nordfrisiska", + "zh_Hans": "北弗里斯兰语", + "zh_Hant": "北菲士蘭語" + } + }, + { + "if": "language:ch=yes", + "ifnot": "language:ch=", + "searchTerms": { + "*": [ + "ch" + ] + }, + "then": { + "hu": "csamorro", + "id": "Bahasa Chamorro", + "it": "chamorro", + "ja": "チャモロ語", + "nb_NO": "chamorro", + "nl": "Chamorro", + "pl": "język czamorro", + "pt": "Língua chamorro", + "sv": "chamorro", + "ru": "чаморро", + "en": "Chamorro", + "ca": "chamorro", + "de": "Chamorro", + "eo": "ĉamora lingvo", + "es": "idioma chamorro", + "fi": "Tšamorron kieli", + "fr": "chamorro", + "gl": "Lingua chamorra" + } + }, + { + "if": "language:chy=yes", + "ifnot": "language:chy=", + "searchTerms": { + "*": [ + "chy" + ] + }, + "then": { + "en": "Cheyenne", + "nl": "Cheyenne", + "da": "Cheyenne", + "de": "Cheyenne", + "nb_NO": "Cheyenne", + "ca": "xeiene", + "eo": "Ĉejena lingvo", + "es": "cheyene", + "fi": "Cheyennen kieli", + "fr": "cheyenne", + "gl": "Lingua cheyenne", + "hu": "cheyenne", + "it": "cheyenne", + "ja": "シャイアン語", + "pl": "język czejeński", + "pt": "Língua cheyenne", + "ru": "шайенский язык", + "zh_Hans": "夏延语", + "zh_Hant": "夏安語" + } + }, + { + "if": "language:ce=yes", + "ifnot": "language:ce=", + "searchTerms": { + "*": [ + "ce" + ] + }, + "then": { + "en": "Chechen", + "fr": "tchétchène", + "zh_Hans": "车臣语", + "zh_Hant": "車臣語", + "ca": "txetxè", + "da": "Tjetjensk", + "de": "Tschetschenisch", + "eo": "ĉeĉena lingvo", + "es": "checheno", + "fi": "Tšetšeenin kieli", + "gl": "Lingua chechena", + "hu": "csecsen", + "id": "Bahasa Chechnya", + "it": "ceceno", + "ja": "チェチェン語", + "nb_NO": "tsjetsjensk", + "nl": "Tsjetsjeens", + "pl": "język czeczeński", + "pt": "checheno", + "pt_BR": "Língua chechena", + "ru": "чеченский язык", + "sl": "Čečenščina", + "sv": "tjetjenska" + } + }, + { + "if": "language:no=yes", + "ifnot": "language:no=", + "searchTerms": { + "*": [ + "no" + ] + }, + "then": { + "de": "Norwegisch", + "ja": "ノルウェー語", + "en": "Norwegian", + "hu": "norvég", + "nb_NO": "norsk", + "ru": "норвежский язык", + "ca": "noruec", + "da": "norsk", + "eo": "norvega lingvo", + "es": "noruego", + "fi": "norja", + "fr": "norvégien", + "gl": "lingua norueguesa", + "id": "Norwegia", + "it": "norvegese", + "nl": "Noors", + "pl": "język norweski", + "pt": "língua norueguesa", + "pt_BR": "língua norueguesa", + "sl": "Norveščina", + "sv": "norska", + "zh_Hant": "挪威語" + }, + "priorityIf": "_country~((^|;)no($|;))" + }, + { + "if": "language:bjn=yes", + "ifnot": "language:bjn=", + "searchTerms": { + "*": [ + "bjn" + ] + }, + "then": { + "en": "Banjar", + "fi": "Banjar", + "id": "Banjar", + "ca": "banjar", + "de": "Banjaresisch", + "eo": "banĝara lingvo", + "es": "banjar", + "fr": "banjar", + "gl": "Lingua banjar", + "it": "lingua banjar", + "ja": "バンジャル語", + "nl": "Bandjarees", + "pl": "język banjar", + "pt": "Língua banjaresa", + "ru": "банджарский язык", + "sv": "banjaresiska", + "zh_Hans": "班查语", + "zh_Hant": "班查語" + } + }, + { + "if": "language:ceb=yes", + "ifnot": "language:ceb=", + "searchTerms": { + "*": [ + "ceb" + ] + }, + "then": { + "en": "Cebuano", + "nl": "Cebuano", + "ca": "cebuà", + "eo": "cebua lingvo", + "es": "cebuano", + "fi": "Cebun kieli", + "fr": "cebuano", + "gl": "Lingua cebuana", + "hu": "szebuano", + "id": "Bahasa Cebú", + "it": "cebuano", + "ja": "セブ語", + "nb_NO": "cebuano", + "pl": "język cebuański", + "pt": "cebuano", + "ru": "себуанский язык", + "sv": "cebuano", + "zh_Hans": "宿务语", + "zh_Hant": "宿霧語", + "da": "sebuansk", + "de": "Cebuano" + } + }, + { + "if": "language:ha=yes", + "ifnot": "language:ha=", + "searchTerms": { + "*": [ + "ha" + ] + }, + "then": { + "en": "Hausa", + "ca": "haussa", + "de": "Hausa", + "eo": "haŭsa lingvo", + "es": "hausa", + "fi": "hausan kieli", + "fr": "haoussa", + "gl": "Lingua hausa", + "hu": "hausza", + "id": "Bahasa Hausa", + "it": "hausa", + "ja": "ハウサ語", + "nb_NO": "hausa", + "nl": "Hausa", + "pl": "język hausa", + "pt": "Língua haúça", + "pt_BR": "língua hauçá", + "ru": "хауса", + "sv": "hausa" + } + }, + { + "if": "language:frp=yes", + "ifnot": "language:frp=", + "searchTerms": { + "*": [ + "frp" + ] + }, + "then": { + "id": "Bahasa Arpitan", + "it": "francoprovenzale", + "ja": "アルピタン語", + "nb_NO": "frankoprovençalsk", + "nl": "Arpitaans", + "pl": "język franko-prowansalski", + "pt": "franco-provençal", + "pt_BR": "Língua franco-provençal", + "ru": "франкопровансальский язык", + "sv": "frankoprovensalska", + "hu": "frankoprovanszál", + "en": "Franco-Provençal", + "fr": "francoprovençal", + "ca": "francoprovençal", + "de": "Frankoprovenzalisch", + "eo": "arpitana lingvo", + "es": "franco-provenzal", + "fi": "Arpitaani", + "gl": "Lingua francoprovenzal" + } + }, + { + "if": "language:chr=yes", + "ifnot": "language:chr=", + "searchTerms": { + "*": [ + "chr" + ] + }, + "then": { + "de": "Cherokee", + "en": "Cherokee", + "nl": "Cherokee", + "da": "Cherokee", + "es": "cheroqui", + "pt": "cherokee", + "ru": "чероки", + "ca": "cherokee", + "eo": "Ĉeroka lingvo", + "fi": "Cherokeen kieli", + "fr": "cherokee", + "gl": "Lingua cheroqui", + "hu": "cseroki", + "id": "Bahasa Cherokee", + "it": "cherokee", + "ja": "チェロキー語", + "nb_NO": "cherokesisk", + "pl": "język czirokeski", + "sv": "cherokesiska", + "zh_Hans": "切罗基语", + "zh_Hant": "切羅基語" + } + }, + { + "if": "language:gcr=yes", + "ifnot": "language:gcr=", + "searchTerms": { + "*": [ + "gcr" + ] + }, + "then": { + "ca": "crioll guaianès", + "en": "Guianan Creole", + "eo": "franc-gujana kreola lingvo", + "es": "Criollo de Guayana Francesa", + "fi": "Ranskan Guayanan kreoli", + "fr": "créole guyanais", + "gl": "Crioulo da Güiana Francesa", + "it": "lingua creola della Guyana francese", + "ja": "仏領ギアナのクレオール語", + "nl": "French Guianese Creole", + "pl": "język kreolski Gujany Francuskiej", + "pt": "Crioulo da Guiana Francesa", + "ru": "Гвианский креольский язык", + "sv": "guyanansk kreol", + "zh_Hant": "圭亞那克里奧爾法語" + } + }, + { + "if": "language:gor=yes", + "ifnot": "language:gor=", + "searchTerms": { + "*": [ + "gor" + ] + }, + "then": { + "de": "Gorontalo", + "en": "Gorontalo", + "id": "Gorontalo", + "nb_NO": "Gorontalo", + "nl": "Gorontalo", + "pl": "Gorontalo", + "pt": "Gorontalo", + "ru": "Горонтало", + "da": "Gorontalo", + "ca": "gorontalo", + "es": "Idioma gorontalo", + "fi": "Gorontalon kieli", + "fr": "gorontalo", + "gl": "Gorontalo", + "it": "lingua gorontalo", + "ja": "ゴロンタロ語", + "pt_BR": "Gorontalo", + "sl": "Gorontalo", + "sv": "gorontalo", + "zh_Hans": "哥伦打洛语", + "zh_Hant": "哥倫打洛語", + "eo": "gorontala lingvo" + } + }, + { + "if": "language:ext=yes", + "ifnot": "language:ext=", + "searchTerms": { + "*": [ + "ext" + ] + }, + "then": { + "es": "extremeño", + "en": "Extremaduran", + "ca": "extremeny", + "de": "Extremadurisch", + "eo": "ekstremadura lingvo", + "fi": "extremadura", + "fr": "estrémègne", + "gl": "Lingua estremeña", + "id": "Bahasa Estremeñu", + "it": "estremegno", + "ja": "エストレマドゥーラ語", + "nb_NO": "ekstremaduransk", + "nl": "Extremeens", + "pl": "język estremadurski", + "pt": "Língua estremenha", + "ru": "Эстремадурский язык", + "sv": "extremaduriska" + } + }, + { + "if": "language:fj=yes", + "ifnot": "language:fj=", + "searchTerms": { + "*": [ + "fj" + ] + }, + "then": { + "ca": "fijià", + "de": "Fidschi", + "en": "Fijian", + "eo": "fiĝia lingvo", + "es": "fiyiano", + "fi": "Fidžin kieli", + "fr": "fidjien", + "gl": "Lingua fidxiana", + "hu": "fidzsi", + "id": "Bahasa Fiji", + "it": "figiano", + "ja": "フィジー語", + "nb_NO": "fijiansk", + "nl": "Fijisch", + "pl": "Język fidżyjski", + "pt": "Língua fidjiana", + "pt_BR": "Língua fijiana", + "ru": "фиджийский язык", + "sv": "fijianska" + }, + "priorityIf": "_country~((^|;)fj($|;))" + }, + { + "if": "language:fur=yes", + "ifnot": "language:fur=", + "searchTerms": { + "*": [ + "fur" + ] + }, + "then": { + "en": "Friulian", + "it": "friulano", + "ca": "furlà", + "da": "friulisk", + "de": "Furlanisch", + "eo": "friula lingvo", + "es": "friulano", + "fi": "Friulin kieli", + "fr": "frioulan", + "gl": "Lingua friulana", + "hu": "friuli", + "id": "Bahasa Friuli", + "ja": "フリウリ語", + "nb_NO": "friulisk", + "nl": "Friulisch", + "pl": "język friulski", + "pt": "friulano", + "ru": "фриульский язык", + "sl": "Furlanščina", + "sv": "friuliska" + } + }, + { + "if": "language:bss=yes", + "ifnot": "language:bss=", + "searchTerms": { + "*": [ + "bss" + ] + }, + "then": { + "en": "Kose", + "ca": "akoose", + "de": "Akoose", + "fi": "Koose", + "fr": "akoose", + "gl": "Lingua akoose", + "ja": "アコース語", + "nl": "Bakossi" + } + }, + { + "if": "language:prg=yes", + "ifnot": "language:prg=", + "searchTerms": { + "*": [ + "prg" + ] + }, + "then": { + "ca": "prussià", + "de": "Altpreußisch", + "en": "Old Prussian", + "eo": "antikva prusa lingvo", + "es": "prusiano antiguo", + "fi": "Muinaispreussin kieli", + "fr": "vieux-prussien", + "gl": "Lingua prusiana antiga", + "id": "Bahasa Prusia Kuno", + "it": "antico prussiano", + "ja": "プロシア語", + "nb_NO": "gammelprøyssisk", + "nl": "Oudpruisisch", + "pl": "język pruski", + "pt": "prussiano antigo", + "pt_BR": "Prussiano antigo", + "ru": "прусский язык", + "sv": "prusiska", + "hu": "óporosz" + } + }, + { + "if": "language:ses=yes", + "ifnot": "language:ses=", + "searchTerms": { + "*": [ + "ses" + ] + }, + "then": { + "de": "Koyra Senni", + "en": "Koyraboro Senni", + "es": "Koyraboro senni", + "fi": "Koyraboro senni", + "fr": "koyraboro senni", + "ja": "コイラボロ・センニ語", + "nl": "Koyra Senni" + } + }, + { + "if": "language:pko=yes", + "ifnot": "language:pko=", + "searchTerms": { + "*": [ + "pko" + ] + }, + "then": { + "de": "Pökoot", + "en": "Pökoot", + "it": "lingua suk", + "ja": "ポコット語", + "pt": "Língua pocote", + "ru": "Покот", + "sv": "pökoot", + "fr": "Pökot" + } + }, + { + "if": "language:ccp=yes", + "ifnot": "language:ccp=", + "searchTerms": { + "*": [ + "ccp" + ] + }, + "then": { + "de": "Chakma", + "en": "Chakma", + "eo": "Ĉakma lingvo", + "fr": "changma kodha", + "ja": "チャクマ語", + "nl": "Chakma", + "pl": "Język czakma", + "pt": "Língua chakma", + "pt_BR": "Língua chakma", + "ru": "Чакма" + } + }, + { + "if": "language:dua=yes", + "ifnot": "language:dua=", + "searchTerms": { + "*": [ + "dua" + ] + }, + "then": { + "de": "Duala", + "en": "Duala", + "es": "duala", + "fi": "Duala", + "fr": "douala", + "it": "lingua duala", + "ja": "ドゥアラ語", + "nl": "Duala", + "pl": "język duala", + "pt": "Língua duala", + "pt_BR": "Língua duala", + "ru": "Дуала", + "zh_Hans": "杜阿拉语", + "zh_Hant": "杜阿拉語", + "eo": "dualaa lingvo" + } + }, + { + "if": "language:tr=yes", + "ifnot": "language:tr=", + "searchTerms": { + "*": [ + "tr" + ] + }, + "then": { + "zh_Hans": "土耳其语", + "zh_Hant": "土耳其語", + "nb_NO": "tyrkisk", + "nl": "Turks", + "pl": "język turecki", + "pt": "língua turca", + "pt_BR": "língua turca", + "ru": "турецкий язык", + "sl": "turščina", + "sv": "turkiska", + "en": "Turkish", + "es": "turco", + "fr": "turc", + "id": "Bahasa Turki", + "fi": "turkki", + "hu": "török", + "ca": "turc", + "da": "tyrkisk", + "de": "Türkisch", + "eo": "turka lingvo", + "gl": "lingua turca", + "it": "turco", + "ja": "トルコ語" + }, + "priorityIf": "_country~((^|;)cy($|;))|((^|;)tr($|;))" + }, + { + "if": "language:ur=yes", + "ifnot": "language:ur=", + "searchTerms": { + "*": [ + "ur" + ] + }, + "then": { + "de": "Urdu", + "en": "Urdu", + "nl": "Urdu", + "ja": "ウルドゥー語", + "ca": "urdú", + "da": "urdu", + "eo": "urduo", + "es": "urdu", + "fi": "urdu", + "fr": "ourdou", + "gl": "Lingua urdú", + "hu": "urdu", + "id": "Bahasa Urdu", + "it": "urdu", + "nb_NO": "urdu", + "pl": "język urdu", + "pt": "Língua urdu", + "pt_BR": "Língua urdu", + "ru": "урду", + "sl": "Urdujščina", + "sv": "urdu", + "zh_Hant": "烏爾都語" + }, + "priorityIf": "_country~((^|;)pk($|;))" + }, + { + "if": "language:bm=yes", + "ifnot": "language:bm=", + "searchTerms": { + "*": [ + "bm" + ] + }, + "then": { + "de": "Bambara", + "en": "Bambara", + "nl": "Bambara", + "es": "bambara", + "it": "bambara", + "sv": "bambara", + "da": "Bambara", + "ca": "bambara", + "eo": "bambara lingvo", + "fi": "bambaran kieli", + "fr": "bambara", + "gl": "Lingua bambara", + "hu": "bambara", + "id": "Bahasa Bambara", + "ja": "バンバラ語", + "nb_NO": "bambara", + "pl": "język bambara", + "pt": "Língua bambara", + "ru": "бамана" + } + }, + { + "if": "language:ff=yes", + "ifnot": "language:ff=", + "searchTerms": { + "*": [ + "ff" + ] + }, + "then": { + "en": "Fula", + "fi": "Fulani", + "ca": "ful", + "da": "fula", + "de": "Fulfulde", + "eo": "fula lingvo", + "es": "fula", + "fr": "peul", + "gl": "Lingua fula", + "hu": "ful", + "id": "Bahasa Fula", + "it": "fula", + "ja": "フラニ語", + "nb_NO": "Fulfulde", + "nl": "Fulah", + "pl": "Język ful", + "pt": "Língua fula", + "ru": "фула", + "sv": "fula" + } + }, + { + "if": "language:ru=yes", + "ifnot": "language:ru=", + "searchTerms": { + "*": [ + "ru" + ] + }, + "then": { + "ca": "rus", + "da": "russisk", + "de": "Russisch", + "eo": "rusa lingvo", + "fi": "venäjä", + "gl": "lingua rusa", + "id": "Rusia", + "it": "russo", + "ja": "ロシア語", + "zh_Hans": "俄语", + "zh_Hant": "俄語", + "nb_NO": "russisk", + "pl": "język rosyjski", + "pt": "russo", + "pt_BR": "russo", + "sl": "ruščina", + "sv": "ryska", + "hu": "orosz", + "en": "Russian", + "ru": "русский язык", + "es": "ruso", + "fr": "russe", + "nl": "Russisch" + }, + "priorityIf": "_country~((^|;)by($|;))|((^|;)kg($|;))|((^|;)kz($|;))|((^|;)ru($|;))|((^|;)tj($|;))" + }, + { + "if": "language:sid=yes", + "ifnot": "language:sid=", + "searchTerms": { + "*": [ + "sid" + ] + }, + "then": { + "de": "Sidama", + "en": "Sidamo", + "nl": "Sidamo", + "ca": "sidamo", + "es": "Idioma sidamo", + "fi": "Sidamo", + "fr": "sidama", + "gl": "Lingua sidamo", + "hu": "sidamo", + "it": "lingua Sidamo", + "ja": "シダモ語", + "pl": "Język sidamo", + "ru": "Сидамо" + } + }, + { + "if": "language:niu=yes", + "ifnot": "language:niu=", + "searchTerms": { + "*": [ + "niu" + ] + }, + "then": { + "en": "Niuean", + "hu": "niuei", + "ca": "Niueà", + "de": "Niueanisch", + "es": "Idioma niuano", + "fi": "Niuen kieli", + "fr": "niuéen", + "id": "Bahasa Niue", + "it": "lingua niueana", + "ja": "ニウエ語", + "nb_NO": "Niuisk", + "nl": "Niueaans", + "pl": "Język niue", + "pt": "Língua niueana", + "ru": "ниуэ", + "sv": "niueanska", + "eo": "niua lingvo" + } + }, + { + "if": "language:oj=yes", + "ifnot": "language:oj=", + "searchTerms": { + "*": [ + "oj" + ] + }, + "then": { + "ru": "Оджибве", + "en": "Ojibwe", + "ca": "idioma ojibwa", + "da": "Ojibwa", + "de": "Ojibwe", + "eo": "aniŝinabeka lingvo", + "es": "Idioma ojibwa", + "fi": "Odžibwan kieli", + "fr": "ojibwé", + "gl": "Lingua ojibwa", + "hu": "odzsibva", + "id": "Bahasa Ojibwe", + "it": "lingua ojibwe", + "ja": "オジブウェー語", + "nb_NO": "Ojibwa", + "nl": "Ojibwe", + "pl": "Język odżibwe", + "pt": "Língua ojíbua", + "sl": "očipvejščina", + "sv": "ojibwa" + } + }, + { + "if": "language:vot=yes", + "ifnot": "language:vot=", + "searchTerms": { + "*": [ + "vot" + ] + }, + "then": { + "eo": "vota lingvo", + "es": "votio", + "fi": "vatja", + "hu": "vót", + "id": "Bahasa Votik", + "it": "votico", + "ja": "ヴォート語", + "nb_NO": "votisk", + "nl": "Wotisch", + "pl": "Język wotycki", + "pt": "vótico", + "ru": "водский язык", + "sv": "votiska", + "zh_Hans": "瓦佳语", + "zh_Hant": "瓦佳語", + "fr": "vote", + "ca": "vòtic", + "de": "Wotisch", + "en": "Votic" + } + }, + { + "if": "language:bfi=yes", + "ifnot": "language:bfi=", + "searchTerms": { + "*": [ + "bfi" + ] + }, + "then": { + "de": "Britische Gebärdensprache", + "en": "British Sign Language", + "eo": "brita signolingvo", + "es": "Lengua de señas británica", + "fi": "brittiläinen viittomakieli", + "fr": "langue des signes britannique", + "it": "lingua dei segni britannica", + "ja": "イギリス手話", + "nl": "Britse gebarentaal", + "pl": "brytyjski język migowy", + "pt": "língua de sinais britânica", + "ru": "британский жестовый язык", + "sv": "brittiskt teckenspråk", + "id": "Bahasa Isyarat Britania" + } + }, + { + "if": "language:bla=yes", + "ifnot": "language:bla=", + "searchTerms": { + "*": [ + "bla" + ] + }, + "then": { + "de": "Blackfoot", + "en": "Blackfoot", + "eo": "nigrapieda lingvo", + "es": "Idioma siksiká", + "fi": "Mustajalka", + "fr": "pied-noir", + "gl": "Lingua siksiká", + "it": "lingua blackfoot", + "ja": "ブラックフット語", + "nb_NO": "blackfoot", + "nl": "Blackfoot", + "pl": "język siksika", + "pt": "Língua Siksiká", + "ru": "Блэкфут", + "sv": "siksika", + "zh_Hans": "黑脚语" + } + }, + { + "if": "language:bbc=yes", + "ifnot": "language:bbc=", + "searchTerms": { + "*": [ + "bbc" + ] + }, + "then": { + "ca": "Batak Toba", + "da": "Batak Toba", + "de": "Toba Batak", + "en": "Toba Batak", + "eo": "Batak Toba", + "es": "Batak Toba", + "fi": "Batak Toba", + "fr": "batak toba", + "gl": "Lingua toba batak", + "hu": "Batak Toba", + "id": "Batak Toba", + "it": "lingua batak toba", + "ja": "バタク・トバ語", + "nb_NO": "Batak Toba", + "nl": "Batak Toba", + "pl": "Batak Toba", + "pt": "Batak Toba", + "pt_BR": "Batak Toba", + "ru": "Тоба", + "sl": "Batak Toba", + "sv": "toba batak" + } + }, + { + "if": "language:ctg=yes", + "ifnot": "language:ctg=", + "searchTerms": { + "*": [ + "ctg" + ] + }, + "then": { + "de": "Chittagonisch", + "en": "Chittagonian", + "fi": "Chittagongin kieli", + "fr": "chittagonien", + "id": "Bahasa Chittagonia", + "it": "lingua chittagonian", + "ja": "チッタゴン語", + "pl": "Język chatgaya", + "pt": "Língua chittagong", + "pt_BR": "Língua chittagong", + "sv": "chittagoniska", + "es": "Idioma chittagoniano" + } + }, + { + "if": "language:brh=yes", + "ifnot": "language:brh=", + "searchTerms": { + "*": [ + "brh" + ] + }, + "then": { + "de": "Brahui", + "en": "Brahui", + "nl": "Brahui", + "ca": "brahui", + "eo": "braŭia lingvo", + "es": "Idioma brahui", + "fi": "Brahuin kieli", + "fr": "brahoui", + "id": "Bahasa Brahui", + "it": "brahui", + "ja": "ブラーフーイー語", + "nb_NO": "Brahui", + "pl": "Język brahui", + "pt": "Língua brahui", + "ru": "Брауи", + "sv": "brahui" + } + }, + { + "if": "language:bug=yes", + "ifnot": "language:bug=", + "searchTerms": { + "*": [ + "bug" + ] + }, + "then": { + "en": "Bugis", + "id": "Bugis", + "ca": "bugui", + "de": "Buginesisch", + "eo": "buĝia lingvo", + "es": "idioma buguinés", + "fi": "Bugin kieli", + "fr": "bouguinais", + "gl": "Lingua bugi", + "hu": "bugisz", + "it": "lingua buginese", + "ja": "ブギス語", + "nb_NO": "Buginesisk", + "nl": "Boeginees", + "pl": "język bugijski", + "pt": "Língua buginesa", + "ru": "бугийский язык", + "sv": "buginesiska" + } + }, + { + "if": "language:pa=yes", + "ifnot": "language:pa=", + "searchTerms": { + "*": [ + "pa" + ] + }, + "then": { + "id": "Bahasa Punjab", + "it": "punjabi", + "ja": "パンジャーブ語", + "nb_NO": "panjabi", + "nl": "Punjabi", + "pl": "język pendżabski", + "pt": "Língua panjabi", + "ru": "панджаби", + "sv": "punjabi", + "zh_Hant": "旁遮普語", + "en": "Punjabi", + "ca": "panjabi", + "da": "Punjabi", + "de": "Panjabi", + "eo": "panĝaba lingvo", + "es": "panyabí", + "fi": "punjabin kieli", + "fr": "pendjabi", + "gl": "lingua punjabi", + "hu": "pandzsábi" + } + }, + { + "if": "language:pnb=yes", + "ifnot": "language:pnb=", + "searchTerms": { + "*": [ + "pnb" + ] + }, + "then": { + "id": "Bahasa Punjab", + "it": "punjabi", + "ja": "パンジャーブ語", + "nb_NO": "panjabi", + "nl": "Punjabi", + "pl": "język pendżabski", + "pt": "Língua panjabi", + "ru": "панджаби", + "sv": "punjabi", + "zh_Hant": "旁遮普語", + "en": "Punjabi", + "ca": "panjabi", + "da": "Punjabi", + "de": "Panjabi", + "eo": "panĝaba lingvo", + "es": "panyabí", + "fi": "punjabin kieli", + "fr": "pendjabi", + "gl": "lingua punjabi", + "hu": "pandzsábi" + } + }, + { + "if": "language:brx=yes", + "ifnot": "language:brx=", + "searchTerms": { + "*": [ + "brx" + ] + }, + "then": { + "en": "Bodo", + "fr": "bodo", + "de": "Bodo", + "nl": "Boro", + "nb_NO": "Bodo", + "ru": "Бодо", + "ca": "bodo", + "eo": "bodoa lingvo", + "es": "Idioma bodo", + "fi": "Bodon kieli", + "id": "Bahasa Bodo", + "it": "bodo", + "ja": "ボド語", + "pl": "Język bodo", + "pt": "Língua bodo", + "sv": "bodo" + } + }, + { + "if": "language:sjd=yes", + "ifnot": "language:sjd=", + "searchTerms": { + "*": [ + "sjd" + ] + }, + "then": { + "ca": "sami kildin", + "de": "Kildinsamisch", + "en": "Kildin Sami", + "eo": "kildin-samea lingvo", + "es": "sami kildin", + "fi": "kiltinänsaame", + "fr": "same de Kildin", + "gl": "Lingua saami de Kildin", + "it": "lingua sami di Kildin", + "ja": "キルディン・サーミ語", + "nb_NO": "kildinsamisk", + "nl": "Kildin-Sami", + "pl": "Język kildin", + "pt": "Língua sami de Kildin", + "ru": "кильдинский саамский язык", + "sv": "kildinsamiska", + "hu": "kildini számi" + } + }, + { + "if": "language:bo=yes", + "ifnot": "language:bo=", + "searchTerms": { + "*": [ + "bo" + ] + }, + "then": { + "en": "Tibetan", + "ru": "тибетский язык", + "fr": "tibétain", + "de": "Tibetisch", + "ca": "tibetà", + "da": "tibetansk", + "eo": "tibeta lingvo", + "es": "tibetano", + "fi": "tiibetin kieli", + "gl": "Lingua tibetana", + "hu": "tibeti", + "id": "Bahasa Tibet", + "it": "tibetano", + "ja": "チベット語", + "nb_NO": "tibetansk", + "nl": "Tibetaans", + "pl": "język tybetański", + "pt": "Língua tibetana", + "pt_BR": "Língua tibetana", + "sv": "tibetanska" + } + }, + { + "if": "language:bi=yes", + "ifnot": "language:bi=", + "searchTerms": { + "*": [ + "bi" + ] + }, + "then": { + "en": "Bislama", + "ca": "bislama", + "de": "Bislama", + "eo": "bislama lingvo", + "es": "Bislama", + "fi": "Bislama", + "fr": "bichelamar", + "gl": "Bislama", + "hu": "biszlama", + "id": "Bahasa Bislama", + "it": "bislama", + "ja": "ビスラマ語", + "nb_NO": "bislama", + "nl": "Bislama", + "pl": "język bislama", + "pt": "Língua bislamá", + "ru": "бислама", + "sv": "bislama" + }, + "priorityIf": "_country~((^|;)vu($|;))" + }, + { + "if": "language:cdo=yes", + "ifnot": "language:cdo=", + "searchTerms": { + "*": [ + "cdo" + ] + }, + "then": { + "en": "Min Dong", + "ca": "min dong", + "de": "Min Dong", + "eo": "min-donga lingvo", + "es": "min dong", + "fi": "mindong", + "fr": "mindong", + "gl": "Lingua ming dong", + "id": "Bahasa Min Timur", + "it": "min dong", + "ja": "閩東語", + "nb_NO": "Mindong", + "nl": "Mindong", + "pl": "Język mindong", + "pt": "Língua min oriental", + "pt_BR": "Min Dong", + "ru": "Восточноминьский язык", + "sv": "mindong", + "zh_Hans": "闽东语", + "zh_Hant": "閩東語" + } + }, + { + "if": "language:sw=yes", + "ifnot": "language:sw=", + "searchTerms": { + "*": [ + "sw" + ] + }, + "then": { + "da": "Swahili", + "de": "Swahili", + "en": "Swahili", + "nl": "Swahili", + "ja": "スワヒリ語", + "es": "suajili", + "ca": "suahili", + "eo": "svahila lingvo", + "fi": "swahili", + "fr": "swahili", + "gl": "Lingua suahili", + "hu": "szuahéli", + "id": "Bahasa Swahili", + "it": "swahili", + "nb_NO": "swahili", + "pl": "suahili", + "pt": "Língua suaíli", + "pt_BR": "língua suaíli", + "ru": "cуахили", + "sl": "Svahili", + "sv": "swahili", + "zh_Hant": "史瓦希利語" + }, + "priorityIf": "_country~((^|;)ke($|;))|((^|;)rw($|;))|((^|;)tz($|;))|((^|;)ug($|;))" + }, + { + "if": "language:gom=yes", + "ifnot": "language:gom=", + "searchTerms": { + "*": [ + "gom" + ] + }, + "then": { + "de": "Goa-Konkani", + "en": "Goan Konkani", + "fr": "konkani de Goa", + "ja": "ゴア・コンカニ語", + "nl": "Goa-Konkani" + } + }, + { + "if": "language:mfe=yes", + "ifnot": "language:mfe=", + "searchTerms": { + "*": [ + "mfe" + ] + }, + "then": { + "de": "Morisyen", + "en": "Mauritian Creole", + "eo": "maŭricia kreola lingvo", + "es": "criollo mauriciano", + "fi": "Morisyen", + "fr": "créole mauricien", + "it": "creolo mauriziano", + "ja": "モーリシャス・クレオール語", + "nl": "Mauritiaans Creools", + "pl": "język kreolski Mauritiusa", + "pt": "crioulo de Maurício", + "ru": "Маврикийский креольский язык", + "hu": "mauritiusi kreol" + } + }, + { + "if": "language:zh=yes", + "ifnot": "language:zh=", + "searchTerms": { + "*": [ + "zh" + ] + }, + "then": { + "gl": "lingua chinesa", + "nb_NO": "kinesisk", + "pl": "język chiński", + "pt": "língua chinesa", + "pt_BR": "língua chinesa", + "ru": "китайский язык", + "sl": "Kitajščina", + "sv": "kinesiska", + "zh_Hans": "中文", + "zh_Hant": "漢語", + "ca": "xinès", + "en": "Chinese", + "es": "chino", + "hu": "kínai", + "it": "cinese", + "id": "Tionghoa", + "ja": "中国語", + "de": "Chinesisch", + "nl": "Chinese talen", + "da": "kinesisk", + "eo": "ĉina lingvo", + "fi": "kiina", + "fr": "langues chinoises" + }, + "priorityIf": "_country~((^|;)cn($|;))" + }, + { + "if": "language:sdc=yes", + "ifnot": "language:sdc=", + "searchTerms": { + "*": [ + "sdc" + ] + }, + "then": { + "it": "(lingua) sassarese", + "hu": "sassari", + "en": "Sassarese", + "ca": "sasserès", + "de": "Sassaresisch", + "fr": "sassarais", + "ja": "サッサリ・サルデーニャ語", + "nl": "Sassarees", + "pl": "Dialekt sassarski", + "ru": "сассарский язык", + "sl": "Sasarščina", + "gl": "Lingua sassaresa", + "id": "Bahasa Sassari", + "zh_Hans": "萨萨里语", + "zh_Hant": "薩薩里語", + "es": "sasarés" + } + }, + { + "if": "language:pdt=yes", + "ifnot": "language:pdt=", + "searchTerms": { + "*": [ + "pdt" + ] + }, + "then": { + "ca": "plautdietsch", + "de": "Plautdietsch", + "en": "Plautdietsch", + "eo": "plaŭtdiĉa lingvo", + "es": "Plautdietsch", + "fr": "bas allemand mennonite", + "id": "Bahasa Plautdietsch", + "it": "lingua plautdietsch", + "ja": "メノナイト低地ドイツ語", + "nb_NO": "plautdietsch", + "nl": "Plautdietsch", + "pl": "plautdietsch", + "pt": "Plautdietsch", + "ru": "Немецко-платский диалект", + "sv": "plautdietsch" + } + }, + { + "if": "language:sty=yes", + "ifnot": "language:sty=", + "searchTerms": { + "*": [ + "sty" + ] + }, + "then": { + "de": "Sibirisches Tatarisch", + "en": "Siberian Tatar", + "eo": "siberia tatara lingvo", + "es": "Idioma sibír", + "fr": "tatar de Sibérie", + "ja": "シビール語", + "pl": "język syberyskotatarski", + "pt": "Língua tártara da Sibéria", + "ru": "cибирско-татарский язык", + "zh_Hans": "西伯利亚鞑靼语", + "zh_Hant": "西伯利亞韃靼語", + "ca": "tàtar siberià" + } + }, + { + "if": "language:rmc=yes", + "ifnot": "language:rmc=", + "searchTerms": { + "*": [ + "rmc" + ] + }, + "then": { + "de": "Karpathen-Romani", + "en": "Carpathian Romani", + "fr": "romani des Carpates", + "it": "lingua carpato-romanì", + "ja": "中央方言群", + "nl": "Carpathian Romani", + "ru": "Карпатские диалекты цыганского языка", + "gl": "Romaní dos Cárpatos" + } + }, + { + "if": "language:nys=yes", + "ifnot": "language:nys=", + "searchTerms": { + "*": [ + "nys" + ] + }, + "then": { + "de": "Noongar", + "en": "Noongar", + "fr": "nyungan", + "ja": "ニュンガル語", + "nl": "Nyunga", + "sv": "nyunga" + } + }, + { + "if": "language:gsw-fr=yes", + "ifnot": "language:gsw-fr=", + "searchTerms": { + "*": [ + "gsw-fr" + ] + }, + "then": { + "eo": "alzaca lingvo", + "es": "alsaciano", + "fi": "Elsassi", + "gl": "Lingua alsaciana", + "hu": "elzászi", + "id": "Bahasa Elsass", + "it": "dialetto alsaziano", + "ja": "アルザス語", + "nb_NO": "elsassisk", + "nl": "Elzassisch", + "pl": "gwary alzackie", + "pt": "Língua alsaciana", + "pt_BR": "Língua alsaciana", + "ru": "эльзасский диалект", + "sv": "elsassiska", + "fr": "alsacien", + "ca": "alsacià", + "de": "Elsässisch", + "en": "Alsatian" + } + }, + { + "if": "language:zun=yes", + "ifnot": "language:zun=", + "searchTerms": { + "*": [ + "zun" + ] + }, + "then": { + "en": "Zuni", + "fi": "Zuni", + "nl": "Zuni", + "de": "Zuñi", + "ca": "llengua zuni", + "es": "zuñi", + "fr": "zuni", + "hu": "zuni", + "it": "zuni", + "ja": "ズニ語", + "pl": "Język zuni", + "pt": "Língua zuni", + "pt_BR": "Língua zuni", + "ru": "зуни", + "sv": "zuni", + "zh_Hans": "苏尼语", + "zh_Hant": "蘇尼語" + } + }, + { + "if": "language:sms=yes", + "ifnot": "language:sms=", + "searchTerms": { + "*": [ + "sms" + ] + }, + "then": { + "ca": "sami skolt", + "de": "Skoltsamisch", + "en": "Skolt Sami", + "eo": "skolt-samea lingvo", + "es": "sami skolt", + "fi": "koltansaame", + "fr": "same skolt", + "gl": "Lingua saami de Skolt", + "hu": "kolta számi", + "it": "lingua sami skolt", + "ja": "スコルト・サーミ語", + "nb_NO": "skoltesamisk", + "nl": "Skolt-Samisch", + "pl": "język skolt", + "pt": "kíngua sami de Skolt", + "pt_BR": "Língua sami de Skolt", + "ru": "колтта-саамский язык", + "sv": "skoltsamiska", + "zh_Hans": "斯科尔特萨米语", + "zh_Hant": "斯科爾特薩米語" + } + }, + { + "if": "language:pis=yes", + "ifnot": "language:pis=", + "searchTerms": { + "*": [ + "pis" + ] + }, + "then": { + "de": "Pijin", + "en": "Pijin", + "fi": "Pijin", + "fr": "pijin", + "it": "lingua pijin", + "ja": "ピジン語", + "pl": "Język neosalomoński", + "pt": "Língua pijin", + "ru": "Пиджин Соломоновых Островов", + "sv": "Pijin", + "es": "Pidgin salomonense", + "eo": "piĵina lingvo" + } + }, + { + "if": "language:nr=yes", + "ifnot": "language:nr=", + "searchTerms": { + "*": [ + "nr" + ] + }, + "then": { + "en": "Southern Ndebele", + "nl": "Zuid-Ndebele", + "ca": "ndebele meridional", + "de": "Süd-Ndebele", + "eo": "Suda Ndebela lingvo", + "es": "ndebele del Sur", + "fi": "Etelä-ndebelen kieli", + "fr": "nrebele", + "gl": "Lingua ndebele", + "hu": "déli ndebele", + "it": "ndebele del sud", + "ja": "南ンデベレ語", + "nb_NO": "sørndebele", + "pl": "język ndebele południowy", + "pt": "língua ndebele", + "pt_BR": "língua ndebele", + "ru": "южный ндебеле", + "sv": "sydndebele", + "zh_Hans": "南恩德贝莱语", + "zh_Hant": "南恩德貝萊語" + }, + "priorityIf": "_country~((^|;)za($|;))" + }, + { + "if": "language:umu=yes", + "ifnot": "language:umu=", + "searchTerms": { + "*": [ + "umu" + ] + }, + "then": { + "de": "Munsee", + "en": "Munsee", + "es": "Munsee", + "nb_NO": "Munsee", + "nl": "Munsee", + "ca": "munsee", + "fr": "munsee", + "gl": "Lingua munsee", + "it": "lingua munsee", + "ja": "マンシー語", + "pt": "Língua munsee", + "ru": "Мунси", + "sv": "munsee" + } + }, + { + "if": "language:gaa=yes", + "ifnot": "language:gaa=", + "searchTerms": { + "*": [ + "gaa" + ] + }, + "then": { + "ca": "ga", + "eo": "gaa lingvo", + "es": "Idioma ga", + "fi": "Gan kieli", + "it": "lingua ga", + "ja": "ガ語", + "pl": "Język ga", + "zh_Hant": "加語", + "sv": "ga (språk)", + "de": "Ga", + "en": "Ga", + "fr": "ga", + "ru": "Га", + "nl": "Ga" + } + }, + { + "if": "language:fon=yes", + "ifnot": "language:fon=", + "searchTerms": { + "*": [ + "fon" + ] + }, + "then": { + "de": "Fon", + "en": "Fon", + "nl": "Fon", + "ru": "фон", + "it": "fon", + "ca": "fon", + "nb_NO": "fon", + "sv": "fon", + "eo": "fonua lingvo", + "es": "idioma fon", + "fi": "Fonin kieli", + "fr": "fon-gbe", + "gl": "Lingua fon", + "id": "Bahasa Fon", + "ja": "フォン語", + "pl": "język fon", + "pt": "Língua fon", + "zh_Hant": "豐語" + } + }, + { + "if": "language:loz=yes", + "ifnot": "language:loz=", + "searchTerms": { + "*": [ + "loz" + ] + }, + "then": { + "en": "Lozi", + "ca": "lozi", + "da": "Lozi", + "de": "Lozi", + "es": "Idioma lozi", + "fi": "Lozi", + "fr": "lozi", + "gl": "Lingua lozi", + "it": "lingua lozi", + "ja": "ロジ語", + "nb_NO": "Lozi", + "nl": "Lozi", + "pl": "Język lozi", + "pt": "Língua lozi", + "ru": "Лози (язык)", + "sv": "lozi", + "zh_Hans": "洛兹语", + "zh_Hant": "洛茲語", + "eo": "lozia lingvo" + } + }, + { + "if": "language:crs=yes", + "ifnot": "language:crs=", + "searchTerms": { + "*": [ + "crs" + ] + }, + "then": { + "ca": "crioll de les Seychelles", + "de": "Seychellenkreol", + "en": "Seychellois Creole", + "eo": "sejŝela lingvo", + "es": "criollo seychelense", + "fi": "Seychellien kreoli", + "fr": "créole seychellois", + "gl": "Crioulo das Seychelles", + "it": "creolo delle Seychelles", + "ja": "セーシェル・クレオール語", + "nb_NO": "seychellisk kreol", + "nl": "Seychellois Creole", + "pl": "Język kreolski seszelski", + "pt": "Crioulo de Seychelles", + "ru": "сейшельский креольский язык", + "id": "Bahasa Kreol Seychelles", + "hu": "seychelle-i kreol" + } + }, + { + "if": "language:tru=yes", + "ifnot": "language:tru=", + "searchTerms": { + "*": [ + "tru" + ] + }, + "then": { + "nl": "Turoyo", + "ca": "turoio", + "de": "Turoyo", + "en": "Turoyo", + "es": "turoyo", + "fr": "turoyo", + "ja": "トゥロヨ語", + "pl": "Turoyo", + "pt": "Língua turoyo", + "ru": "Туройо", + "sv": "turoyo" + } + }, + { + "if": "language:agq=yes", + "ifnot": "language:agq=", + "searchTerms": { + "*": [ + "agq" + ] + }, + "then": { + "de": "Aghem", + "en": "Aghem", + "fr": "aghem", + "gl": "Lingua aghem", + "ja": "アゲム語", + "nl": "Aghem", + "ca": "aghem", + "es": "aghem" + } + }, + { + "if": "language:ary=yes", + "ifnot": "language:ary=", + "searchTerms": { + "*": [ + "ary" + ] + }, + "then": { + "ca": "àrab marroquí", + "da": "Marokkansk arabisk", + "de": "Marokkanisch-Arabisch", + "en": "Moroccan Arabic", + "eo": "maroka araba lingvo", + "es": "árabe marroquí", + "fi": "Marokonarabia", + "fr": "arabe marocain", + "gl": "árabe marroquí", + "id": "Bahasa Arab Maroko", + "it": "arabo marocchino", + "ja": "アラビア語モロッコ方言", + "nb_NO": "marokkansk-arabisk", + "nl": "Marokkaans Arabisch", + "pl": "marokańska odmiana języka arabskiego", + "pt": "Árabe marroquino", + "ru": "Марокканский диалект арабского языка", + "sv": "marockansk arabiska", + "zh_Hant": "摩洛哥阿拉伯語" + } + }, + { + "if": "language:atj=yes", + "ifnot": "language:atj=", + "searchTerms": { + "*": [ + "atj" + ] + }, + "then": { + "ca": "atikamekw", + "de": "Atikamekw", + "en": "Atikamekw", + "es": "atikamekw", + "fi": "Atikamekw", + "fr": "atikamekw", + "gl": "atikamekw", + "it": "lingua atikamekw", + "ja": "アティカメク語", + "nb_NO": "atikamekw", + "nl": "Atikamekw", + "pt": "Língua atikamekw", + "ru": "aтикамек", + "zh_Hans": "阿提卡米克语", + "zh_Hant": "阿提卡米克語" + } + }, + { + "if": "language:alt=yes", + "ifnot": "language:alt=", + "searchTerms": { + "*": [ + "alt" + ] + }, + "then": { + "en": "Altai", + "ca": "altai meridional", + "de": "Südaltaisch", + "eo": "sudaltaja lingvo", + "fr": "altaï méridional", + "gl": "Lingua altai meridional", + "it": "lingua altai meridionale", + "ja": "南アルタイ語", + "nl": "Zuid-Altajs", + "ru": "aлтайский язык", + "zh_Hant": "南阿爾泰語" + } + }, + { + "if": "language:ta=yes", + "ifnot": "language:ta=", + "searchTerms": { + "*": [ + "ta" + ] + }, + "then": { + "nb_NO": "tamilsk", + "pl": "język tamilski", + "pt": "Língua tâmil", + "pt_BR": "língua tâmil", + "sl": "Tamilščina", + "sv": "tamil", + "zh_Hans": "泰米尔语", + "zh_Hant": "坦米爾語", + "en": "Tamil", + "nl": "Tamil", + "es": "tamil", + "ca": "tàmil", + "eo": "tamila lingvo", + "ru": "тамильский язык", + "da": "Tamil", + "de": "Tamil", + "fi": "tamil", + "fr": "tamoul", + "gl": "Lingua támil", + "hu": "tamil", + "id": "Bahasa Tamil", + "it": "tamil", + "ja": "タミル語" + }, + "priorityIf": "_country~((^|;)lk($|;))|((^|;)sg($|;))" + }, + { + "if": "language:ps=yes", + "ifnot": "language:ps=", + "searchTerms": { + "*": [ + "ps" + ] + }, + "then": { + "hu": "pastu", + "it": "pashtu", + "ja": "パシュトー語", + "nb_NO": "pashto", + "nl": "Pasjtoe", + "pl": "język paszto", + "pt": "pastó", + "pt_BR": "pastó", + "ru": "пушту", + "sl": "paštunščina", + "sv": "pashto", + "zh_Hans": "普什图语", + "ca": "paixtu", + "es": "pastún", + "id": "Pashtun", + "en": "Pashto", + "da": "Pashto", + "de": "Paschtu", + "eo": "paŝtuna lingvo", + "fi": "paštun kieli", + "fr": "pachto", + "gl": "Lingua paxta" + }, + "priorityIf": "_country~((^|;)af($|;))" + }, + { + "if": "language:nqo=yes", + "ifnot": "language:nqo=", + "searchTerms": { + "*": [ + "nqo" + ] + }, + "then": { + "en": "N'Ko", + "fr": "n'ko", + "gl": "Lingua n'ko", + "ja": "ンコ語", + "nl": "N’Ko", + "pl": "Język n’ko", + "sv": "N'ko", + "zh_Hans": "康柏语", + "zh_Hant": "康柏語", + "ru": "Нко (язык)" + } + }, + { + "if": "language:ro=yes", + "ifnot": "language:ro=", + "searchTerms": { + "*": [ + "ro" + ] + }, + "then": { + "eo": "rumana lingvo", + "fi": "romania", + "fr": "roumain", + "gl": "lingua romanesa", + "id": "Bahasa Rumania", + "it": "romeno", + "ja": "ルーマニア語", + "nb_NO": "rumensk", + "nl": "Roemeens", + "pl": "język rumuński", + "pt": "Língua romena", + "pt_BR": "língua romena", + "ru": "румынский язык", + "sl": "Romunščina", + "de": "Rumänisch", + "en": "Romanian", + "ca": "romanès", + "es": "rumano", + "hu": "román", + "da": "rumænsk", + "sv": "rumänska", + "zh_Hant": "羅馬尼亞語" + }, + "priorityIf": "_country~((^|;)md($|;))|((^|;)ro($|;))" + }, + { + "if": "language:cbk-zam=yes", + "ifnot": "language:cbk-zam=", + "searchTerms": { + "*": [ + "cbk-zam" + ] + }, + "then": { + "ca": "chavacano", + "de": "Chabacano", + "en": "Chavacano", + "eo": "Ĉabakana lingvo", + "fr": "chavacano", + "gl": "Chavacano", + "it": "zamboangueño", + "ja": "チャバカノ語", + "nb_NO": "chavacano", + "nl": "Chavacano", + "pl": "Język chavacano", + "pt": "chavacano", + "ru": "Чабакано", + "sv": "chavacano", + "es": "criollo chabacano", + "hu": "chabacano" + } + }, + { + "if": "language:ovd=yes", + "ifnot": "language:ovd=", + "searchTerms": { + "*": [ + "ovd" + ] + }, + "then": { + "ca": "dialecte dalecarlià", + "de": "Älvdalisch", + "en": "Elfdalian", + "es": "idioma dalecarliano", + "fr": "dalécarlien", + "gl": "Lingua dalecarliana", + "it": "övdaliano", + "ja": "エルヴダーレン語", + "nb_NO": "älvdalsk", + "nl": "Elfdaals", + "pl": "Elfdalski", + "pt": "Älvdalsmål", + "sv": "älvdalska", + "ru": "эльвдальский диалект", + "fi": "älvdalska", + "da": "elvdalsk" + } + }, + { + "if": "language:vmf=yes", + "ifnot": "language:vmf=", + "searchTerms": { + "*": [ + "vmf" + ] + }, + "then": { + "de": "mainfränkische Dialekte", + "en": "Main-Franconian", + "es": "Fráncico del Meno", + "fr": "franconien du Main", + "it": "lingua francone del Meno", + "ja": "マインフランク語", + "nl": "Mainfrankisch", + "ru": "Майнфранкские диалекты" + } + }, + { + "if": "language:bto=yes", + "ifnot": "language:bto=", + "searchTerms": { + "*": [ + "bto" + ] + }, + "then": { + "en": "Rinconada Bikol", + "fi": "Iriganbikol", + "fr": "bikol rinconada", + "ja": "イリガ・ビコール語", + "pt": "Língua rinconada bikol" + } + }, + { + "if": "language:bcc=yes", + "ifnot": "language:bcc=", + "searchTerms": { + "*": [ + "bcc" + ] + }, + "then": { + "en": "Southern Balochi", + "fr": "baloutche du Sud", + "ja": "南バローチー語", + "ru": "южный белуджский", + "zh_Hans": "南俾路支语", + "zh_Hant": "南俾路支語" + } + }, + { + "if": "language:crl=yes", + "ifnot": "language:crl=", + "searchTerms": { + "*": [ + "crl" + ] + }, + "then": { + "en": "Northern East Cree", + "fr": "cri de l’Est, dialecte du Nord" + } + }, + { + "if": "language:lrc=yes", + "ifnot": "language:lrc=", + "searchTerms": { + "*": [ + "lrc" + ] + }, + "then": { + "de": "Nördliches Luri", + "en": "Northern Luri", + "es": "luri septentrional", + "fr": "lori du Nord", + "it": "luri dal nord", + "ja": "北ロル語", + "nl": "Noordelijk Luri", + "pt": "luri setentrional", + "gl": "lingua luri setentrional" + } + }, + { + "if": "language:akl=yes", + "ifnot": "language:akl=", + "searchTerms": { + "*": [ + "akl" + ] + }, + "then": { + "ca": "aklanon", + "de": "Akeanon", + "en": "Aklan", + "fi": "Aklanon", + "fr": "aklanon", + "gl": "Lingua aklanon", + "it": "lingua Aklan", + "ja": "アクラノン語", + "pl": "Język aklanon", + "pt": "Língua aklan", + "es": "aclano", + "da": "aklansk" + } + }, + { + "if": "language:bpy=yes", + "ifnot": "language:bpy=", + "searchTerms": { + "*": [ + "bpy" + ] + }, + "then": { + "pl": "Język bisznuprija-manipuri", + "pt": "Bishnupriya Manipuri", + "ru": "Бишнуприя-манипури", + "sv": "bishnupriya manipuri", + "zh_Hans": "比什奴普莱利亚-曼尼浦尔语", + "zh_Hant": "比什奴普萊利亞-曼尼浦爾語", + "ca": "Bishnupriya manipuri", + "de": "Bishnupriya Manipuri", + "en": "Bishnupriya Manipuri", + "eo": "Biŝnuprija Manipuri lingvo", + "es": "Bishnupriya manipurí", + "fi": "Bishnupriya Manipuri", + "fr": "manipourî de Bishnupriyay", + "gl": "Lingua bishnupriya manipuri", + "id": "Bahasa Bishnupriya Manipuri", + "it": "Bishnupriya Manipuri", + "ja": "ビシュヌプリヤ・マニプリ語", + "nb_NO": "bishnupriya manipuri", + "nl": "Bishnupriya Manipuri" + } + }, + { + "if": "language:mic=yes", + "ifnot": "language:mic=", + "searchTerms": { + "*": [ + "mic" + ] + }, + "then": { + "en": "Mi'kmaq", + "es": "micmac", + "nl": "Mi'kmaq", + "de": "Micmac-Sprache", + "eo": "mikmaka lingvo", + "fi": "Micmacin kieli", + "fr": "micmac", + "gl": "Lingua micmac", + "id": "Bahasa Mi'kmaq", + "it": "lingua micmac", + "ja": "ミクマク語", + "pl": "Język mikmak", + "ru": "микмак" + } + }, + { + "if": "language:sk=yes", + "ifnot": "language:sk=", + "searchTerms": { + "*": [ + "sk" + ] + }, + "then": { + "zh_Hant": "斯洛伐克語", + "en": "Slovak", + "hu": "szlovák", + "it": "slovacco", + "ca": "eslovac", + "da": "slovakisk", + "de": "Slowakisch", + "eo": "slovaka lingvo", + "es": "eslovaco", + "fi": "slovakki", + "fr": "slovaque", + "gl": "lingua eslovaca", + "id": "Bahasa Slowakia", + "ja": "スロバキア語", + "nb_NO": "slovakisk", + "nl": "Slowaaks", + "pl": "język słowacki", + "pt": "eslovaco", + "pt_BR": "língua eslovaca", + "ru": "словацкий язык", + "sl": "Slovaščina", + "sv": "slovakiska" + }, + "priorityIf": "_country~((^|;)sk($|;))" + }, + { + "if": "language:sl=yes", + "ifnot": "language:sl=", + "searchTerms": { + "*": [ + "sl" + ] + }, + "then": { + "en": "Slovene", + "ca": "eslovè", + "da": "slovensk", + "de": "Slowenisch", + "eo": "slovena lingvo", + "es": "esloveno", + "fi": "sloveeni", + "fr": "slovène", + "gl": "lingua eslovena", + "hu": "szlovén", + "id": "Bahasa Slovenia", + "it": "sloveno", + "ja": "スロベニア語", + "nb_NO": "slovensk", + "nl": "Sloveens", + "pl": "język słoweński", + "pt": "língua eslovena", + "pt_BR": "língua eslovena", + "ru": "словенский язык", + "sl": "slovenščina", + "sv": "slovenska", + "zh_Hant": "斯洛維尼亞語" + }, + "priorityIf": "_country~((^|;)si($|;))" + }, + { + "if": "language:ryu=yes", + "ifnot": "language:ryu=", + "searchTerms": { + "*": [ + "ryu" + ] + }, + "then": { + "eo": "okinava lingvo", + "es": "okinawense", + "fi": "Okinawan kieli", + "fr": "okinawanais", + "gl": "Lingua okinawana", + "id": "Bahasa Okinawa", + "it": "lingua di Okinawa", + "ja": "沖縄方言", + "nb_NO": "Okinawa", + "nl": "Okinawaans", + "pl": "Język okinawski", + "pt": "okinawano", + "ru": "Окинавский язык", + "sv": "okinawianska", + "zh_Hant": "沖繩語", + "hu": "okinavai", + "ca": "llengua d'Okinawa", + "en": "Okinawan" + } + }, + { + "if": "language:yai=yes", + "ifnot": "language:yai=", + "searchTerms": { + "*": [ + "yai" + ] + }, + "then": { + "de": "Jaghnobi", + "en": "Yaghnobi", + "eo": "jagnoba lingvo", + "es": "yagnobi", + "fi": "Jagnobin kieli", + "fr": "yaghnobi", + "gl": "Lingua iagnobí", + "id": "Bahasa Yaghnobi", + "it": "yaghnobī́", + "ja": "ヤグノビ語", + "nb_NO": "Yaghnobi", + "nl": "Yaghnobi", + "pl": "Język jagnobijski", + "pt": "Língua yaghnobi", + "ru": "Ягнобский язык", + "sv": "yaghnobi" + } + }, + { + "if": "language:efi=yes", + "ifnot": "language:efi=", + "searchTerms": { + "*": [ + "efi" + ] + }, + "then": { + "ca": "efik", + "de": "Efik", + "en": "Efik", + "eo": "efika lingvo", + "es": "Idioma efik", + "fi": "Efik", + "fr": "efik", + "id": "Bahasa Efik", + "it": "lingua Efik", + "ja": "エフィク語", + "nb_NO": "Efik", + "nl": "Efik", + "pt": "Língua efik" + } + }, + { + "if": "language:te=yes", + "ifnot": "language:te=", + "searchTerms": { + "*": [ + "te" + ] + }, + "then": { + "nb_NO": "telugu", + "pl": "język telugu", + "pt": "língua telugu", + "pt_BR": "Língua telugu", + "ru": "телугу", + "sv": "telugu", + "zh_Hant": "泰盧固語", + "en": "Telugu", + "de": "Telugu", + "nl": "Telugu", + "fr": "télougou", + "ca": "telugu", + "da": "Telugu", + "eo": "telugua lingvo", + "es": "télugu", + "fi": "telugu", + "gl": "Lingua telugu", + "hu": "telugu", + "id": "Bahasa Telugu", + "it": "telugu", + "ja": "テルグ語" + } + }, + { + "if": "language:yi=yes", + "ifnot": "language:yi=", + "searchTerms": { + "*": [ + "yi" + ] + }, + "then": { + "en": "Yiddish", + "es": "yidis", + "fr": "yiddish", + "ca": "ídix", + "da": "jiddisch", + "de": "Jiddisch", + "eo": "jida lingvo", + "fi": "jiddiš", + "gl": "Lingua yiddish", + "hu": "jiddis", + "id": "Bahasa Yiddi", + "it": "yiddish", + "ja": "イディッシュ語", + "nb_NO": "jiddisch", + "nl": "Jiddisch", + "pl": "jidysz", + "pt": "língua iídiche", + "ru": "идиш", + "sl": "Jidiš", + "sv": "jiddisch", + "zh_Hant": "意第緒語", + "pt_BR": "língua iídiche" + } + }, + { + "if": "language:tg=yes", + "ifnot": "language:tg=", + "searchTerms": { + "*": [ + "tg" + ] + }, + "then": { + "da": "tadsjikisk", + "eo": "taĝika lingvo", + "es": "tayiko", + "fi": "tadžikki", + "gl": "Lingua taxica", + "id": "Bahasa Tajik", + "it": "tagico", + "ja": "タジク語", + "nb_NO": "tadsjikisk", + "nl": "Tadzjieks", + "pl": "język tadżycki", + "pt": "Língua tadjique", + "pt_BR": "Língua tadjique", + "ru": "таджикский язык", + "sv": "tadzjikiska", + "hu": "tádzsik", + "ca": "tadjik", + "en": "Tajik", + "fr": "tadjik", + "de": "Tadschikisch" + }, + "priorityIf": "_country~((^|;)tj($|;))" + }, + { + "if": "language:bat-smg=yes", + "ifnot": "language:bat-smg=", + "searchTerms": { + "*": [ + "bat-smg" + ] + }, + "then": { + "ca": "samogitià", + "da": "Žemaitisk", + "de": "Schemaitisch", + "en": "Samogitian", + "eo": "Ĵemajtia dialekto", + "es": "Idioma samogitiano", + "fi": "Samogiitti", + "fr": "samogitien", + "gl": "Samoxiciano", + "id": "Dialek Samogitia", + "it": "samogitico", + "ja": "サモギティア語", + "nb_NO": "samogitisk", + "nl": "Samogitisch", + "pl": "język żmudzki", + "pt": "Samogiciano", + "ru": "жемайтское наречие", + "sv": "žemaitiska", + "zh_Hans": "萨莫吉提亚语", + "zh_Hant": "薩莫吉提亞語", + "hu": "szamogit" + } + }, + { + "if": "language:nod=yes", + "ifnot": "language:nod=", + "searchTerms": { + "*": [ + "nod" + ] + }, + "then": { + "de": "Lanna", + "ca": "tailandès septentrional", + "en": "Northern Thai", + "eo": "nord-taja lingvo", + "es": "idioma tailandés septentrional", + "fr": "thaï du Nord", + "id": "Bahasa Thai Utara", + "it": "thailandese settentrionale", + "ja": "北タイ語", + "nl": "Noordelijk Thai", + "pl": "Język północnotajski", + "ru": "Юан (язык)", + "zh_Hans": "北部泰语", + "zh_Hant": "北部泰語" + } + }, + { + "if": "language:lag=yes", + "ifnot": "language:lag=", + "searchTerms": { + "*": [ + "lag" + ] + }, + "then": { + "fi": "Lango", + "de": "Langi", + "nl": "Langi", + "en": "Rangi", + "nb_NO": "Rangi", + "fr": "langi", + "ja": "ランギ語", + "pl": "Język langi", + "eo": "rangia lingvo" + } + }, + { + "if": "language:krj=yes", + "ifnot": "language:krj=", + "searchTerms": { + "*": [ + "krj" + ] + }, + "then": { + "de": "Kinaray-a", + "en": "Kinaray-a", + "fi": "Kinaray-a", + "fr": "kinaray-a", + "id": "bahasa Karay-a", + "it": "kinaray-a", + "ja": "キナライア語", + "nb_NO": "Kinaray-a", + "nl": "Kinaray-a", + "pt": "língua Karai-a", + "es": "harayo", + "pl": "język Karaya", + "ru": "Карайский язык", + "da": "harajansk" + } + }, + { + "if": "language:yap=yes", + "ifnot": "language:yap=", + "searchTerms": { + "*": [ + "yap" + ] + }, + "then": { + "en": "Yapese", + "de": "Yapesisch", + "fi": "Yapin kieli", + "fr": "yap", + "it": "yapese", + "ja": "ヤップ語", + "nb_NO": "Yapesisk", + "nl": "Yapees", + "pl": "Język yap", + "pt": "Língua yap", + "ru": "Япский язык" + } + }, + { + "if": "language:ydg=yes", + "ifnot": "language:ydg=", + "searchTerms": { + "*": [ + "ydg" + ] + }, + "then": { + "de": "Yidgha", + "en": "Yidgha", + "fr": "yidgha", + "ja": "イドガ語", + "pl": "Język yidgański", + "ru": "Йидга", + "pt": "Língua yidgha" + } + }, + { + "if": "language:vi=yes", + "ifnot": "language:vi=", + "searchTerms": { + "*": [ + "vi" + ] + }, + "then": { + "pt": "vietnamita", + "en": "Vietnamese", + "ca": "vietnamita", + "es": "vietnamita", + "fr": "vietnamien", + "hu": "vietnámi", + "id": "Vietnam", + "it": "vietnamita", + "de": "Vietnamesisch", + "da": "vietnamesisk", + "eo": "vjetnama lingvo", + "fi": "vietnam", + "gl": "Lingua vietnamita", + "ja": "ベトナム語", + "nb_NO": "vietnamesisk", + "nl": "Vietnamees", + "pl": "język wietnamski", + "pt_BR": "Língua vietnamita", + "ru": "вьетнамский язык", + "sl": "Vietnamščina", + "sv": "vietnamesiska", + "zh_Hant": "越南語" + }, + "priorityIf": "_country~((^|;)vn($|;))" + }, + { + "if": "language:it=yes", + "ifnot": "language:it=", + "searchTerms": { + "*": [ + "it" + ] + }, + "then": { + "ca": "italià", + "da": "italiensk", + "eo": "itala lingvo", + "fi": "italia", + "gl": "lingua italiana", + "nb_NO": "italiensk", + "pl": "język włoski", + "pt_BR": "língua italiana", + "ru": "итальянский язык", + "sl": "italijanščina", + "sv": "italienska", + "zh_Hans": "意大利语", + "zh_Hant": "義大利語", + "en": "Italian", + "ja": "イタリア語", + "es": "italiano", + "hu": "olasz", + "id": "Italia", + "it": "italiano", + "fr": "italien", + "de": "Italienisch", + "nl": "Italiaans", + "pt": "italiano" + }, + "priorityIf": "_country~((^|;)ch($|;))|((^|;)it($|;))|((^|;)sm($|;))|((^|;)va($|;))" + }, + { + "if": "language:bzg=yes", + "ifnot": "language:bzg=", + "searchTerms": { + "*": [ + "bzg" + ] + }, + "then": { + "en": "Babuza", + "nl": "Babuza", + "ca": "babuza", + "es": "babuza", + "fr": "babuza", + "it": "lingua babuza", + "ja": "バブサ語", + "zh_Hans": "巴布萨语", + "zh_Hant": "巴布薩語", + "id": "Bahasa Babuza" + } + }, + { + "if": "language:pyu=yes", + "ifnot": "language:pyu=", + "searchTerms": { + "*": [ + "pyu" + ] + }, + "then": { + "en": "Puyuma", + "ca": "puyuma", + "eo": "pujuma lingvo", + "id": "Bahasa Puyuma", + "it": "lingua puyuma", + "ja": "プユマ語", + "nl": "Pyuma", + "ru": "Пуюма", + "zh_Hans": "卑南语", + "zh_Hant": "卑南語", + "fr": "pouyouma" + } + }, + { + "if": "language:guc=yes", + "ifnot": "language:guc=", + "searchTerms": { + "*": [ + "guc" + ] + }, + "then": { + "ca": "wayuunaiki", + "de": "Wayuu", + "en": "Wayuu", + "eo": "vajua lingvo", + "es": "Idioma wayú", + "fr": "wayuu", + "gl": "Lingua wayuu", + "it": "lingua wayuu", + "ja": "ワユ語", + "nl": "Wayuu", + "pl": "Język wayuu", + "pt": "Língua wayuu", + "ru": "Гуахиро" + } + }, + { + "if": "language:ood=yes", + "ifnot": "language:ood=", + "searchTerms": { + "*": [ + "ood" + ] + }, + "then": { + "ca": "o'odham", + "en": "O'odham", + "es": "o'odham", + "fr": "o'odham", + "gl": "Lingua o'odham", + "it": "lingua o'odham", + "ja": "パパゴ語", + "nb_NO": "O'odham", + "nl": "O'odham", + "pl": "Język o'odham", + "ru": "оодхам", + "sv": "o'odham" + } + }, + { + "if": "language:bdr=yes", + "ifnot": "language:bdr=", + "searchTerms": { + "*": [ + "bdr" + ] + }, + "then": { + "de": "West Coast Bajau", + "en": "West Coast Bajau", + "fr": "bajau de la côte occidentale" + } + }, + { + "if": "language:btm=yes", + "ifnot": "language:btm=", + "searchTerms": { + "*": [ + "btm" + ] + }, + "then": { + "en": "Mandailing", + "fr": "batak mandailing", + "id": "Bahasa Mandailing", + "ja": "バタク・マンダイリン語", + "pl": "język batak mandailing", + "zh_Hans": "曼代灵语", + "zh_Hant": "曼代靈語" + } + }, + { + "if": "language:gcf=yes", + "ifnot": "language:gcf=", + "searchTerms": { + "*": [ + "gcf" + ] + }, + "then": { + "en": "Guadeloupean Creole", + "fi": "Guadeloupen kreoli", + "fr": "créole guadeloupéen-martiniquais", + "nl": "Guadeloups Creools", + "pt": "Crioulo de Guadalupe", + "sv": "Guadeloupisk kreol", + "ca": "crioll de Guadalupe" + } + }, + { + "if": "language:srq=yes", + "ifnot": "language:srq=", + "searchTerms": { + "*": [ + "srq" + ] + }, + "then": { + "ca": "Sirionó", + "en": "Sirionó", + "es": "sirionó", + "fr": "sirionó", + "ja": "シリオノ語", + "nb_NO": "sirionó", + "nl": "Sirionó", + "pt": "Língua sirionó", + "ru": "сирионо" + } + }, + { + "if": "language:ins=yes", + "ifnot": "language:ins=", + "searchTerms": { + "*": [ + "ins" + ] + }, + "then": { + "en": "Indian Sign Language", + "eo": "barata signolingvo", + "fr": "langue des signes indo-pakistanaise", + "it": "lingua dei segni indiana", + "ja": "インド・パキスタン手話", + "nl": "Indiase Gebarentaal", + "pt": "língua de sinais indiana", + "ru": "Индо-пакистанский жестовый язык", + "sv": "Indiskt teckenspråk", + "id": "Bahasa Isyarat India-Pakistan" + } + }, + { + "if": "language:rki=yes", + "ifnot": "language:rki=", + "searchTerms": { + "*": [ + "rki" + ] + }, + "then": { + "en": "Arakanese", + "fr": "arakanais", + "id": "Bahasa Arakan", + "ja": "ラカイン語", + "pl": "Język arakański", + "pt": "Língua arracanesa", + "ru": "Араканский язык", + "zh_Hans": "阿拉干语", + "zh_Hant": "阿拉幹語" + } + }, + { + "if": "language:wls=yes", + "ifnot": "language:wls=", + "searchTerms": { + "*": [ + "wls" + ] + }, + "then": { + "it": "wallisiano", + "ja": "ウォリス語", + "nl": "Wallisiaans", + "pl": "Język uvea wschodni", + "pt": "Língua wallisiana", + "ru": "Уоллисский язык", + "sv": "Walliska", + "ca": "wallisià", + "de": "Wallisianisch", + "en": "Wallisian", + "es": "walisiano", + "fi": "Uvean kieli", + "fr": "wallisien" + } + }, + { + "if": "language:sje=yes", + "ifnot": "language:sje=", + "searchTerms": { + "*": [ + "sje" + ] + }, + "then": { + "ca": "sami de Pite", + "de": "Pitesamisch", + "en": "Pite Sami", + "eo": "pite-samea lingvo", + "es": "sami de Pite", + "fi": "piitimensaame", + "fr": "same de Pite", + "gl": "Lingua saami de Pite", + "it": "lingua sami di Pite", + "ja": "ピーテ・サーミ語", + "nb_NO": "pitesamisk", + "nl": "Pite Sami", + "pl": "język pite", + "pt": "língua sami de Pite", + "ru": "пите-саамский язык", + "sv": "pitesamiska", + "zh_Hans": "皮特萨米语", + "zh_Hant": "皮特薩米語", + "hu": "pitei számi" + } + }, + { + "if": "language:smj=yes", + "ifnot": "language:smj=", + "searchTerms": { + "*": [ + "smj" + ] + }, + "then": { + "ca": "sami de Lule", + "de": "Lulesamisch", + "en": "Lule Sami", + "eo": "lule-samea lingvo", + "es": "sami de Lule", + "fi": "luulajansaame", + "fr": "same de Lule", + "gl": "Lingua saami de Lule", + "hu": "lulei számi", + "it": "lingua sami di Lule", + "ja": "ルレ・サーミ語", + "nb_NO": "lulesamisk", + "nl": "Lule-Samisch", + "pl": "język lule", + "pt": "língua sami de Lule", + "pt_BR": "Língua lapônica de Lule", + "ru": "луле-саамский язык", + "sv": "lulesamiska", + "zh_Hans": "吕勒萨米语", + "zh_Hant": "呂勒薩米語" + } + }, + { + "if": "language:kum=yes", + "ifnot": "language:kum=", + "searchTerms": { + "*": [ + "kum" + ] + }, + "then": { + "en": "Kumyk", + "ca": "kumyk", + "de": "Kumykisch", + "eo": "kumika lingvo", + "es": "Idioma cumuco", + "fi": "Kumykin kieli", + "fr": "koumyk", + "id": "Bahasa Kumyk", + "it": "cumucco", + "ja": "クムク語", + "nb_NO": "kumykisk", + "nl": "Koemuks", + "pt": "Língua kumyk", + "pt_BR": "Língua kumyk", + "ru": "кумыкский язык", + "sv": "kumykiska" + } + }, + { + "if": "language:nui=yes", + "ifnot": "language:nui=", + "searchTerms": { + "*": [ + "nui" + ] + }, + "then": { + "en": "Kombe", + "ca": "llengua combe", + "de": "Ngumbi", + "es": "kombe", + "fr": "Langue kombe", + "gl": "Lingua kombe", + "ja": "コンベ語" + } + }, + { + "if": "language:zh-min-nan=yes", + "ifnot": "language:zh-min-nan=", + "searchTerms": { + "*": [ + "zh-min-nan" + ] + }, + "then": { + "en": "Southern Min", + "fr": "minnan", + "zh_Hant": "閩南語", + "da": "Minnan", + "fi": "Minnan", + "de": "Min Nan", + "eo": "minnana lingvo", + "es": "chino min nan", + "gl": "lingua min nam", + "id": "Min Selatan", + "it": "min nan", + "ja": "閩南語", + "nb_NO": "minnan", + "nl": "Minnanyu", + "pl": "język minnański", + "pt": "Min Nan", + "pt_BR": "Min nan", + "ru": "южноминьский язык", + "sv": "minnan", + "ca": "min nan" + } + }, + { + "if": "language:pl=yes", + "ifnot": "language:pl=", + "searchTerms": { + "*": [ + "pl" + ] + }, + "then": { + "de": "Polnisch", + "en": "Polish", + "pl": "język polski", + "es": "polaco", + "fr": "polonais", + "ca": "polonès", + "da": "polsk", + "eo": "pola lingvo", + "fi": "puola", + "gl": "lingua polaca", + "hu": "lengyel", + "id": "Polandia", + "it": "polacco", + "ja": "ポーランド語", + "zh_Hans": "波兰语", + "zh_Hant": "波蘭語", + "nb_NO": "polsk", + "nl": "Pools", + "pt": "polaco", + "pt_BR": "língua polonesa", + "ru": "польский язык", + "sl": "poljščina", + "sv": "polska" + }, + "priorityIf": "_country~((^|;)pl($|;))" + }, + { + "if": "language:cpx=yes", + "ifnot": "language:cpx=", + "searchTerms": { + "*": [ + "cpx" + ] + }, + "then": { + "nb_NO": "Puxian", + "de": "Pu-Xian", + "en": "Pu-Xian Min", + "fr": "puxian", + "ja": "莆仙語", + "pl": "Język puxian", + "pt": "Língua putian", + "ru": "Пусяньский язык" + } + }, + { + "if": "language:khg=yes", + "ifnot": "language:khg=", + "searchTerms": { + "*": [ + "khg" + ] + }, + "then": { + "en": "Khams Tibetan", + "fr": "tibétain khamké", + "ja": "カム・チベット語", + "pl": "Język kham", + "ru": "камский тибетский язык", + "pt": "Tibetano khams", + "hu": "khami tibeti" + } + }, + { + "if": "language:fkv=yes", + "ifnot": "language:fkv=", + "searchTerms": { + "*": [ + "fkv" + ] + }, + "then": { + "en": "Kven", + "ca": "kven", + "da": "kvensk", + "de": "Kvenisch", + "eo": "kvena lingvo", + "es": "kven", + "fi": "kveeni", + "fr": "kvène", + "gl": "Lingua kven", + "id": "Bahasa Kven", + "it": "kven", + "ja": "クヴェン語", + "nb_NO": "kvensk", + "nl": "Kveens", + "pl": "Język kweński", + "pt": "kven", + "pt_BR": "língua kven", + "ru": "квенский язык", + "sv": "kvänska", + "zh_Hant": "克文語" + } + }, + { + "if": "language:fuf=yes", + "ifnot": "language:fuf=", + "searchTerms": { + "*": [ + "fuf" + ] + }, + "then": { + "en": "Pular", + "fr": "pular", + "ja": "プラー語" + } + }, + { + "if": "language:jax=yes", + "ifnot": "language:jax=", + "searchTerms": { + "*": [ + "jax" + ] + }, + "then": { + "ru": "Джамби", + "en": "Jambi Malay", + "fr": "malais jambi", + "id": "Bahasa Melayu Jambi", + "ja": "ジャンビ・マレー語", + "pl": "Język jambi" + } + }, + { + "if": "language:dtp=yes", + "ifnot": "language:dtp=", + "searchTerms": { + "*": [ + "dtp" + ] + }, + "then": { + "fr": "dusun", + "de": "Dusun", + "en": "Kadazandusun", + "id": "Bahasa Kadazandusun", + "ja": "中央ドゥスン語", + "nl": "Dusun", + "pl": "język dusun", + "pt": "Língua dusun", + "ru": "дусунский язык" + } + }, + { + "if": "language:zgh=yes", + "ifnot": "language:zgh=", + "searchTerms": { + "*": [ + "zgh" + ] + }, + "then": { + "ca": "amazic estàndard marroquí", + "de": "marokkanisches Tamazight", + "en": "Standard Moroccan Berber", + "eo": "norma maroka tamaziĥta lingvo", + "es": "Amazig estándar marroquí", + "fi": "Vakioitu tamazight", + "fr": "amazighe standard marocain", + "ja": "標準モロッコ・タマジクト語", + "nl": "Standaardtamazight", + "zh_Hans": "标准摩洛哥柏柏尔语", + "zh_Hant": "標準摩洛哥柏柏語", + "ru": "Стандартный марокканский берберский язык" + } + }, + { + "if": "language:bgn=yes", + "ifnot": "language:bgn=", + "searchTerms": { + "*": [ + "bgn" + ] + }, + "then": { + "en": "Western Balochi", + "fr": "baloutche de l'Ouest", + "it": "beluci occidentale", + "ja": "西バローチー語", + "nl": "West-Beloetsji", + "ru": "западный белуджский язык" + } + }, + { + "if": "language:yav=yes", + "ifnot": "language:yav=", + "searchTerms": { + "*": [ + "yav" + ] + }, + "then": { + "en": "Yangben", + "fi": "Yangben", + "fr": "yangben", + "ja": "ヤンベン語", + "nl": "Yangben" + } + }, + { + "if": "language:sv=yes", + "ifnot": "language:sv=", + "searchTerms": { + "*": [ + "sv" + ] + }, + "then": { + "pt": "língua sueca", + "pt_BR": "língua sueca", + "ru": "шведский язык", + "sl": "švedščina", + "zh_Hant": "瑞典語", + "en": "Swedish", + "ca": "suec", + "es": "sueco", + "fr": "suédois", + "ja": "スウェーデン語", + "da": "svensk", + "sv": "svenska", + "hu": "svéd", + "id": "Swedia", + "it": "svedese", + "de": "Schwedisch", + "eo": "sveda lingvo", + "fi": "ruotsi", + "gl": "lingua sueca", + "nb_NO": "svensk", + "nl": "Zweeds", + "pl": "język szwedzki" + }, + "priorityIf": "_country~((^|;)fi($|;))|((^|;)se($|;))" + }, + { + "if": "language:azb=yes", + "ifnot": "language:azb=", + "searchTerms": { + "*": [ + "azb" + ] + }, + "then": { + "ca": "Àzeri del sud", + "de": "Südaserbaidschanisch", + "en": "South Azerbaijani", + "eo": "sud-azerbajĝana lingvo", + "fr": "azéri du Sud", + "ja": "南アゼルバイジャン語", + "nl": "Zuid-Azerbeidzjaans", + "ru": "южно-азербайджанский язык", + "sv": "sydazerbajdzjanska", + "zh_Hans": "南阿塞拜疆语", + "zh_Hant": "南阿塞拜疆語" + } + }, + { + "if": "language:xnb=yes", + "ifnot": "language:xnb=", + "searchTerms": { + "*": [ + "xnb" + ] + }, + "then": { + "ca": "kanakanabu", + "en": "Kanakanavu", + "fi": "Kanakanabu", + "fr": "kanakanabu", + "it": "kanakanabu", + "ja": "カナカナブ語", + "nl": "Kanakanabu", + "pl": "język kanakanabu", + "pt": "Língua kanakanavu", + "ru": "Канаканабский язык", + "zh_Hans": "卡那卡那富语", + "zh_Hant": "卡那卡那富語", + "id": "Bahasa Kanakanavu" + } + }, + { + "if": "language:fa-af=yes", + "ifnot": "language:fa-af=", + "searchTerms": { + "*": [ + "fa-af" + ] + }, + "then": { + "en": "Dari", + "fr": "dari", + "it": "dari", + "ja": "ダリー語", + "ru": "дари", + "nl": "Dari", + "de": "Dari", + "pl": "Dari", + "ca": "darí", + "da": "dari", + "eo": "daria lingvo", + "es": "dari", + "fi": "darin kieli", + "gl": "Lingua dari", + "hu": "dari", + "id": "Bahasa Persia Afgani", + "nb_NO": "dari", + "pt": "Língua dari", + "pt_BR": "Língua dari", + "sv": "dari", + "zh_Hans": "达利语", + "zh_Hant": "達利語" + } + }, + { + "if": "language:qu=yes", + "ifnot": "language:qu=", + "searchTerms": { + "*": [ + "qu" + ] + }, + "then": { + "ru": "кечуа", + "da": "quechua", + "eo": "keĉua lingvaro", + "es": "lenguas quechuas", + "fi": "ketšua", + "fr": "quechua", + "gl": "linguas quechuas", + "hu": "kecsua", + "id": "Bahasa Quechua", + "ja": "ケチュア語", + "nb_NO": "quechua", + "pl": "język keczua", + "pt": "quíchua", + "pt_BR": "quíchua", + "sl": "kečuanščina", + "sv": "quechua", + "ca": "quítxua", + "de": "Quechua", + "en": "Quechua", + "nl": "Quechua", + "it": "quechua", + "zh_Hans": "克丘亚语", + "zh_Hant": "奇楚瓦語" + }, + "priorityIf": "_country~((^|;)bo($|;))|((^|;)pe($|;))" + }, + { + "if": "language:sei=yes", + "ifnot": "language:sei=", + "searchTerms": { + "*": [ + "sei" + ] + }, + "then": { + "en": "Seri", + "nl": "Seri", + "de": "Seri", + "ca": "seri", + "es": "seri", + "fr": "seri", + "id": "Bahasa Seri", + "it": "seri", + "ja": "セリ語", + "pl": "Język seri", + "pt": "Língua seri", + "ru": "Сери", + "sv": "seri", + "zh_Hant": "塞裏語" + } + }, + { + "if": "language:sq=yes", + "ifnot": "language:sq=", + "searchTerms": { + "*": [ + "sq" + ] + }, + "then": { + "en": "Albanian", + "ca": "albanès", + "hu": "albán", + "it": "albanese", + "nl": "Albanees", + "es": "albanés", + "fr": "albanais", + "da": "albansk", + "de": "Albanisch", + "eo": "albana lingvo", + "fi": "albania", + "gl": "Lingua albanesa", + "id": "Bahasa Albania", + "ja": "アルバニア語", + "nb_NO": "albansk", + "pl": "język albański", + "pt": "língua albanesa", + "pt_BR": "língua albanesa", + "ru": "албанский язык", + "sl": "albanščina", + "sv": "albanska", + "zh_Hans": "阿尔巴尼亚语", + "zh_Hant": "阿爾巴尼亞語" + }, + "priorityIf": "_country~((^|;)al($|;))|((^|;)mk($|;))" + }, + { + "if": "language:uk=yes", + "ifnot": "language:uk=", + "searchTerms": { + "*": [ + "uk" + ] + }, + "then": { + "sl": "Ukrajinščina", + "sv": "ukrainska", + "zh_Hant": "烏克蘭語", + "zh_Hans": "乌克兰语", + "da": "ukrainsk", + "de": "Ukrainisch", + "eo": "ukraina lingvo", + "es": "ucraniano", + "fi": "ukraina", + "fr": "ukrainien", + "gl": "lingua ucraína", + "id": "Bahasa Ukraina", + "ja": "ウクライナ語", + "nb_NO": "ukrainsk", + "nl": "Oekraïens", + "pl": "język ukraiński", + "pt": "ucraniano", + "pt_BR": "língua ucraniana", + "ru": "украинский язык", + "en": "Ukrainian", + "ca": "ucraïnès", + "hu": "ukrán", + "it": "ucraino" + }, + "priorityIf": "_country~((^|;)ua($|;))" + }, + { + "if": "language:uz=yes", + "ifnot": "language:uz=", + "searchTerms": { + "*": [ + "uz" + ] + }, + "then": { + "fr": "ouzbek", + "en": "Uzbek", + "hu": "üzbég", + "ca": "uzbek", + "da": "usbekisk", + "de": "Usbekisch", + "eo": "uzbeka lingvo", + "es": "uzbeko", + "fi": "uzbekki", + "gl": "Lingua usbeka", + "id": "Bahasa Uzbek", + "it": "uzbeco", + "ja": "ウズベク語", + "nb_NO": "usbekisk", + "nl": "Oezbeeks", + "pl": "język uzbecki", + "pt": "Língua uzbeque", + "pt_BR": "língua uzbeque", + "ru": "узбекский язык", + "sv": "uzbekiska", + "zh_Hans": "乌孜别克语", + "zh_Hant": "烏孜別克語" + }, + "priorityIf": "_country~((^|;)af($|;))|((^|;)uz($|;))" + }, + { + "if": "language:ka=yes", + "ifnot": "language:ka=", + "searchTerms": { + "*": [ + "ka" + ] + }, + "then": { + "da": "georgisk", + "eo": "kartvela lingvo", + "es": "georgiano", + "fi": "georgia", + "gl": "lingua xeorxiana", + "id": "Bahasa Georgia", + "ja": "ジョージア語", + "nb_NO": "georgisk", + "nl": "Georgisch", + "pl": "język gruziński", + "pt": "língua georgiana", + "pt_BR": "língua georgiana", + "ru": "грузинский язык", + "sl": "Gruzinščina", + "sv": "georgiska", + "zh_Hans": "格鲁吉亚语", + "zh_Hant": "喬治亞語", + "de": "Georgisch", + "en": "Georgian", + "fr": "géorgien", + "ca": "georgià", + "hu": "grúz", + "it": "georgiano" + }, + "priorityIf": "_country~((^|;)ge($|;))" + }, + { + "if": "language:pt=yes", + "ifnot": "language:pt=", + "searchTerms": { + "*": [ + "pt" + ] + }, + "then": { + "eo": "portugala lingvo", + "es": "portugués", + "fi": "portugali", + "fr": "portugais", + "gl": "lingua portuguesa", + "ja": "ポルトガル語", + "nb_NO": "portugisisk", + "pl": "język portugalski", + "pt_BR": "português", + "ru": "португальский язык", + "sl": "portugalščina", + "sv": "portugisiska", + "zh_Hans": "葡萄牙语", + "zh_Hant": "葡萄牙語", + "en": "Portuguese", + "hu": "portugál", + "id": "Portugis", + "it": "portoghese", + "nl": "Portugees", + "pt": "português", + "ca": "portuguès", + "da": "portugisisk", + "de": "Portugiesisch" + }, + "priorityIf": "_country~((^|;)ao($|;))|((^|;)br($|;))|((^|;)cv($|;))|((^|;)gq($|;))|((^|;)gw($|;))|((^|;)mz($|;))|((^|;)pt($|;))|((^|;)st($|;))|((^|;)tl($|;))" + }, + { + "if": "language:hy=yes", + "ifnot": "language:hy=", + "searchTerms": { + "*": [ + "hy" + ] + }, + "then": { + "de": "Armenisch", + "en": "Armenian", + "es": "armenio", + "fr": "arménien", + "ca": "armeni", + "da": "armensk", + "eo": "armena lingvo", + "fi": "armenia", + "gl": "lingua armenia", + "hu": "örmény", + "id": "Bahasa Armenia", + "it": "armeno", + "ja": "アルメニア語", + "nb_NO": "armensk", + "nl": "Armeens", + "pl": "język ormiański", + "pt": "língua arménia", + "pt_BR": "língua armênia", + "ru": "армянский язык", + "sl": "armenščina", + "sv": "armeniska", + "zh_Hant": "亞美尼亞語" + }, + "priorityIf": "_country~((^|;)am($|;))" + }, + { + "if": "language:nl=yes", + "ifnot": "language:nl=", + "searchTerms": { + "*": [ + "nl" + ] + }, + "then": { + "fi": "hollanti", + "gl": "lingua neerlandesa", + "ja": "オランダ語", + "nb_NO": "nederlandsk", + "pl": "język niderlandzki", + "pt": "neerlandês", + "pt_BR": "neerlandês", + "ru": "нидерландский язык", + "sl": "Nizozemščina", + "sv": "nederländska", + "zh_Hans": "荷兰语", + "zh_Hant": "荷蘭語", + "en": "Dutch", + "de": "Niederländisch", + "nl": "Nederlands", + "ca": "neerlandès", + "es": "neerlandés", + "fr": "néerlandais", + "hu": "holland", + "id": "Belanda", + "it": "olandese", + "da": "nederlandsk", + "eo": "nederlanda lingvo" + }, + "priorityIf": "_country~((^|;)be($|;))|((^|;)nl($|;))|((^|;)sr($|;))" + }, + { + "if": "language:rm=yes", + "ifnot": "language:rm=", + "searchTerms": { + "*": [ + "rm" + ] + }, + "then": { + "da": "Rætoromansk", + "de": "Bündnerromanisch", + "eo": "romanĉa lingvo", + "es": "romanche", + "fi": "retoromaani", + "fr": "romanche", + "gl": "lingua romanche", + "hu": "romans", + "id": "Bahasa Romansh", + "it": "romancio", + "ja": "ロマンシュ語", + "nb_NO": "retoromansk", + "nl": "Reto-Romaans", + "pl": "Język romansz", + "pt": "romanche", + "pt_BR": "língua romanche", + "ru": "романшский язык", + "sl": "Retoromanščina", + "sv": "rätoromanska", + "en": "Romansh", + "ca": "romanx" + }, + "priorityIf": "_country~((^|;)ch($|;))" + }, + { + "if": "language:aln=yes", + "ifnot": "language:aln=", + "searchTerms": { + "*": [ + "aln" + ] + }, + "then": { + "en": "Gheg Albanian", + "ca": "gheg", + "da": "gegisk", + "de": "Gegisch", + "eo": "geg-albana lingvo", + "es": "Albanés guego", + "fr": "guègue", + "it": "lingua albanese ghega", + "ja": "ゲグ方言", + "nb_NO": "Gegisk", + "nl": "Gegisch", + "pl": "Dialekt gegijski języka albańskiego", + "ru": "гегский диалект албанского языка", + "sv": "gegiska", + "zh_Hans": "盖格方言", + "zh_Hant": "蓋格方言", + "hu": "geg albán" + } + }, + { + "if": "language:mr=yes", + "ifnot": "language:mr=", + "searchTerms": { + "*": [ + "mr" + ] + }, + "then": { + "fr": "marathi", + "ca": "marathi", + "da": "marathi", + "de": "Marathi", + "en": "Marathi", + "eo": "marata lingvo", + "es": "maratí", + "fi": "marathi", + "gl": "Lingua marathi", + "hu": "maráthi", + "id": "Bahasa Marathi", + "it": "marathi", + "ja": "マラーティー語", + "nb_NO": "marathi", + "nl": "Marathi", + "pl": "język marathi", + "pt": "marata", + "pt_BR": "Língua marata", + "ru": "маратхи", + "sv": "marathi", + "zh_Hans": "马拉地语", + "zh_Hant": "馬拉提語" + } + }, + { + "if": "language:mg=yes", + "ifnot": "language:mg=", + "searchTerms": { + "*": [ + "mg" + ] + }, + "then": { + "ca": "malgaix", + "da": "Malagassisk", + "de": "Malagasy", + "en": "Malagasy", + "eo": "malagasa lingvo", + "es": "malgache", + "fi": "malagassi", + "fr": "malgache", + "gl": "Lingua malgaxe", + "hu": "malgas", + "id": "Bahasa Malagasi", + "it": "malgascio", + "ja": "マダガスカル語", + "nb_NO": "gassisk", + "nl": "Malagasi", + "pl": "język malgaski", + "pt": "Língua malgaxe", + "pt_BR": "Língua malgaxe", + "ru": "малагасийский язык", + "sv": "malagassiska" + }, + "priorityIf": "_country~((^|;)mg($|;))" + }, + { + "if": "language:sh=yes", + "ifnot": "language:sh=", + "searchTerms": { + "*": [ + "sh" + ] + }, + "then": { + "nb_NO": "serbokroatisk", + "nl": "Servo-Kroatisch", + "pl": "język serbsko-chorwacki", + "pt": "Língua servo-croata", + "pt_BR": "Língua servo-croata", + "ru": "сербохорватский язык", + "sl": "srbohrvaščina", + "sv": "serbokroatiska", + "zh_Hans": "塞尔维亚-克罗地亚语", + "zh_Hant": "塞爾維亞-克羅地亞語", + "ca": "serbocroat", + "da": "serbokroatisk", + "de": "Serbokroatisch", + "en": "Serbo-Croatian", + "eo": "serbokroata lingvo", + "es": "serbocroata", + "fi": "serbokroaatti", + "fr": "serbo-croate", + "gl": "Lingua serbocroata", + "hu": "szerbhorvát", + "id": "Bahasa Serbo-Kroasia", + "it": "serbo-croato", + "ja": "セルビア・クロアチア語" + } + }, + { + "if": "language:zu=yes", + "ifnot": "language:zu=", + "searchTerms": { + "*": [ + "zu" + ] + }, + "then": { + "en": "Zulu", + "nb_NO": "zulu", + "nl": "Zoeloe", + "ca": "zulu", + "da": "zulu", + "de": "isiZulu", + "eo": "zulua lingvo", + "es": "zulú", + "fi": "zulu", + "fr": "zoulou", + "gl": "Lingua zulú", + "hu": "zulu", + "id": "Bahasa Zulu", + "it": "zulu", + "ja": "ズールー語", + "pl": "język zulu", + "pt": "língua zulu", + "pt_BR": "língua zulu", + "ru": "зулу", + "sv": "zulu", + "zh_Hant": "祖魯語" + }, + "priorityIf": "_country~((^|;)za($|;))" + }, + { + "if": "language:is=yes", + "ifnot": "language:is=", + "searchTerms": { + "*": [ + "is" + ] + }, + "then": { + "es": "islandés", + "ca": "islandès", + "da": "islandsk", + "de": "Isländisch", + "en": "Icelandic", + "eo": "islanda lingvo", + "fi": "islanti", + "fr": "islandais", + "gl": "lingua islandesa", + "hu": "izlandi", + "id": "Bahasa Islan", + "it": "islandese", + "ja": "アイスランド語", + "nb_NO": "islandsk", + "nl": "IJslands", + "pl": "język islandzki", + "pt": "islandês", + "pt_BR": "língua islandesa", + "ru": "исландский язык", + "sl": "Islandščina", + "sv": "isländska", + "zh_Hans": "冰岛语", + "zh_Hant": "冰島語" + }, + "priorityIf": "_country~((^|;)is($|;))" + }, + { + "if": "language:lb=yes", + "ifnot": "language:lb=", + "searchTerms": { + "*": [ + "lb" + ] + }, + "then": { + "de": "Luxemburgisch", + "fr": "luxembourgeois", + "en": "Luxembourgish", + "ca": "luxemburguès", + "da": "Letzeburgsk", + "eo": "luksemburga lingvo", + "es": "luxemburgués", + "fi": "luxemburg", + "gl": "Lingua luxemburguesa", + "hu": "luxemburgi", + "id": "Bahasa Luksemburg", + "it": "lussemburghese", + "ja": "ルクセンブルク語", + "nb_NO": "luxembourgsk", + "nl": "Luxemburgs", + "pl": "język luksemburski", + "pt": "língua luxemburguesa", + "pt_BR": "língua luxemburguesa", + "ru": "люксембургский язык", + "sl": "Luksemburščina", + "sv": "luxemburgiska" + }, + "priorityIf": "_country~((^|;)lu($|;))" + }, + { + "if": "language:tk=yes", + "ifnot": "language:tk=", + "searchTerms": { + "*": [ + "tk" + ] + }, + "then": { + "ca": "turcman", + "da": "turkmensk", + "de": "Turkmenisch", + "en": "Turkmen", + "eo": "turkmena lingvo", + "es": "turcomano", + "fi": "turkmeeni", + "fr": "turkmène", + "gl": "Lingua turcomá", + "hu": "türkmén", + "id": "Bahasa Turkmen", + "it": "turkmeno", + "ja": "トルクメン語", + "nb_NO": "turkmensk", + "nl": "Turkmeens", + "pl": "język turkmeński", + "pt": "Língua turcomena", + "pt_BR": "Língua turcomena", + "ru": "туркменский язык", + "sl": "Turkmenščina", + "sv": "turkmeniska" + }, + "priorityIf": "_country~((^|;)af($|;))|((^|;)tm($|;))" + }, + { + "if": "language:th=yes", + "ifnot": "language:th=", + "searchTerms": { + "*": [ + "th" + ] + }, + "then": { + "en": "Thai", + "hu": "thai", + "it": "thailandese", + "id": "Thai", + "nl": "Thai", + "de": "Thailändisch", + "fr": "thaï", + "ca": "tailandès", + "da": "thai", + "eo": "taja lingvo", + "es": "tailandés", + "fi": "thain kieli", + "gl": "lingua tailandesa", + "ja": "タイ語", + "nb_NO": "thai", + "pl": "język tajski", + "pt": "tailandês", + "pt_BR": "tailandês", + "ru": "тайский язык", + "sl": "tajščina", + "sv": "thai", + "zh_Hant": "泰語" + }, + "priorityIf": "_country~((^|;)th($|;))" + }, + { + "if": "language:ja=yes", + "ifnot": "language:ja=", + "searchTerms": { + "*": [ + "ja" + ] + }, + "then": { + "zh_Hans": "日语", + "zh_Hant": "日語", + "id": "bahasa Jepang", + "nb_NO": "japansk", + "nl": "Japans", + "pl": "język japoński", + "pt": "japonês", + "pt_BR": "língua japonesa", + "ru": "японский язык", + "sl": "Japonščina", + "sv": "japanska", + "en": "Japanese", + "ca": "japonès", + "da": "japansk", + "de": "Japanisch", + "eo": "japana lingvo", + "es": "japonés", + "fi": "japani", + "fr": "japonais", + "gl": "lingua xaponesa", + "hu": "japán", + "it": "giapponese", + "ja": "日本語" + }, + "priorityIf": "_country~((^|;)jp($|;))|((^|;)pw($|;))" + }, + { + "if": "language:lv=yes", + "ifnot": "language:lv=", + "searchTerms": { + "*": [ + "lv" + ] + }, + "then": { + "da": "lettisk", + "de": "Lettisch", + "eo": "latva lingvo", + "fi": "latvia", + "gl": "lingua letona", + "hu": "lett", + "id": "Bahasa Latvi", + "it": "lettone", + "ja": "ラトビア語", + "nb_NO": "latvisk", + "nl": "Lets", + "pl": "język łotewski", + "pt": "língua letã", + "pt_BR": "língua letã", + "ca": "letó", + "en": "Latvian", + "es": "letón", + "fr": "letton", + "ru": "латышский язык", + "sl": "Latvijščina", + "sv": "lettiska", + "zh_Hant": "拉脫維亞語" + }, + "priorityIf": "_country~((^|;)lv($|;))" + }, + { + "if": "language:rmy=yes", + "ifnot": "language:rmy=", + "searchTerms": { + "*": [ + "rmy" + ] + }, + "then": { + "ja": "ロマ語", + "en": "Romani", + "nl": "Romani", + "ca": "romaní", + "da": "Romani", + "pt": "Romani", + "de": "Romani", + "pt_BR": "Romani", + "eo": "cigana lingvo", + "es": "romaní", + "fi": "romanikieli", + "fr": "romani", + "gl": "lingua romaní", + "hu": "cigány", + "id": "Bahasa Romani", + "it": "romaní", + "nb_NO": "romanes", + "pl": "język romski", + "ru": "цыганский язык", + "sl": "romščina", + "sv": "romani" + } + }, + { + "if": "language:km=yes", + "ifnot": "language:km=", + "searchTerms": { + "*": [ + "km" + ] + }, + "then": { + "nb_NO": "khmer", + "pl": "język khmerski", + "pt": "Língua khmer", + "pt_BR": "Língua khmer", + "ru": "кхмерский язык", + "sv": "khmer", + "de": "Khmer", + "en": "Khmer", + "nl": "Khmer", + "it": "khmer", + "fr": "khmer", + "ca": "khmer", + "da": "Khmer", + "eo": "kmera lingvo", + "es": "camboyano", + "fi": "khmer", + "gl": "Lingua khmer", + "hu": "khmer", + "id": "Bahasa Khmer", + "ja": "クメール語" + }, + "priorityIf": "_country~((^|;)kh($|;))" + }, + { + "if": "language:lo=yes", + "ifnot": "language:lo=", + "searchTerms": { + "*": [ + "lo" + ] + }, + "then": { + "en": "Lao", + "de": "Laotisch", + "da": "Lao", + "ca": "laosià", + "eo": "laosa lingvo", + "es": "lao", + "fi": "lao", + "fr": "lao", + "gl": "Lingua laosiana", + "hu": "lao", + "id": "Bahasa Laos", + "it": "lao", + "ja": "ラーオ語", + "nb_NO": "laotisk", + "nl": "Laotiaans", + "pl": "Język laotański", + "pt": "Língua laociana", + "pt_BR": "Língua laociana", + "ru": "лаосский язык", + "sv": "lao", + "zh_Hans": "老挝语", + "zh_Hant": "老撾語" + }, + "priorityIf": "_country~((^|;)la($|;))" + }, + { + "if": "language:so=yes", + "ifnot": "language:so=", + "searchTerms": { + "*": [ + "so" + ] + }, + "then": { + "zh_Hans": "索马里语", + "zh_Hant": "索馬利亞語", + "ca": "somali", + "da": "somali", + "de": "Somali", + "en": "Somali", + "eo": "somala lingvo", + "es": "somalí", + "fi": "somalin kieli", + "fr": "somali", + "gl": "Lingua somalí", + "hu": "szomáli", + "id": "Bahasa Somali", + "it": "somalo", + "ja": "ソマリ語", + "nb_NO": "somali", + "nl": "Somalisch", + "pl": "język somalijski", + "pt": "Língua somali", + "pt_BR": "Língua somali", + "ru": "сомалийский язык", + "sv": "somaliska" + }, + "priorityIf": "_country~((^|;)so($|;))" + }, + { + "if": "language:sma=yes", + "ifnot": "language:sma=", + "searchTerms": { + "*": [ + "sma" + ] + }, + "then": { + "ca": "sami meridional", + "da": "Sydsamisk", + "de": "Südsamisch", + "en": "Southern Sami", + "eo": "sud-samea lingvo", + "es": "sami meridional", + "fi": "eteläsaame", + "fr": "same du Sud", + "gl": "Lingua saami meridional", + "hu": "déli számi", + "id": "Bahasa Sami Selatan", + "it": "sami meridionale", + "ja": "南部サーミ語", + "nb_NO": "sørsamisk", + "nl": "Zuid-Samisch", + "pl": "język południowolapoński", + "pt": "língua sami meridional", + "pt_BR": "Língua sami meridional", + "ru": "южносаамский язык", + "sv": "sydsamiska", + "zh_Hans": "南萨米语", + "zh_Hant": "南薩米語" + } + }, + { + "if": "language:moe=yes", + "ifnot": "language:moe=", + "searchTerms": { + "*": [ + "moe" + ] + }, + "then": { + "de": "Innu-Sprache", + "en": "Innu-aimun", + "eo": "inua lingvo", + "es": "innu", + "fr": "innu-aimun", + "id": "Bahasa Innu", + "it": "innu-aimun", + "nl": "Innu language", + "ru": "Монтанье-наскапи" + } + }, + { + "if": "language:sr=yes", + "ifnot": "language:sr=", + "searchTerms": { + "*": [ + "sr" + ] + }, + "then": { + "da": "serbisk", + "eo": "serba lingvo", + "fi": "serbia", + "gl": "Lingua serbia", + "id": "Bahasa Serbia", + "ja": "セルビア語", + "nb_NO": "serbisk", + "nl": "Servisch", + "pl": "język serbski", + "pt": "língua sérvia", + "pt_BR": "língua sérvia", + "ru": "сербский язык", + "sl": "Srbščina", + "sv": "serbiska", + "de": "Serbisch", + "en": "Serbian", + "ca": "serbi", + "es": "serbio", + "fr": "serbe", + "hu": "szerb", + "it": "serbo", + "zh_Hant": "塞爾維亞語" + }, + "priorityIf": "_country~((^|;)ba($|;))|((^|;)rs($|;))" + }, + { + "if": "language:lt=yes", + "ifnot": "language:lt=", + "searchTerms": { + "*": [ + "lt" + ] + }, + "then": { + "hu": "litván", + "id": "Bahasa Lituavi", + "it": "lituano", + "ja": "リトアニア語", + "nb_NO": "litauisk", + "nl": "Litouws", + "pl": "język litewski", + "pt": "língua lituana", + "pt_BR": "língua lituana", + "ru": "литовский язык", + "sl": "Litovščina", + "sv": "litauiska", + "zh_Hans": "立陶宛语", + "zh_Hant": "立陶宛語", + "ca": "lituà", + "da": "litauisk", + "de": "Litauisch", + "en": "Lithuanian", + "eo": "litova lingvo", + "es": "lituano", + "fi": "liettua", + "fr": "lituanien", + "gl": "lingua lituana" + }, + "priorityIf": "_country~((^|;)lt($|;))" + }, + { + "if": "language:hu=yes", + "ifnot": "language:hu=", + "searchTerms": { + "*": [ + "hu" + ] + }, + "then": { + "nb_NO": "ungarsk", + "nl": "Hongaars", + "pl": "język węgierski", + "pt": "húngaro", + "pt_BR": "língua húngara", + "ru": "венгерский язык", + "sl": "madžarščina", + "sv": "ungerska", + "zh_Hant": "匈牙利語", + "en": "Hungarian", + "fr": "hongrois", + "ca": "hongarès", + "da": "ungarsk", + "de": "Ungarisch", + "eo": "hungara lingvo", + "es": "húngaro", + "fi": "unkari", + "gl": "lingua húngara", + "hu": "magyar", + "id": "Hongaria", + "it": "ungherese", + "ja": "ハンガリー語" + }, + "priorityIf": "_country~((^|;)hu($|;))" + }, + { + "if": "language:my=yes", + "ifnot": "language:my=", + "searchTerms": { + "*": [ + "my" + ] + }, + "then": { + "gl": "birmano", + "hu": "burmai", + "id": "Bahasa Myanmar", + "it": "birmano", + "ja": "ビルマ語", + "nb_NO": "burmesisk", + "nl": "Birmaans", + "pl": "język birmański", + "pt": "birmanês", + "pt_BR": "Língua birmanesa", + "ru": "бирманский язык", + "sv": "burmesiska", + "de": "Birmanisch", + "en": "Burmese", + "fr": "birman", + "ca": "birmà", + "da": "burmesisk", + "eo": "birma lingvo", + "es": "birmano", + "fi": "burma" + }, + "priorityIf": "_country~((^|;)mm($|;))" + }, + { + "if": "language:ms=yes", + "ifnot": "language:ms=", + "searchTerms": { + "*": [ + "ms" + ] + }, + "then": { + "en": "Malay", + "ca": "malai", + "da": "Malajisk", + "de": "Malaiisch", + "eo": "malaja lingvo", + "es": "malayo", + "fi": "malaji", + "fr": "malais", + "gl": "lingua malaia", + "hu": "maláj", + "id": "Bahasa Melayu", + "it": "malese", + "ja": "マレー語", + "nb_NO": "malayisk", + "nl": "Maleis", + "pl": "język malajski", + "pt": "malaio", + "pt_BR": "língua malaia", + "ru": "малайский язык", + "sv": "malajiska", + "zh_Hans": "马来语", + "zh_Hant": "馬來語" + }, + "priorityIf": "_country~((^|;)bn($|;))|((^|;)my($|;))|((^|;)sg($|;))" + }, + { + "if": "language:xh=yes", + "ifnot": "language:xh=", + "searchTerms": { + "*": [ + "xh" + ] + }, + "then": { + "es": "xhosa", + "it": "xhosa", + "nb_NO": "xhosa", + "ca": "xosa", + "da": "isiXhosa", + "de": "IsiXhosa", + "eo": "kosa lingvo", + "fi": "Xhosan kieli", + "gl": "Lingua xhosa", + "hu": "xhosza", + "id": "Bahasa Xhosa", + "ja": "コサ語", + "pl": "język xhosa", + "pt": "língua xhosa", + "pt_BR": "língua xhosa", + "sv": "xhosa", + "zh_Hant": "科薩語", + "en": "Xhosa", + "nl": "Xhosa", + "ru": "коса", + "fr": "xhosa" + }, + "priorityIf": "_country~((^|;)za($|;))|((^|;)zw($|;))" + }, + { + "if": "language:udm=yes", + "ifnot": "language:udm=", + "searchTerms": { + "*": [ + "udm" + ] + }, + "then": { + "en": "Udmurt", + "ca": "udmurt", + "da": "Udmurtisk", + "de": "Udmurtisch", + "eo": "udmurta lingvo", + "es": "udmurto", + "fi": "udmurtin kieli", + "fr": "oudmourte", + "gl": "Lingua udmurta", + "hu": "udmurt", + "id": "Bahasa Udmurt", + "it": "udmurto", + "ja": "ウドムルト語", + "nb_NO": "udmurtisk", + "nl": "Oedmoerts", + "pl": "język udmurcki", + "pt": "Língua udmurte", + "pt_BR": "Língua udmurte", + "ru": "удмуртский язык", + "sv": "udmurtiska" + } + }, + { + "if": "language:rue=yes", + "ifnot": "language:rue=", + "searchTerms": { + "*": [ + "rue" + ] + }, + "then": { + "da": "Rusinsk", + "de": "Russinisch", + "eo": "rusina lingvo", + "es": "rusino", + "fi": "ruteeni", + "fr": "rusyn", + "hu": "ruszin", + "id": "Bahasa Rusyn", + "it": "ruteno", + "ja": "ルシン語", + "nb_NO": "rusinsk", + "pl": "Język rusiński", + "pt": "Língua rusyn", + "pt_BR": "Língua rusyn", + "sl": "Rusinščina", + "sv": "rusinska", + "ca": "rutè modern", + "en": "Rusyn", + "nl": "Roetheens", + "ru": "русинский язык", + "gl": "Lingua rutena" + } + }, + { + "if": "language:stq=yes", + "ifnot": "language:stq=", + "searchTerms": { + "*": [ + "stq" + ] + }, + "then": { + "en": "Saterland Frisian", + "ca": "frisó oriental", + "da": "Saterfrisisk", + "de": "Saterfriesisch", + "eo": "saterfrisa lingvo", + "es": "frisón del Saterland", + "fi": "itäfriisi", + "fr": "frison saterlandais", + "gl": "Lingua frisoa oriental", + "it": "lingua frisone del Saterland", + "ja": "東フリジア語", + "nb_NO": "saterfrisisk", + "nl": "Saterfries", + "pl": "Język fryzyjski saterlandzki", + "pt": "frisão oriental", + "ru": "Затерландский фризский язык", + "sv": "saterfrisiska", + "zh_Hans": "萨特弗里斯兰语", + "zh_Hant": "薩特菲士蘭語", + "id": "Bahasa Frisia Saterland" + } + }, + { + "if": "language:ky=yes", + "ifnot": "language:ky=", + "searchTerms": { + "*": [ + "ky" + ] + }, + "then": { + "da": "kirgisisk", + "eo": "kirgiza lingvo", + "es": "kirguís", + "fi": "kirgiisi", + "fr": "kirghize", + "gl": "kirguiz", + "hu": "kirgiz", + "id": "Bahasa Kirgiz", + "it": "kirghiso", + "ja": "キルギス語", + "nb_NO": "kirgisisk", + "nl": "Kirgizisch", + "pl": "język kirgiski", + "pt": "quirguiz", + "pt_BR": "Língua quirguiz", + "ru": "киргизский язык", + "sv": "kirgiziska", + "zh_Hans": "柯尔克孜语", + "zh_Hant": "吉爾吉斯語", + "de": "Kirgisisch", + "en": "Kyrgyz", + "ca": "kirguís" + }, + "priorityIf": "_country~((^|;)kg($|;))" + }, + { + "if": "language:mt=yes", + "ifnot": "language:mt=", + "searchTerms": { + "*": [ + "mt" + ] + }, + "then": { + "en": "Maltese", + "hu": "máltai", + "it": "maltese", + "pt": "Maltês", + "es": "maltés", + "fr": "maltais", + "ca": "maltès", + "da": "maltesisk", + "de": "Maltesisch", + "eo": "malta lingvo", + "fi": "malta", + "gl": "Lingua maltesa", + "id": "Bahasa Malta", + "ja": "マルタ語", + "nb_NO": "maltesisk", + "nl": "Maltees", + "pl": "język maltański", + "pt_BR": "língua maltesa", + "ru": "мальтийский язык", + "sl": "Malteščina", + "sv": "maltesiska" + }, + "priorityIf": "_country~((^|;)mt($|;))" + }, + { + "if": "language:mk=yes", + "ifnot": "language:mk=", + "searchTerms": { + "*": [ + "mk" + ] + }, + "then": { + "pl": "język macedoński", + "en": "Macedonian", + "es": "macedonio", + "fr": "macédonien", + "hu": "macedón", + "it": "macedone", + "de": "Mazedonisch", + "nl": "Macedonisch", + "ru": "македонский язык", + "ca": "macedònic", + "da": "makedonsk", + "eo": "makedona lingvo", + "fi": "makedonia", + "gl": "Lingua macedonia", + "id": "Bahasa Makedonia", + "ja": "マケドニア語", + "nb_NO": "makedonsk", + "pt": "língua macedônia", + "pt_BR": "Língua macedônia", + "sl": "makedonščina", + "sv": "makedonska", + "zh_Hans": "马其顿语", + "zh_Hant": "馬其頓語" + }, + "priorityIf": "_country~((^|;)mk($|;))" + }, + { + "if": "language:za=yes", + "ifnot": "language:za=", + "searchTerms": { + "*": [ + "za" + ] + }, + "then": { + "de": "Zhuang", + "en": "Zhuang", + "nl": "Zhuang", + "ca": "llengües zhuang", + "da": "zhuang", + "eo": "ĝuanga lingvo", + "es": "chuang", + "fi": "Zhuangin kieli", + "fr": "zhuang", + "gl": "Linguas zhuang", + "hu": "csuang", + "id": "Rumpun bahasa Zhuang", + "it": "zhuang", + "ja": "チワン語", + "nb_NO": "zhuang", + "pl": "język zhuang", + "pt": "Língua zhuang", + "ru": "чжуанский язык", + "sv": "zhuang", + "zh_Hant": "壯語" + } + }, + { + "if": "language:ug=yes", + "ifnot": "language:ug=", + "searchTerms": { + "*": [ + "ug" + ] + }, + "then": { + "ca": "uigur", + "en": "Uyghur", + "zh_Hant": "維吾爾語", + "hu": "ujgur", + "de": "Uigurisch", + "eo": "ujgura lingvo", + "es": "uigur", + "fi": "uiguuri", + "fr": "ouïghour", + "gl": "Lingua uigur", + "id": "Uighur", + "it": "uiguro", + "ja": "ウイグル語", + "nb_NO": "uigurisk", + "nl": "Oeigoers", + "pl": "język ujgurski", + "pt": "Língua uigur", + "pt_BR": "Língua uigur", + "ru": "уйгурский язык", + "sv": "uiguriska" + } + }, + { + "if": "language:ko=yes", + "ifnot": "language:ko=", + "searchTerms": { + "*": [ + "ko" + ] + }, + "then": { + "fi": "korea", + "gl": "lingua coreana", + "hu": "koreai", + "it": "coreano", + "nb_NO": "koreansk", + "nl": "Koreaans", + "pl": "język koreański", + "pt": "coreano", + "pt_BR": "coreano", + "ru": "корейский язык", + "sl": "Korejščina", + "sv": "koreanska", + "zh_Hans": "朝鲜语", + "zh_Hant": "韓語", + "en": "Korean", + "id": "Korea", + "ja": "朝鮮語", + "ca": "coreà", + "de": "Koreanisch", + "es": "coreano", + "fr": "coréen", + "da": "koreansk", + "eo": "korea lingvo" + }, + "priorityIf": "_country~((^|;)kp($|;))|((^|;)kr($|;))" + }, + { + "if": "language:si=yes", + "ifnot": "language:si=", + "searchTerms": { + "*": [ + "si" + ] + }, + "then": { + "zh_Hant": "僧伽羅語", + "en": "Sinhala", + "id": "Sinhala", + "ca": "singalès", + "it": "singalese", + "de": "Singhalesisch", + "da": "singalesisk", + "eo": "sinhala lingvo", + "es": "cingalés", + "fi": "Sinhali", + "fr": "cingalais", + "gl": "Lingua cingalesa", + "hu": "szingaléz", + "ja": "シンハラ語", + "nb_NO": "singalesisk", + "nl": "Singalees", + "pl": "język syngaleski", + "pt": "Língua cingalesa", + "pt_BR": "Língua cingalesa", + "ru": "сингальский язык", + "sl": "Singalščina", + "sv": "singalesiska" + }, + "priorityIf": "_country~((^|;)lk($|;))" + }, + { + "if": "language:kk=yes", + "ifnot": "language:kk=", + "searchTerms": { + "*": [ + "kk" + ] + }, + "then": { + "nb_NO": "kasakhisk", + "nl": "Kazachs", + "pl": "język kazachski", + "pt": "língua cazaque", + "pt_BR": "língua cazaque", + "ru": "казахский язык", + "sl": "kazaščina", + "sv": "kazakiska", + "zh_Hans": "哈萨克语", + "zh_Hant": "哈薩克語", + "hu": "kazah", + "ca": "kazakh", + "da": "kasakhisk", + "de": "Kasachisch", + "en": "Kazakh", + "eo": "kazaĥa lingvo", + "es": "kazajo", + "fi": "kazakki", + "fr": "kazakh", + "gl": "Lingua casaca", + "id": "Bahasa Kazak", + "it": "kazako", + "ja": "カザフ語" + }, + "priorityIf": "_country~((^|;)kz($|;))" + }, + { + "if": "language:na=yes", + "ifnot": "language:na=", + "searchTerms": { + "*": [ + "na" + ] + }, + "then": { + "ca": "nauruà", + "de": "Nauruisch", + "en": "Nauruan", + "eo": "naura lingvo", + "es": "nauruano", + "fi": "Naurun kieli", + "fr": "nauruan", + "gl": "Lingua nauruana", + "id": "Bahasa Nauru", + "it": "nauruano", + "ja": "ナウル語", + "nb_NO": "naurisk", + "nl": "Nauruaans", + "pl": "Język naurański", + "pt": "Língua nauruana", + "pt_BR": "Língua nauruana", + "ru": "науруанский язык", + "sv": "nauruanska", + "hu": "naurui" + }, + "priorityIf": "_country~((^|;)nr($|;))" + }, + { + "if": "language:nv=yes", + "ifnot": "language:nv=", + "searchTerms": { + "*": [ + "nv" + ] + }, + "then": { + "de": "Navajo", + "en": "Navajo", + "es": "navajo", + "nl": "Navajo", + "ca": "navajo", + "da": "navajo", + "eo": "navaha lingvo", + "fi": "navajo", + "fr": "navajo", + "gl": "Lingua navajo", + "hu": "navahó", + "id": "Bahasa Navajo", + "it": "lingua navajo", + "ja": "ナバホ語", + "nb_NO": "navajo", + "pl": "język nawaho", + "pt": "Língua navaja", + "pt_BR": "Língua navaja", + "ru": "навахо", + "sv": "navajo" + } + }, + { + "if": "language:fit=yes", + "ifnot": "language:fit=", + "searchTerms": { + "*": [ + "fit" + ] + }, + "then": { + "ca": "meänkieli", + "da": "Tornedalsfinsk", + "de": "Meänkieli", + "en": "Meänkieli", + "eo": "tornival-finna lingvo", + "es": "meänkieli", + "fi": "meänkieli", + "fr": "meänkieli", + "gl": "meänkieli", + "it": "lingua meänkieli", + "ja": "メアンキエリ", + "nb_NO": "tornedalsfinsk", + "nl": "Meänkieli", + "pl": "Meänkieli", + "pt": "Língua meänkieli", + "pt_BR": "Língua meänkieli", + "ru": "Меянкиели", + "sv": "meänkieli", + "zh_Hans": "梅安语", + "zh_Hant": "梅安語", + "hu": "meänkieli" + } + }, + { + "if": "language:xmf=yes", + "ifnot": "language:xmf=", + "searchTerms": { + "*": [ + "xmf" + ] + }, + "then": { + "en": "Mingrelian", + "ca": "mingrelià", + "de": "Mingrelisch", + "eo": "Mingrela kartvela lingvo", + "es": "megreliano", + "fi": "mingreli", + "fr": "mingrélien", + "gl": "Lingua mingreliana", + "id": "Bahasa Mingrelia", + "it": "mengrelio", + "ja": "メグレル語", + "nb_NO": "Mingrelsk", + "nl": "Mingreels", + "pl": "język megrelski", + "pt": "Língua mingreliana", + "pt_BR": "Língua mingreliana", + "ru": "мегрельский язык", + "sv": "megreliska", + "hu": "mingrél" + } + }, + { + "if": "language:aa=yes", + "ifnot": "language:aa=", + "searchTerms": { + "*": [ + "aa" + ] + }, + "then": { + "pt": "Língua afar", + "pt_BR": "língua afar", + "ru": "афарский язык", + "sv": "afar", + "es": "idioma afar", + "fi": "afarin kieli", + "de": "Afar", + "nl": "Afar", + "en": "Afar", + "ca": "llengua àfar", + "eo": "afara lingvo", + "fr": "afar", + "gl": "Lingua afar", + "hu": "afar", + "id": "Bahasa Afar", + "it": "afar", + "ja": "アファル語", + "nb_NO": "afar", + "pl": "Język afar" + } + }, + { + "if": "language:anp=yes", + "ifnot": "language:anp=", + "searchTerms": { + "*": [ + "anp" + ] + }, + "then": { + "de": "Angika", + "en": "Angika", + "es": "Idioma angika", + "fi": "Angika", + "fr": "angika", + "gl": "Lingua angika", + "it": "lingua angika", + "ja": "アンギカ語", + "nl": "Angika", + "pt": "Língua angika", + "ru": "Ангика", + "zh_Hans": "昂加语", + "zh_Hant": "昂加語" + } + }, + { + "if": "language:rup=yes", + "ifnot": "language:rup=", + "searchTerms": { + "*": [ + "rup" + ] + }, + "then": { + "en": "Aromanian", + "fr": "aroumain", + "ca": "aromanès", + "da": "Aromunsk", + "de": "Aromunisch", + "eo": "arumana lingvo", + "es": "arumano", + "fi": "aromania", + "gl": "Lingua arromanesa", + "hu": "aromán", + "id": "Bahasa Arumania", + "it": "arumeno", + "ja": "アルーマニア語", + "nb_NO": "arumensk", + "nl": "Aroemeens", + "pl": "Język arumuński", + "pt": "Língua arromena", + "sv": "arumänska", + "ru": "арумынский язык" + } + }, + { + "if": "language:vec=yes", + "ifnot": "language:vec=", + "searchTerms": { + "*": [ + "vec" + ] + }, + "then": { + "nb_NO": "venetiansk", + "nl": "Venetiaans", + "pl": "język wenecki", + "pt": "Língua vêneta", + "ru": "современный венетский язык", + "sl": "Beneščina", + "sv": "venetianska", + "hu": "velencei", + "ca": "vènet", + "de": "Venetisch", + "en": "Venetian", + "eo": "venecia lingvo", + "es": "véneto", + "fi": "venetsia", + "fr": "vénitien", + "gl": "Lingua véneta", + "id": "Bahasa Venesia", + "it": "veneto", + "ja": "ヴェネト語" + } + }, + { + "if": "language:vep=yes", + "ifnot": "language:vep=", + "searchTerms": { + "*": [ + "vep" + ] + }, + "then": { + "en": "Veps", + "ca": "vepse", + "da": "Vepsisk", + "de": "Wepsisch", + "eo": "vepsa lingvo", + "es": "vepsio", + "fi": "vepsä", + "fr": "vepse", + "gl": "Lingua vepsa", + "id": "Bahasa Veps", + "it": "vepso", + "ja": "ヴェプス語", + "nb_NO": "vepsisk", + "nl": "Wepsisch", + "pl": "język wepski", + "pt": "Língua vepes", + "pt_BR": "Língua vepes", + "ru": "вепсский язык", + "sv": "vepsiska", + "zh_Hans": "维普斯语", + "zh_Hant": "維普斯語", + "hu": "vepsze" + } + }, + { + "if": "language:bh=yes", + "ifnot": "language:bh=", + "searchTerms": { + "*": [ + "bh" + ] + }, + "then": { + "fi": "Bhodžpurin kieli", + "fr": "bhodjpouri", + "gl": "Lingua bhojpuri", + "id": "Bahasa Bhojpuri", + "it": "bhojpuri", + "ja": "ボージュプリー語", + "nb_NO": "Bhojpuri", + "nl": "Bhojpuri", + "pl": "język bhodźpuri", + "pt": "Língua bhojpuri", + "ru": "бходжпури", + "sv": "bhojpuri", + "zh_Hans": "博杰普尔语", + "zh_Hant": "博杰普爾語", + "ca": "bhojpuri", + "da": "Bhojpuri", + "de": "Bhojpuri", + "en": "Bhojpuri", + "eo": "bhojpura lingvo", + "es": "Idioma bopurí" + } + }, + { + "if": "language:shy=yes", + "ifnot": "language:shy=", + "searchTerms": { + "*": [ + "shy" + ] + }, + "then": { + "ca": "shaui", + "de": "Schawiya", + "en": "Shawiya", + "es": "chaoui", + "fi": "Tašawit", + "fr": "chaoui", + "it": "tashawit", + "ja": "シャウィーア語", + "pl": "język chaouia", + "pt": "Língua chaouis", + "ru": "Шавия" + } + }, + { + "if": "language:hz=yes", + "ifnot": "language:hz=", + "searchTerms": { + "*": [ + "hz" + ] + }, + "then": { + "en": "Herero", + "es": "herero", + "nb_NO": "herero", + "nl": "Herero", + "ru": "Гереро", + "ca": "herero", + "de": "Otjiherero", + "eo": "herera lingvo", + "fi": "Hereron kieli", + "fr": "héréro", + "gl": "Lingua herero", + "hu": "herero", + "id": "Bahasa Herero", + "it": "herero", + "ja": "ヘレロ語", + "pl": "Język herero", + "pt": "hereró", + "pt_BR": "Língua hereró", + "sv": "herero" + } + }, + { + "if": "language:mnw=yes", + "ifnot": "language:mnw=", + "searchTerms": { + "*": [ + "mnw" + ] + }, + "then": { + "zh_Hans": "孟语", + "zh_Hant": "孟語", + "nb_NO": "mon", + "nl": "Mon", + "en": "Mon", + "ca": "mon", + "de": "Mon", + "eo": "Mon (lingvo)", + "es": "mon", + "fr": "môn", + "gl": "Lingua mon", + "id": "Bahasa Mon", + "it": "lingua mon", + "ja": "モン語", + "pl": "Język mon", + "pt": "Língua mon", + "ru": "монский язык" + } + }, + { + "if": "language:mzn=yes", + "ifnot": "language:mzn=", + "searchTerms": { + "*": [ + "mzn" + ] + }, + "then": { + "en": "Mazanderani", + "nb_NO": "Mazandarani", + "ca": "mazanderani", + "da": "Mazenisk", + "de": "Masanderanisch", + "eo": "mazandarana lingvo", + "es": "mazandaraní", + "fi": "Mazandaranin kieli", + "fr": "mazandarani", + "gl": "Lingua mazanderani", + "id": "Bahasa Mazandaran", + "it": "mazanderani", + "ja": "マーザンダラーン語", + "nl": "Mazanderani", + "pl": "język mazanderański", + "pt": "Língua mazandarani", + "pt_BR": "Língua mazandarani", + "ru": "мазандеранский язык", + "sv": "mazenderani", + "hu": "mázandaráni" + } + }, + { + "if": "language:oc=yes", + "ifnot": "language:oc=", + "searchTerms": { + "*": [ + "oc" + ] + }, + "then": { + "en": "Occitan", + "hu": "okcitán", + "ca": "occità", + "da": "occitansk", + "de": "Okzitanisch", + "eo": "okcitana lingvo", + "es": "occitano", + "fi": "oksitaani", + "fr": "occitan", + "gl": "lingua occitana", + "id": "Oksitan", + "it": "occitano", + "ja": "オック語", + "nb_NO": "oksitansk", + "nl": "Occitaans", + "pl": "język oksytański", + "pt": "língua occitana", + "pt_BR": "Língua occitana", + "ru": "окситанский язык", + "sl": "Okcitanščina", + "sv": "occitanska" + } + }, + { + "if": "language:id=yes", + "ifnot": "language:id=", + "searchTerms": { + "*": [ + "id" + ] + }, + "then": { + "en": "Indonesian", + "es": "indonesio", + "fr": "indonésien", + "hu": "indonéz", + "id": "Indonesia", + "it": "indonesiano", + "ca": "indonesi", + "da": "indonesisk", + "de": "Indonesisch", + "eo": "indonezia lingvo", + "fi": "indonesia", + "gl": "lingua indonesia", + "ja": "インドネシア語", + "nb_NO": "indonesisk", + "nl": "Indonesisch", + "pl": "język indonezyjski", + "pt": "língua indonésia", + "pt_BR": "língua indonésia", + "ru": "индонезийский язык", + "sl": "indonezijščina", + "sv": "indonesiska", + "zh_Hans": "印度尼西亚语", + "zh_Hant": "印尼語" + }, + "priorityIf": "_country~((^|;)id($|;))" + }, + { + "if": "language:ve=yes", + "ifnot": "language:ve=", + "searchTerms": { + "*": [ + "ve" + ] + }, + "then": { + "hu": "venda", + "id": "Bahasa Venda", + "it": "venda", + "ja": "ヴェンダ語", + "nb_NO": "venda", + "nl": "Venda", + "pl": "Język venda", + "pt": "língua venda", + "pt_BR": "língua venda", + "ru": "венда", + "sv": "venda", + "zh_Hans": "文达语", + "en": "Venda", + "ca": "venda", + "de": "Tshivenda", + "eo": "venda lingvo", + "es": "venda", + "fi": "Vendan kieli", + "fr": "venda", + "gl": "Lingua venda" + }, + "priorityIf": "_country~((^|;)za($|;))|((^|;)zw($|;))" + }, + { + "if": "language:min=yes", + "ifnot": "language:min=", + "searchTerms": { + "*": [ + "min" + ] + }, + "then": { + "ca": "minangkabau", + "de": "Minangkabauisch", + "en": "Minangkabau", + "eo": "minankabaŭa lingvo", + "es": "minangkabau", + "fi": "Minangkabaun kieli", + "fr": "minangkabau", + "gl": "Lingua minangkabau", + "id": "Minangkabau", + "it": "minangkabau", + "ja": "ミナンカバウ語", + "nb_NO": "Minangkabau", + "nl": "Minangkabaus", + "pl": "Język minangkabau", + "pt": "Língua minangkabau", + "pt_BR": "Língua minangkabau", + "ru": "минангкабау", + "sv": "minangkabau", + "zh_Hans": "米南佳保语", + "zh_Hant": "米南佳保語" + } + }, + { + "if": "language:mwl=yes", + "ifnot": "language:mwl=", + "searchTerms": { + "*": [ + "mwl" + ] + }, + "then": { + "es": "mirandés", + "ca": "mirandès", + "de": "Mirandés", + "en": "Mirandese", + "eo": "miranda lingvo", + "fi": "Mirandeesi", + "fr": "mirandais", + "gl": "lingua mirandesa", + "hu": "mirandai", + "id": "Bahasa Miranda", + "it": "mirandese", + "ja": "ミランダ語", + "nb_NO": "mirandesisk", + "nl": "Mirandees", + "pl": "język mirandyjski", + "pt": "mirandês", + "pt_BR": "mirandês", + "ru": "мирандский язык", + "sv": "mirandesiska" + } + }, + { + "if": "language:pdc=yes", + "ifnot": "language:pdc=", + "searchTerms": { + "*": [ + "pdc" + ] + }, + "then": { + "hu": "pennsylvaniai német", + "de": "Pennsylvania Dutch", + "ca": "alemany pennsilvanià", + "en": "Pennsylvania German", + "eo": "pensilvangermana dialekto", + "es": "alemán de Pensilvania", + "fi": "Pennsylvaniansaksa", + "fr": "allemand de Pennsylvanie", + "gl": "Alemán de Pensilvania", + "id": "Bahasa Jerman Pennsylvania", + "it": "tedesco della Pennsylvania", + "ja": "ペンシルベニアドイツ語", + "nb_NO": "pennsylvaniatysk", + "nl": "Pennsylvania-Duits", + "pl": "język niemiecki w Pensylwanii", + "pt": "Alemão da Pensilvânia", + "ru": "пенсильванско-немецкий диалект", + "sl": "Pensilvanska nemščina", + "sv": "Pennsylvaniatyska" + } + }, + { + "if": "language:pfl=yes", + "ifnot": "language:pfl=", + "searchTerms": { + "*": [ + "pfl" + ] + }, + "then": { + "de": "Pfälzisch", + "ca": "Pfälzisch", + "en": "Palatinate German", + "eo": "Palatinata germana dialektaro", + "es": "alemán palatino", + "fi": "pfaltsi", + "fr": "palatin", + "gl": "Alemán do Palatinado", + "it": "tedesco palatino", + "ja": "プファルツ語", + "nl": "Paltsisch", + "pl": "Gwary palatynackie", + "ru": "Пфальцский диалект", + "sv": "pfalziska", + "hu": "pfalzi" + } + }, + { + "if": "language:nn=yes", + "ifnot": "language:nn=", + "searchTerms": { + "*": [ + "nn" + ] + }, + "then": { + "ru": "нюнорск", + "sv": "nynorska", + "ca": "nynorsk", + "da": "nynorsk", + "de": "Nynorsk", + "en": "Nynorsk", + "eo": "Nynorsk", + "es": "nynorsk", + "fi": "uusnorja", + "fr": "nynorsk", + "gl": "nynorsk", + "hu": "nynorsk", + "id": "Nynorsk", + "it": "nynorsk", + "ja": "ニーノシュク", + "nb_NO": "nynorsk", + "nl": "Nynorsk", + "pl": "norweski (nynorsk)", + "pt": "novo norueguês", + "pt_BR": "novo norueguês", + "zh_Hant": "新挪威語" + }, + "priorityIf": "_country~((^|;)no($|;))" + }, + { + "if": "language:nb=yes", + "ifnot": "language:nb=", + "searchTerms": { + "*": [ + "nb" + ] + }, + "then": { + "ru": "букмол", + "sl": "Bokmål", + "sv": "bokmål", + "ca": "bokmål", + "da": "bokmål", + "de": "Bokmål", + "en": "Bokmål", + "eo": "Bokmål", + "es": "bokmål", + "fi": "kirjanorja", + "fr": "bokmål", + "gl": "bokmål", + "hu": "norvég (bokmål)", + "id": "Bokmål", + "it": "bokmål", + "ja": "ブークモール", + "nb_NO": "bokmål", + "nl": "Bokmål", + "pl": "norweski (bokmål)", + "pt": "bokmål", + "pt_BR": "Bokmål" + }, + "priorityIf": "_country~((^|;)no($|;))" + }, + { + "if": "language:kw=yes", + "ifnot": "language:kw=", + "searchTerms": { + "*": [ + "kw" + ] + }, + "then": { + "en": "Cornish", + "ca": "còrnic", + "da": "Kornisk", + "de": "Kornisch", + "eo": "kornvala lingvo", + "es": "córnico", + "fi": "Korni", + "fr": "cornique", + "gl": "Lingua córnica", + "hu": "korni", + "id": "Bahasa Kernowek", + "it": "cornico", + "ja": "コーンウォール語", + "nb_NO": "kornisk", + "nl": "Cornisch", + "pl": "język kornijski", + "pt": "córnico", + "ru": "корнский язык", + "sl": "Kornijščina", + "sv": "korniska", + "zh_Hans": "康沃尔语", + "zh_Hant": "康瓦爾語" + } + }, + { + "if": "language:sco=yes", + "ifnot": "language:sco=", + "searchTerms": { + "*": [ + "sco" + ] + }, + "then": { + "ru": "шотландский язык", + "de": "Scots", + "en": "Scots", + "pt": "Scots", + "pt_BR": "Scots", + "sl": "Scots", + "es": "escocés", + "nl": "Schots", + "gl": "Lingua escocesa", + "ca": "escocès", + "eo": "skota lingvo", + "fi": "Skotin kieli", + "fr": "scots", + "hu": "scots", + "id": "Bahasa Scots", + "it": "lingua scots", + "ja": "スコットランド語", + "nb_NO": "skotsk", + "pl": "język scots", + "sv": "lågskotska", + "zh_Hans": "低地苏格兰语", + "zh_Hant": "低地蘇格蘭語", + "da": "skotsk" + } + }, + { + "if": "language:mdf=yes", + "ifnot": "language:mdf=", + "searchTerms": { + "*": [ + "mdf" + ] + }, + "then": { + "hu": "moksa", + "id": "Bahasa Moksha", + "it": "mokša", + "ja": "モクシャ語", + "nb_NO": "moksja", + "nl": "Moksja", + "pl": "Język moksza", + "pt": "Língua moksha", + "pt_BR": "Língua moksha", + "ru": "мокшанский язык", + "sv": "moksja", + "en": "Moksha", + "ca": "mokxa", + "de": "Mokschanisch", + "eo": "mokŝa lingvo", + "es": "moksha", + "fi": "mokša", + "fr": "moksa", + "gl": "Lingua moksha" + } + }, + { + "if": "language:sd=yes", + "ifnot": "language:sd=", + "searchTerms": { + "*": [ + "sd" + ] + }, + "then": { + "ru": "синдхи", + "ca": "sindhi", + "da": "sindhi", + "en": "Sindhi", + "eo": "sinda lingvo", + "es": "sindhi", + "fi": "sindhi", + "fr": "sindhi", + "gl": "Lingua sindhi", + "hu": "szindhi", + "id": "Bahasa Sindhi", + "it": "sindhi", + "ja": "シンド語", + "nb_NO": "sindhi", + "nl": "Sindhi", + "pl": "sindhi", + "pt": "língua sindi", + "pt_BR": "Língua sindi", + "sv": "sindhi", + "de": "Sindhi" + } + }, + { + "if": "language:tt=yes", + "ifnot": "language:tt=", + "searchTerms": { + "*": [ + "tt" + ] + }, + "then": { + "en": "Tatar", + "ca": "tàtar", + "da": "tatarisk", + "de": "Tatarisch", + "eo": "tatara lingvo", + "es": "tártaro", + "fi": "tataari", + "fr": "tatar", + "gl": "Lingua tártara", + "hu": "tatár", + "id": "Bahasa Tatar", + "it": "tataro", + "ja": "タタール語", + "nb_NO": "tatarisk", + "nl": "Tataars", + "pl": "język tatarski", + "pt": "Língua tártara", + "pt_BR": "Língua tártara", + "ru": "татарский язык", + "sl": "Tatarščina", + "sv": "tatariska" + } + }, + { + "if": "language:szl=yes", + "ifnot": "language:szl=", + "searchTerms": { + "*": [ + "szl" + ] + }, + "then": { + "da": "Schlesisk", + "de": "Schlesisch", + "fr": "silésien", + "en": "Silesian", + "nl": "Silezisch", + "ca": "silesià", + "eo": "silezia-pola lingvo", + "es": "silesio", + "fi": "sleesia", + "gl": "Lingua silesiana", + "id": "bahasa Silesia", + "it": "slesiano", + "ja": "シレジア語", + "nb_NO": "schlesisk", + "pl": "etnolekt śląski", + "pt": "silesiano", + "ru": "силезский язык", + "sl": "Šlezijščina", + "sv": "schlesiska", + "hu": "sziléziai" + } + }, + { + "if": "language:kaa=yes", + "ifnot": "language:kaa=", + "searchTerms": { + "*": [ + "kaa" + ] + }, + "then": { + "zh_Hant": "卡拉卡爾帕克語", + "en": "Karakalpak", + "ca": "karakalpak", + "de": "Karakalpakisch", + "eo": "karakalpaka lingvo", + "es": "Idioma karakalpako", + "fi": "karapalkki", + "fr": "karakalpak", + "gl": "Lingua karakalpak", + "hu": "karakalpak", + "id": "Bahasa Karakalpak", + "it": "karakalpako", + "ja": "カラカルパク語", + "nl": "Karakalpaks", + "pl": "Język karakałpacki", + "pt": "Língua caracalpaque", + "ru": "каракалпакский язык", + "sv": "karakalpakiska" + } + }, + { + "if": "language:jv=yes", + "ifnot": "language:jv=", + "searchTerms": { + "*": [ + "jv" + ] + }, + "then": { + "id": "Jawa", + "en": "Javanese", + "fr": "javanais", + "ca": "javanès", + "da": "Javanesisk", + "de": "Javanisch", + "eo": "java lingvo", + "es": "javanés", + "fi": "Jaavan kieli", + "gl": "Lingua xavanesa", + "hu": "jávai", + "it": "giavanese", + "ja": "ジャワ語", + "nb_NO": "javanesisk", + "nl": "Javaans", + "pl": "język jawajski", + "pt": "Língua javanesa", + "pt_BR": "Língua javanesa", + "ru": "яванский язык", + "sv": "javanesiska", + "zh_Hans": "爪哇语", + "zh_Hant": "爪哇語" + }, + "priorityIf": "_country~((^|;)id($|;))" + }, + { + "if": "language:tl=yes", + "ifnot": "language:tl=", + "searchTerms": { + "*": [ + "tl" + ] + }, + "then": { + "nb_NO": "tagalog", + "nl": "Tagalog", + "pl": "język tagalski", + "pt": "língua tagalo", + "pt_BR": "Língua tagalo", + "ru": "тагальский язык", + "sv": "tagalog", + "zh_Hant": "他加祿語", + "da": "tagalisk", + "de": "Tagalog", + "en": "Tagalog", + "it": "tagalog", + "ca": "tagal", + "eo": "tagaloga lingvo", + "es": "tagalo", + "fi": "tagalog", + "fr": "tagalog", + "gl": "Lingua tagala", + "hu": "tagalog", + "id": "Bahasa Tagalog", + "ja": "タガログ語" + } + }, + { + "if": "language:to=yes", + "ifnot": "language:to=", + "searchTerms": { + "*": [ + "to" + ] + }, + "then": { + "ca": "tongalès", + "de": "Tongaisch", + "en": "Tongan", + "es": "tongano", + "fi": "Tongan kieli", + "fr": "tongien", + "gl": "Lingua tongana", + "hu": "tongai", + "id": "Bahasa Tonga", + "it": "tongano", + "ja": "トンガ語", + "nb_NO": "Tongansk", + "nl": "Tongaans", + "pl": "Język tonga", + "pt": "Língua tonganesa", + "ru": "тонганский язык", + "sv": "tonganska", + "eo": "Tonga lingvo" + }, + "priorityIf": "_country~((^|;)to($|;))" + }, + { + "if": "language:myv=yes", + "ifnot": "language:myv=", + "searchTerms": { + "*": [ + "myv" + ] + }, + "then": { + "ca": "erzya", + "de": "Ersjanisch", + "en": "Erzya", + "eo": "erzja lingvo", + "es": "erzya", + "fi": "ersä", + "fr": "erzya", + "gl": "Lingua erzya", + "hu": "erza", + "id": "Bahasa Erzya", + "it": "erza", + "ja": "エルジャ語", + "nb_NO": "erzia", + "nl": "Erzja", + "pl": "język erzja", + "pt": "Língua erzya", + "pt_BR": "Língua erzya", + "ru": "эрзянский язык", + "sl": "Erzjanščina", + "sv": "erzya" + } + }, + { + "if": "language:lez=yes", + "ifnot": "language:lez=", + "searchTerms": { + "*": [ + "lez" + ] + }, + "then": { + "ca": "lesguià", + "de": "Lesgisch", + "en": "Lezgian", + "eo": "lezga lingvo", + "es": "Idioma lezgui", + "fi": "lezgi", + "fr": "lezghien", + "gl": "Lingua lezguia", + "hu": "lezg", + "id": "Bahasa Lezgia", + "it": "lesgo", + "ja": "レズギ語", + "nb_NO": "lezgisk", + "nl": "Lezgisch", + "pl": "język lezgiński", + "pt": "Língua lezgui", + "pt_BR": "Língua lezgui", + "ru": "лезгинский язык", + "sl": "Lezginščina", + "sv": "lezginska", + "zh_Hans": "列兹金语", + "zh_Hant": "列茲金語" + } + }, + { + "if": "language:cho=yes", + "ifnot": "language:cho=", + "searchTerms": { + "*": [ + "cho" + ] + }, + "then": { + "de": "Choctaw", + "en": "Choctaw", + "nl": "Choctaw", + "ca": "choctaw", + "eo": "Ĉakta lingvo", + "es": "idioma choctaw", + "fi": "Choctawin kieli", + "fr": "choctaw", + "gl": "Lingua choctaw", + "hu": "csaktó", + "id": "Bahasa Choctaw", + "it": "lingua choctaw", + "ja": "チョクトー語", + "nb_NO": "choctaw", + "pl": "Język czoktaw", + "pt": "Língua choctaw", + "ru": "Чоктавский язык", + "sv": "choctaw", + "zh_Hans": "乔克托语" + } + }, + { + "if": "language:kl=yes", + "ifnot": "language:kl=", + "searchTerms": { + "*": [ + "kl" + ] + }, + "then": { + "de": "Grönländisch", + "en": "Greenlandic", + "ca": "grenlandès", + "da": "grønlandsk", + "eo": "gronlanda lingvo", + "es": "groenlandés", + "fi": "grönlannin kieli", + "fr": "groenlandais", + "gl": "Lingua grenlandesa", + "hu": "grönlandi", + "id": "Bahasa Kalaallisut", + "it": "groenlandese", + "ja": "グリーンランド語", + "nb_NO": "grønlandsk", + "nl": "Groenlands", + "pl": "język grenlandzki", + "pt": "gronelandês", + "ru": "гренландский язык", + "sl": "Grenlandščina", + "sv": "grönländska", + "zh_Hans": "格陵兰语", + "zh_Hant": "格陵蘭語" + } + }, + { + "if": "language:pms=yes", + "ifnot": "language:pms=", + "searchTerms": { + "*": [ + "pms" + ] + }, + "then": { + "en": "Piedmontese", + "ca": "piemontès", + "de": "Piemontesisch", + "eo": "piemonta lingvo", + "es": "piamontés", + "fi": "Piemonten kieli", + "fr": "piémontais", + "gl": "Lingua piemontesa", + "id": "Bahasa Piemonte", + "it": "lingua piemontese", + "ja": "ピエモンテ語", + "nb_NO": "piemontesisk", + "nl": "Piëmontees", + "pl": "język piemoncki", + "pt": "Língua piemontesa", + "pt_BR": "Língua piemontesa", + "ru": "пьемонтский язык", + "sv": "piemontesiska", + "zh_Hans": "皮埃蒙特语", + "zh_Hant": "皮埃蒙特語", + "hu": "piemonti" + } + }, + { + "if": "language:crh=yes", + "ifnot": "language:crh=", + "searchTerms": { + "*": [ + "crh" + ] + }, + "then": { + "gl": "Lingua tártara de Crimea", + "hu": "krími tatár", + "id": "Bahasa Tatar Krimea", + "it": "tataro di Crimea", + "ja": "クリミア・タタール語", + "nb_NO": "krimtatarisk", + "nl": "Krim-Tataars", + "pl": "język krymskotatarski", + "pt": "tártaro da Crimeia", + "pt_BR": "Língua tártara da Crimeia", + "ru": "крымскотатарский язык", + "sl": "Krimska tatarščina", + "sv": "krimtatariska", + "zh_Hans": "克里米亚鞑靼语", + "zh_Hant": "克里米亞韃靼語", + "ca": "tàtar de Crimea", + "da": "Krimtatarisk", + "de": "Krimtatarisch", + "en": "Crimean Tatar", + "eo": "krime-tatara lingvo", + "es": "tártaro de Crimea", + "fi": "krimintataari", + "fr": "tatar de Crimée" + } + }, + { + "if": "language:smn=yes", + "ifnot": "language:smn=", + "searchTerms": { + "*": [ + "smn" + ] + }, + "then": { + "en": "Inari Sami", + "ca": "sami d'Inari", + "de": "Inarisamisch", + "eo": "anar-samea lingvo", + "es": "sami inari", + "fi": "inarinsaame", + "fr": "same d'Inari", + "gl": "Lingua saami de Inari", + "hu": "inari számi", + "it": "sami di Inari", + "ja": "イナリ・サーミ語", + "nb_NO": "enaresamisk", + "nl": "Inari-Samisch", + "pl": "Język inari", + "pt": "lapônico de Inari", + "ru": "инари-саамский язык", + "sv": "enaresamiska", + "zh_Hans": "伊纳里萨米语", + "zh_Hant": "伊納里薩米語" + } + }, + { + "if": "language:ksh=yes", + "ifnot": "language:ksh=", + "searchTerms": { + "*": [ + "ksh" + ] + }, + "then": { + "it": "lingua ripuaria", + "ja": "リプアーリ語", + "nl": "Ripuarisch", + "pl": "gwary rypuaryjskie", + "pt": "Língua ripuária", + "ru": "рипуарские диалекты", + "de": "Ripuarisch", + "ca": "ripuarisch", + "en": "Ripuarian", + "eo": "ripuara dialektaro", + "es": "fráncico ripuario", + "fr": "francique ripuaire", + "gl": "Fráncico ripuario" + } + }, + { + "if": "language:ny=yes", + "ifnot": "language:ny=", + "searchTerms": { + "*": [ + "ny" + ] + }, + "then": { + "en": "Chewa", + "nl": "Nyanja", + "ca": "nyanja", + "da": "nyanja", + "de": "Chichewa", + "eo": "njanĝa lingvo", + "es": "chichewa", + "fi": "njandžan kieli", + "fr": "chewa", + "gl": "lingua chichewa", + "hu": "cseva", + "id": "Bahasa Chichewa", + "it": "chewa", + "ja": "チェワ語", + "nb_NO": "chewa", + "pl": "język cziczewa", + "pt": "língua nianja", + "ru": "ньянджа", + "sv": "chichewa" + }, + "priorityIf": "_country~((^|;)mw($|;))|((^|;)zw($|;))" + }, + { + "if": "language:mn=yes", + "ifnot": "language:mn=", + "searchTerms": { + "*": [ + "mn" + ] + }, + "then": { + "zh_Hant": "蒙古語", + "en": "Mongolian", + "ca": "mongol", + "da": "Mongolsk", + "de": "Mongolisch", + "eo": "mongola lingvo", + "es": "mongol", + "fi": "mongoli", + "fr": "mongol", + "gl": "Lingua mongol", + "hu": "mongol", + "id": "Bahasa Mongol", + "it": "mongolo", + "ja": "モンゴル語", + "nb_NO": "mongolsk", + "nl": "Mongools", + "pl": "język mongolski", + "pt": "Língua mongol", + "pt_BR": "Língua mongol", + "ru": "монгольский язык", + "sv": "mongoliska" + }, + "priorityIf": "_country~((^|;)mn($|;))" + }, + { + "if": "language:ks=yes", + "ifnot": "language:ks=", + "searchTerms": { + "*": [ + "ks" + ] + }, + "then": { + "pl": "język kaszmirski", + "pt": "língua caxemira", + "pt_BR": "Língua caxemira", + "ru": "кашмирский язык", + "sl": "Kašmirščina", + "sv": "kashmiri", + "zh_Hans": "克什米尔语", + "zh_Hant": "喀什米爾語", + "en": "Kashmiri", + "de": "Kashmiri", + "ca": "caixmiri", + "da": "Kashmirisk", + "eo": "kaŝmira lingvo", + "es": "cachemir", + "fi": "Kašmirin kieli", + "fr": "cachemiri", + "gl": "Lingua caxemiresa", + "hu": "kasmíri", + "id": "Bahasa Kashmiri", + "it": "kashmiri", + "ja": "カシミール語", + "nb_NO": "kasjmiri", + "nl": "Kasjmiri" + } + }, + { + "if": "language:ig=yes", + "ifnot": "language:ig=", + "searchTerms": { + "*": [ + "ig" + ] + }, + "then": { + "ca": "igbo", + "da": "Igbo", + "de": "Igbo", + "en": "Igbo", + "eo": "igba lingvo", + "es": "idioma igbo", + "fi": "igbon kieli", + "fr": "igbo", + "gl": "Lingua ibo", + "hu": "igbo", + "id": "Bahasa Igbo", + "it": "igbo", + "ja": "イボ語", + "nb_NO": "ibo", + "nl": "Igbo", + "pl": "język igbo", + "pt": "Língua igbo", + "ru": "игбо", + "sv": "igbo", + "zh_Hant": "伊博語" + } + }, + { + "if": "language:rw=yes", + "ifnot": "language:rw=", + "searchTerms": { + "*": [ + "rw" + ] + }, + "then": { + "da": "Kinyarwanda", + "de": "Kinyarwanda", + "en": "Kinyarwanda", + "nl": "Kinyarwanda", + "ca": "kinyarwanda", + "eo": "ruanda lingvo", + "es": "kiñaruanda", + "fi": "ruandan kieli", + "fr": "kinyarwanda", + "gl": "Lingua ruanda", + "hu": "kinyarvanda", + "id": "Bahasa Kinyarwanda", + "it": "kinyarwanda", + "ja": "ルワンダ語", + "nb_NO": "kinyarwanda", + "pl": "język ruanda", + "pt": "Língua kinyarwanda", + "ru": "руанда", + "sv": "rwanda", + "zh_Hant": "盧安達語" + }, + "priorityIf": "_country~((^|;)rw($|;))" + }, + { + "if": "language:nds=yes", + "ifnot": "language:nds=", + "searchTerms": { + "*": [ + "nds" + ] + }, + "then": { + "es": "bajo alemán", + "de": "Niederdeutsch", + "en": "Low German", + "nl": "Nederduits", + "ca": "baix alemany", + "da": "plattysk", + "eo": "platgermana lingvo", + "fi": "alasaksa", + "fr": "bas allemand", + "gl": "Lingua baixo alemá", + "hu": "alnémet", + "id": "Bahasa Sachsen Hilir", + "it": "lingue basso-tedesche", + "ja": "低地ドイツ語", + "nb_NO": "nedertysk", + "pl": "język dolnoniemiecki", + "pt": "Baixo-alemão", + "ru": "нижненемецкий язык", + "sl": "Nizka nemščina", + "sv": "lågtyska", + "zh_Hant": "低地德語" + } + }, + { + "if": "language:ng=yes", + "ifnot": "language:ng=", + "searchTerms": { + "*": [ + "ng" + ] + }, + "then": { + "en": "Ndonga", + "fi": "Ndonga", + "nl": "Ndonga", + "pt": "Ndonga", + "eo": "ndonga lingvo", + "es": "ndonga", + "fr": "ndonga", + "gl": "Lingua ndonga", + "hu": "ndonga", + "it": "ndonga", + "ja": "ンドンガ語", + "pl": "Język ndonga", + "sv": "ndonga", + "ru": "Ндонга", + "de": "Ndonga" + } + }, + { + "if": "language:skr=yes", + "ifnot": "language:skr=", + "searchTerms": { + "*": [ + "skr" + ] + }, + "then": { + "de": "Saraiki", + "en": "Saraiki", + "fi": "Saraiki", + "nb_NO": "Saraiki", + "ca": "seraiki", + "es": "saraiki", + "fr": "saraiki", + "gl": "Lingua saraiki", + "id": "Bahasa Saraiki", + "it": "lingua saraiki", + "ja": "サライキ語", + "pl": "Język saraiki", + "pt": "Língua seraiki", + "ru": "Сирайки", + "sv": "saraiki" + } + }, + { + "if": "language:se=yes", + "ifnot": "language:se=", + "searchTerms": { + "*": [ + "se" + ] + }, + "then": { + "ca": "sami septentrional", + "da": "nordsamisk", + "de": "Nordsamisch", + "en": "Northern Sami", + "eo": "nord-samea lingvo", + "es": "sami septentrional", + "fi": "pohjoissaame", + "fr": "same du Nord", + "gl": "Lingua saami setentrional", + "hu": "északi számi", + "it": "sami settentrionale", + "ja": "北部サーミ語", + "nb_NO": "nordsamisk", + "nl": "Noord-Samisch", + "pl": "język północnosaamski", + "pt": "língua sami setentrional", + "pt_BR": "Língua lapônica setentrional", + "ru": "северносаамский язык", + "sv": "nordsamiska", + "zh_Hans": "北萨米语", + "zh_Hant": "北薩米語" + } + }, + { + "if": "language:ik=yes", + "ifnot": "language:ik=", + "searchTerms": { + "*": [ + "ik" + ] + }, + "then": { + "ca": "inupiaq", + "de": "Inupiaq", + "en": "Inupiaq", + "eo": "inupiaka lingvo", + "es": "Idioma iñupiaq", + "fi": "Inupiatun", + "gl": "Lingua inupiaq", + "hu": "inupiak", + "id": "Bahasa Inupiaq", + "it": "inupiaq", + "ja": "イヌピアック語", + "nb_NO": "Inupiak", + "nl": "Inupiak", + "pl": "Język inupiak", + "pt": "Língua inupiat", + "ru": "аляскинско-инуитские языки", + "sv": "iñupiaq", + "fr": "inupiaq" + } + }, + { + "if": "language:kjh=yes", + "ifnot": "language:kjh=", + "searchTerms": { + "*": [ + "kjh" + ] + }, + "then": { + "ca": "khakàs", + "de": "Chakassisch", + "en": "Khakas", + "eo": "Ĥakasa lingvo", + "es": "Idioma jakasio", + "fi": "Hakassin kieli", + "fr": "khakasse", + "id": "Bahasa Khakas", + "it": "chakassa", + "ja": "ハカス語", + "nb_NO": "khakasisk", + "nl": "Chakas", + "pl": "Język chakaski", + "pt": "Língua khakas", + "ru": "хакасский язык", + "sv": "khakasiska", + "zh_Hans": "哈卡斯语", + "zh_Hant": "哈卡斯语", + "gl": "Lingua khakas" + } + }, + { + "if": "language:ne=yes", + "ifnot": "language:ne=", + "searchTerms": { + "*": [ + "ne" + ] + }, + "then": { + "hu": "nepáli", + "id": "Bahasa Nepali", + "it": "nepalese", + "ja": "ネパール語", + "nb_NO": "nepali", + "nl": "Nepalees", + "pl": "język nepalski", + "pt": "língua nepali", + "ru": "непальский язык", + "sl": "nepalščina", + "sv": "nepali", + "zh_Hant": "尼泊爾語", + "en": "Nepali", + "ca": "nepalès", + "da": "nepalesisk", + "de": "Nepali", + "eo": "nepala lingvo", + "es": "nepalí", + "fi": "nepalin kieli", + "fr": "népalais", + "gl": "Lingua nepalesa" + }, + "priorityIf": "_country~((^|;)np($|;))" + }, + { + "if": "language:nap=yes", + "ifnot": "language:nap=", + "searchTerms": { + "*": [ + "nap" + ] + }, + "then": { + "en": "Neapolitan", + "ca": "napolità", + "fr": "napolitain", + "es": "napolitano", + "da": "Napolitansk", + "de": "Neapolitanisch", + "eo": "napola lingvo", + "fi": "napoli", + "gl": "Lingua napolitana", + "hu": "nápolyi", + "id": "Bahasa Napolitan", + "it": "lingua napoletana", + "ja": "ナポリ語", + "nb_NO": "napolitansk", + "nl": "Napolitaans", + "pl": "język neapolitański", + "pt": "napolitano", + "ru": "неаполитанский язык", + "sv": "neapolitanska", + "zh_Hans": "那不勒斯语", + "zh_Hant": "那不勒斯語" + } + }, + { + "if": "language:lg=yes", + "ifnot": "language:lg=", + "searchTerms": { + "*": [ + "lg" + ] + }, + "then": { + "en": "Luganda", + "nl": "Luganda", + "de": "Luganda", + "ca": "ganda", + "da": "Luganda", + "eo": "ganda lingvo", + "es": "luganda", + "fi": "Gandan kieli", + "fr": "luganda", + "gl": "Lingua luganda", + "hu": "ganda", + "id": "Bahasa Luganda", + "it": "luganda", + "ja": "ルガンダ語", + "nb_NO": "Luganda", + "pl": "Język luganda", + "pt": "Língua luganda", + "ru": "Луганда", + "sv": "luganda", + "zh_Hant": "烏干達語" + } + }, + { + "if": "language:ht=yes", + "ifnot": "language:ht=", + "searchTerms": { + "*": [ + "ht" + ] + }, + "then": { + "ca": "crioll haitià", + "de": "Haitianisch", + "en": "Haitian Creole", + "eo": "haitia kreola lingvo", + "es": "criollo haitiano", + "fi": "haiti", + "fr": "créole haïtien", + "gl": "Crioulo haitiano", + "hu": "haiti kreol", + "id": "Bahasa Kreol Haiti", + "it": "creolo haitiano", + "ja": "ハイチ語", + "nb_NO": "haitisk", + "nl": "Haïtiaans Creools", + "pl": "język kreolski haitański", + "pt": "crioulo haitiano", + "pt_BR": "Língua crioula haitiana", + "ru": "гаитянский креольский язык", + "sv": "haitisk kreol", + "zh_Hans": "海地克里奥尔语", + "zh_Hant": "海地克里奧爾語", + "da": "haitisk" + }, + "priorityIf": "_country~((^|;)ht($|;))" + }, + { + "if": "language:os=yes", + "ifnot": "language:os=", + "searchTerms": { + "*": [ + "os" + ] + }, + "then": { + "nb_NO": "ossetisk", + "nl": "Ossetisch", + "pl": "język osetyjski", + "pt": "Língua osseta", + "ru": "осетинский язык", + "sl": "Osetinščina", + "sv": "ossetiska", + "zh_Hans": "奥塞梯语", + "zh_Hant": "奧塞提亞語", + "en": "Ossetian", + "fr": "ossète", + "ca": "osseta", + "da": "Ossetisk", + "de": "Ossetisch", + "eo": "oseta lingvo", + "es": "osetio", + "fi": "osseetti", + "gl": "Lingua oseta", + "hu": "oszét", + "id": "Bahasa Ossetia", + "it": "osseto", + "ja": "オセット語" + } + }, + { + "if": "language:new=yes", + "ifnot": "language:new=", + "searchTerms": { + "*": [ + "new" + ] + }, + "then": { + "en": "Newar", + "ca": "newar de Katmandú", + "de": "Newari", + "eo": "nevara lingvo", + "es": "Newari", + "fi": "Newari", + "fr": "newari", + "gl": "Lingua newari", + "hu": "névári", + "id": "Bahasa Nepal", + "it": "nepal bhasa", + "ja": "ネパール・バサ語", + "nb_NO": "Nepal bhasa", + "nl": "Newaars", + "pl": "Język newarski", + "pt": "Língua bhasa", + "ru": "неварский язык", + "sv": "newari" + } + }, + { + "if": "language:su=yes", + "ifnot": "language:su=", + "searchTerms": { + "*": [ + "su" + ] + }, + "then": { + "id": "Sunda", + "pt": "Sunda", + "ca": "sunda", + "da": "Sunda", + "en": "Sundanese", + "eo": "sunda lingvo", + "es": "sundanés", + "fi": "sunda", + "fr": "soundanais", + "gl": "Sunda", + "hu": "szundai", + "it": "sunda", + "ja": "スンダ語", + "nl": "Soendanees", + "pl": "język sundajski", + "pt_BR": "Sunda", + "ru": "сунданский язык", + "sl": "Sunda", + "sv": "sunda", + "nb_NO": "sundanesisk", + "de": "Sundanesisch" + } + }, + { + "if": "language:iu=yes", + "ifnot": "language:iu=", + "searchTerms": { + "*": [ + "iu" + ] + }, + "then": { + "de": "Inuktitut", + "en": "Inuktitut", + "ca": "inuktitut", + "da": "Inuktitut", + "eo": "inuktituta lingvo", + "es": "lenguas inuit", + "fi": "Inuktitut", + "fr": "inuktitut", + "gl": "Lingua inuktitut", + "hu": "inuktitut", + "id": "Bahasa Inuktitut", + "it": "inuktitut", + "ja": "イヌクティトゥット語", + "nb_NO": "inuktitut", + "nl": "Inuktitut", + "pl": "inuktitut", + "pt": "Língua inuktitut", + "pt_BR": "Língua inuktitut", + "ru": "инуктитут", + "sv": "inuktitut", + "zh_Hans": "伊努克提图特语", + "zh_Hant": "伊努克提圖特語" + } + }, + { + "if": "language:ki=yes", + "ifnot": "language:ki=", + "searchTerms": { + "*": [ + "ki" + ] + }, + "then": { + "es": "kikuyu", + "en": "Gikuyu", + "nl": "Gikuyu", + "de": "Kikuyu", + "ru": "Кикуйю", + "ca": "gikuyu", + "eo": "kikuja lingvo", + "fi": "Kikujun kieli", + "fr": "kikuyu", + "gl": "Lingua kikuyu", + "hu": "kikuju", + "id": "Bahasa Kikuyu", + "it": "gikuyu", + "ja": "キクユ語", + "nb_NO": "kikuyu", + "pl": "język kikuju", + "pt": "Língua kikuyu", + "pt_BR": "Língua kikuyu", + "sv": "kikuyu", + "zh_Hans": "基库尤语", + "zh_Hant": "基庫尤語" + } + }, + { + "if": "language:kn=yes", + "ifnot": "language:kn=", + "searchTerms": { + "*": [ + "kn" + ] + }, + "then": { + "ca": "kannada", + "da": "kannada", + "de": "Kannada", + "en": "Kannada", + "eo": "kanara lingvo", + "es": "canarés", + "fi": "kannada", + "fr": "kannada", + "gl": "Lingua kanaresa", + "hu": "kannada", + "id": "Bahasa Kannada", + "it": "kannada", + "ja": "カンナダ語", + "nb_NO": "kannada", + "nl": "Kannada", + "pl": "język kannada", + "pt": "Língua canaresa", + "ru": "каннада", + "sv": "kannada", + "zh_Hans": "卡纳达语", + "zh_Hant": "康納達語" + } + }, + { + "if": "language:inh=yes", + "ifnot": "language:inh=", + "searchTerms": { + "*": [ + "inh" + ] + }, + "then": { + "ca": "ingúix", + "en": "Ingush", + "da": "Ingusjisk", + "de": "Inguschisch", + "eo": "inguŝa lingvo", + "es": "ingusetio", + "fi": "Inguušin kieli", + "fr": "ingouche", + "gl": "Lingua ingusetia", + "id": "Bahasa Ingush", + "it": "lingua inguscia", + "ja": "イングーシ語", + "nb_NO": "ingusjisk", + "nl": "Ingoesjetisch", + "pl": "Język inguski", + "pt": "Língua inguche", + "ru": "ингушский язык", + "sv": "ingusjiska", + "hu": "ingus" + } + }, + { + "if": "language:pcd=yes", + "ifnot": "language:pcd=", + "searchTerms": { + "*": [ + "pcd" + ] + }, + "then": { + "en": "Picard", + "ca": "picard", + "da": "Pikardisk", + "de": "Picardisch", + "eo": "pikarda franca dialekto", + "es": "picardo", + "fi": "Picardin kieli", + "fr": "picard", + "gl": "Lingua picarda", + "hu": "pikárd", + "id": "Bahasa Picard", + "it": "piccardo", + "ja": "ピカルディ語", + "nb_NO": "pikardisk", + "nl": "Picardisch", + "pl": "język pikardyjski", + "pt": "picardo", + "ru": "пикардский язык", + "sv": "pikardiska" + } + }, + { + "if": "language:sc=yes", + "ifnot": "language:sc=", + "searchTerms": { + "*": [ + "sc" + ] + }, + "then": { + "pt": "Língua sarda", + "ru": "сардинский язык", + "sl": "Sardinščina", + "sv": "sardiska", + "zh_Hans": "撒丁语", + "zh_Hant": "薩丁尼亞語", + "en": "Sardinian", + "ca": "sard", + "da": "Sardisk", + "de": "Sardisch", + "eo": "sarda lingvo", + "es": "sardo", + "fi": "sardi", + "fr": "sarde", + "gl": "Lingua sarda", + "hu": "szárd", + "id": "Bahasa Sardinia", + "it": "sardo", + "ja": "サルデーニャ語", + "nb_NO": "sardisk", + "nl": "Sardijns", + "pl": "Język sardyński" + } + }, + { + "if": "language:srn=yes", + "ifnot": "language:srn=", + "searchTerms": { + "*": [ + "srn" + ] + }, + "then": { + "pt": "Sranan", + "ca": "sranan tongo", + "da": "Sranan tongo", + "de": "Sranantongo", + "en": "Sranan Tongo", + "eo": "srana lingvo", + "es": "sranan tongo", + "fi": "Sranantongo", + "fr": "sranan", + "gl": "Sranan tongo", + "hu": "sranan", + "id": "Bahasa Sranantongo", + "it": "sranan tongo", + "ja": "スラナン語", + "nb_NO": "sranan", + "nl": "Sranantongo", + "pl": "sranan tongo", + "ru": "cранан-тонго", + "sl": "Surinamščina", + "sv": "sranan", + "zh_Hans": "苏里南语", + "zh_Hant": "蘇利南語" + } + }, + { + "if": "language:rn=yes", + "ifnot": "language:rn=", + "searchTerms": { + "*": [ + "rn" + ] + }, + "then": { + "ca": "rundi", + "de": "Kirundi", + "en": "Kirundi", + "eo": "burunda lingvo", + "es": "kirundi", + "fi": "Kirundi", + "fr": "kirundi", + "gl": "Lingua kirundi", + "hu": "kirundi", + "id": "Bahasa Kirundi", + "it": "kirundi", + "ja": "ルンディ語", + "nb_NO": "kirundi", + "nl": "Kirundi", + "pl": "język rundi", + "pt": "Língua kirundi", + "ru": "рунди", + "sv": "kirundi" + }, + "priorityIf": "_country~((^|;)bi($|;))" + }, + { + "if": "language:ho=yes", + "ifnot": "language:ho=", + "searchTerms": { + "*": [ + "ho" + ] + }, + "then": { + "da": "Hiri motu", + "de": "Hiri Motu", + "en": "Hiri Motu", + "eo": "hirimotua lingvo", + "es": "Hiri motu", + "fi": "Hiri motu", + "fr": "hiri motu", + "gl": "Hiri Motu", + "hu": "hiri motu", + "id": "Bahasa Hiri Motu", + "it": "hiri motu", + "ja": "ヒリモツ語", + "nb_NO": "hiri motu", + "nl": "Hiri Motu", + "pl": "Hiri motu", + "pt": "Língua hiri motu", + "ru": "хири-моту", + "sv": "hiri motu", + "ca": "Hiri Motu" + }, + "priorityIf": "_country~((^|;)pg($|;))" + }, + { + "if": "language:sg=yes", + "ifnot": "language:sg=", + "searchTerms": { + "*": [ + "sg" + ] + }, + "then": { + "de": "Sango", + "en": "Sango", + "nl": "Sango", + "ca": "sango", + "da": "Sango", + "eo": "sangoa lingvo", + "es": "idioma sango", + "fi": "Sango", + "fr": "sango", + "gl": "Lingua sango", + "hu": "szango", + "id": "Bahasa Sango", + "it": "sango", + "ja": "サンゴ語", + "nb_NO": "sango", + "pl": "Język sango", + "pt": "Língua sango", + "pt_BR": "Língua sango", + "ru": "санго", + "sv": "sango", + "zh_Hans": "桑戈语", + "zh_Hant": "桑戈語" + }, + "priorityIf": "_country~((^|;)cf($|;))" + }, + { + "if": "language:pap=yes", + "ifnot": "language:pap=", + "searchTerms": { + "*": [ + "pap" + ] + }, + "then": { + "en": "Papiamento", + "fr": "papiamento", + "ca": "papiament", + "de": "Papiamentu", + "eo": "Papiamento", + "es": "papiamento", + "fi": "Papiamentu", + "gl": "Papiamento", + "hu": "papiamentu", + "id": "Bahasa Papiamento", + "it": "lingua papiamento", + "ja": "パピアメント語", + "nb_NO": "papiamento", + "nl": "Papiaments", + "pl": "Język papiamento", + "pt": "papiamento", + "ru": "папьяменто", + "sv": "papiamento", + "zh_Hans": "帕皮阿门托语", + "zh_Hant": "帕皮阿門托語", + "da": "papiamento" + } + }, + { + "if": "language:kbd=yes", + "ifnot": "language:kbd=", + "searchTerms": { + "*": [ + "kbd" + ] + }, + "then": { + "ca": "kabardí", + "de": "Kabardinisch", + "en": "Kabardian", + "eo": "kabarda lingvo", + "es": "Idioma cabardiano", + "fi": "Kabardin kieli", + "fr": "kabarde", + "gl": "Lingua kabardina", + "hu": "kabard", + "it": "cabardo", + "ja": "カバルド語", + "nb_NO": "kabardisk", + "nl": "Kabardijns", + "pl": "Język kabardyjski", + "pt": "Língua cabardiana", + "ru": "кабардино-черкесский язык", + "sv": "kabardinska" + } + }, + { + "if": "language:or=yes", + "ifnot": "language:or=", + "searchTerms": { + "*": [ + "or" + ] + }, + "then": { + "hu": "orija", + "it": "oriya", + "ja": "オリヤー語", + "nb_NO": "oriya", + "pl": "język orija", + "pt": "língua oriá", + "ru": "ория", + "sv": "oriya", + "zh_Hant": "奧里亞語", + "en": "Odia", + "nl": "Odia", + "id": "Oriya", + "ca": "oriya", + "da": "oriya", + "de": "Oriya", + "eo": "odia lingvo", + "es": "oriya", + "fi": "orija", + "fr": "oriya", + "gl": "Lingua oriya" + } + }, + { + "if": "language:arn=yes", + "ifnot": "language:arn=", + "searchTerms": { + "*": [ + "arn" + ] + }, + "then": { + "en": "Mapudungun", + "ca": "mapudungun", + "da": "Mapudungun", + "de": "Mapudungun", + "eo": "mapuĉa lingvo", + "es": "mapuche", + "fr": "mapudungun", + "gl": "Lingua mapuche", + "it": "mapudungun", + "ja": "マプチェ語", + "nb_NO": "Mapudungun", + "nl": "Mapudungun", + "pl": "Język mapudungun", + "pt": "mapudungun", + "ru": "мапуче", + "sl": "Mapudungun", + "sv": "mapudungun", + "id": "Bahasa Mapuche", + "fi": "mapudungun" + } + }, + { + "if": "language:om=yes", + "ifnot": "language:om=", + "searchTerms": { + "*": [ + "om" + ] + }, + "then": { + "de": "Oromo", + "en": "Oromo", + "nl": "Oromo", + "fr": "oromo", + "ca": "oromo", + "da": "Oromo", + "eo": "oroma lingvo", + "es": "oromo", + "fi": "oromon kieli", + "gl": "Lingua oromo", + "hu": "oromó", + "id": "Bahasa Oromo", + "it": "lingua oromonica", + "ja": "オロモ語", + "nb_NO": "oromo", + "pl": "Język oromo", + "pt": "Língua oromo", + "ru": "оромо", + "sv": "oromo" + } + }, + { + "if": "language:sat=yes", + "ifnot": "language:sat=", + "searchTerms": { + "*": [ + "sat" + ] + }, + "then": { + "ru": "Сантали", + "ca": "santali", + "da": "Santali", + "de": "Santali", + "en": "Santali", + "eo": "santala lingvo", + "es": "idioma santalí", + "fi": "Santalin kieli", + "fr": "santâlî", + "gl": "lingua santali", + "id": "Bahasa Santali", + "it": "santali", + "ja": "サンタル語", + "nb_NO": "Santali", + "nl": "Santali", + "pl": "język santali", + "pt": "língua santali", + "sv": "santhali", + "zh_Hant": "桑塔利語" + } + }, + { + "if": "language:ii=yes", + "ifnot": "language:ii=", + "searchTerms": { + "*": [ + "ii" + ] + }, + "then": { + "nl": "Yi", + "ru": "Носу", + "ca": "yi", + "de": "Nuosu-Sprache", + "en": "Nuosu", + "eo": "Siĉuana jia lingvo", + "es": "Idioma nuosu", + "fi": "Sichuanin-yi", + "fr": "nuosu", + "gl": "Lingua nuosu", + "hu": "szecsuani ji", + "it": "lingua Nuosu", + "ja": "四川彝語", + "pl": "język nuosu", + "pt": "Língua Nuosu" + } + }, + { + "if": "language:kbp=yes", + "ifnot": "language:kbp=", + "searchTerms": { + "*": [ + "kbp" + ] + }, + "then": { + "de": "Kabiyé", + "en": "Kabiye", + "ca": "kabiye", + "da": "Kabiye", + "eo": "Kabijea", + "es": "kabiyé", + "fr": "kabiyé", + "gl": "Lingua kabiye", + "id": "Bahasa Kabiye", + "ja": "カビエ語", + "nl": "Kabiye", + "pl": "Kabiyé", + "pt": "Língua kabiyé", + "ru": "Кабийе" + } + }, + { + "if": "language:kab=yes", + "ifnot": "language:kab=", + "searchTerms": { + "*": [ + "kab" + ] + }, + "then": { + "ca": "cabil", + "da": "Kabylsk", + "de": "Kabylisch", + "en": "Kabyle", + "eo": "kabila lingvo", + "es": "cabilio", + "fi": "Kabyyli", + "fr": "kabyle", + "gl": "Lingua cabilia", + "hu": "kabil", + "it": "cabilo", + "ja": "カビル語", + "nb_NO": "Kabylsk", + "nl": "Kabylisch", + "pl": "Język kabylski", + "pt": "Língua cabila", + "pt_BR": "Língua cabila", + "ru": "кабильский язык", + "sv": "kabyliska", + "zh_Hant": "卡拜爾語" + } + }, + { + "if": "language:kg=yes", + "ifnot": "language:kg=", + "searchTerms": { + "*": [ + "kg" + ] + }, + "then": { + "nb_NO": "Kongo", + "nl": "Kongo", + "en": "Kongo", + "de": "Kikongo", + "pt": "Kikongo", + "ca": "llengües kongo", + "da": "Kikongo", + "eo": "konga lingvo", + "es": "kikongo", + "fi": "Kongon kieli", + "fr": "kikongo", + "gl": "Lingua congo", + "hu": "kikongo", + "id": "Bahasa Kongo", + "it": "kongo", + "ja": "コンゴ語", + "pl": "Język kongo", + "ru": "конго", + "sv": "kikongo" + } + }, + { + "if": "language:krc=yes", + "ifnot": "language:krc=", + "searchTerms": { + "*": [ + "krc" + ] + }, + "then": { + "ca": "karatxai-balkar", + "de": "Karatschai-Balkarisch", + "en": "Karachay-Balkar", + "eo": "karaĉaja-balkara lingvo", + "es": "idioma karachayo-bálkaro", + "fi": "Karatšai-balkaarin kieli", + "fr": "karatchaï-balkar", + "gl": "Lingua carachaio-bálcara", + "hu": "karacsáj-balkár", + "id": "Bahasa Karachai-Balkar", + "it": "caraciai-balcaro", + "ja": "カラチャイ・バルカル語", + "nb_NO": "karatsjajbalkarsk", + "nl": "Karatsjai-Balkarisch", + "pl": "Język karaczajsko-bałkarski", + "pt": "Língua carachaio-bálcara", + "ru": "карачаево-балкарский язык", + "sv": "karatjajbalkariska" + } + }, + { + "if": "language:tum=yes", + "ifnot": "language:tum=", + "searchTerms": { + "*": [ + "tum" + ] + }, + "then": { + "sv": "tumbuka", + "ca": "tumbuka", + "de": "Tumbuka", + "en": "Tumbuka", + "eo": "tumbuka lingvo", + "es": "Idioma tumbuka", + "fi": "Tumbuka", + "fr": "tumbuka", + "gl": "Lingua tumbuka", + "hu": "tumbuka", + "it": "tumbuka", + "ja": "トゥンブカ語", + "nl": "Tumbuka", + "pl": "Język tumbuka", + "pt": "Língua tumbuka", + "ru": "Тумбука" + } + }, + { + "if": "language:tsg=yes", + "ifnot": "language:tsg=", + "searchTerms": { + "*": [ + "tsg" + ] + }, + "then": { + "en": "Tausug", + "fi": "Tausug", + "fr": "tausug", + "id": "Bahasa Suluk", + "ja": "タウスグ語", + "nb_NO": "Tausug (språk)", + "pl": "język tausug", + "pt": "Língua tausug", + "es": "idioma joloano" + } + }, + { + "if": "language:shi=yes", + "ifnot": "language:shi=", + "searchTerms": { + "*": [ + "shi" + ] + }, + "then": { + "ca": "chelja", + "de": "Taschelhit", + "en": "Shilha", + "eo": "ŝelha lingvo", + "es": "chilha", + "fi": "Tašelhit", + "gl": "Lingua shilha", + "it": "tashelhit", + "ja": "シルハ語", + "nl": "Chleuh", + "pl": "Język tashelhiyt", + "pt": "Tachelhit", + "ru": "Шильхские языки", + "sv": "tachelhit", + "zh_Hans": "施卢赫语", + "zh_Hant": "施盧赫語", + "fr": "chleuh" + } + }, + { + "if": "language:sn=yes", + "ifnot": "language:sn=", + "searchTerms": { + "*": [ + "sn" + ] + }, + "then": { + "ca": "xona", + "en": "Shona", + "de": "Shona", + "nl": "Shona", + "eo": "Ŝona lingvo", + "es": "shona", + "fi": "Šonan kieli", + "fr": "shona", + "gl": "Lingua shona", + "hu": "sona", + "id": "Bahasa Shona", + "it": "shona", + "ja": "ショナ語", + "nb_NO": "shona", + "pl": "Język shona", + "pt": "Língua chona", + "ru": "шона", + "sv": "shona", + "zh_Hant": "修納語" + }, + "priorityIf": "_country~((^|;)zw($|;))" + }, + { + "if": "language:tpi=yes", + "ifnot": "language:tpi=", + "searchTerms": { + "*": [ + "tpi" + ] + }, + "then": { + "ca": "tok pisin", + "da": "Tok pisin", + "de": "Tok Pisin", + "en": "Tok Pisin", + "eo": "Tok-Pisino", + "es": "tok pisin", + "fi": "tok-pisin", + "fr": "tok pisin", + "gl": "Tok pisin", + "hu": "tok piszin", + "id": "Bahasa Tok Pisin", + "it": "tok pisin", + "ja": "トク・ピシン", + "nb_NO": "tok pisin", + "nl": "Tok Pisin", + "pl": "tok pisin", + "pt": "Tok Pisin", + "ru": "ток-писин", + "sv": "tok pisin" + } + }, + { + "if": "language:rif=yes", + "ifnot": "language:rif=", + "searchTerms": { + "*": [ + "rif" + ] + }, + "then": { + "ca": "rifeny", + "de": "Tarifit", + "en": "Tarifit", + "es": "rifeño", + "fi": "Tarifit", + "fr": "rifain", + "gl": "Lingua rifeña", + "it": "tarifit", + "ja": "リーフ語", + "nl": "Riffijns", + "pl": "Język tarifit", + "pt": "Língua rifenha", + "ru": "Рифский язык", + "zh_Hans": "里夫语", + "zh_Hant": "里夫語" + } + }, + { + "if": "language:tyv=yes", + "ifnot": "language:tyv=", + "searchTerms": { + "*": [ + "tyv" + ] + }, + "then": { + "ca": "tuvinià", + "de": "Tuwinisch", + "en": "Tuvan", + "eo": "tuva lingvo", + "es": "idioma tuvano", + "fi": "Tuvan kieli", + "fr": "touvain", + "gl": "Lingua tuvaniana", + "hu": "tuvai", + "id": "Bahasa Tuva", + "it": "tuvano", + "ja": "トゥヴァ語", + "nb_NO": "tuvinsk", + "nl": "Toevaans", + "pl": "Język tuwiński", + "pt": "Língua tuviniana", + "pt_BR": "Língua tuviniana", + "ru": "тувинский язык", + "sv": "tuvinska" + } + }, + { + "if": "language:ti=yes", + "ifnot": "language:ti=", + "searchTerms": { + "*": [ + "ti" + ] + }, + "then": { + "sl": "Tigrajščina", + "sv": "tigrinska", + "de": "Tigrinya", + "en": "Tigrinya", + "nl": "Tigrinya", + "ca": "tigrinya", + "da": "Tigrinsk", + "eo": "tigraja lingvo", + "es": "idioma tigriña", + "fi": "tigrinja", + "fr": "tigrigna", + "gl": "Lingua tigriña", + "hu": "tigrinya", + "id": "Bahasa Tigrinya", + "it": "tigrino", + "ja": "ティグリニャ語", + "nb_NO": "tigrinja", + "pl": "Język tigrinia", + "pt": "Língua tigrínia", + "ru": "тигринья" + }, + "priorityIf": "_country~((^|;)er($|;))" + }, + { + "if": "language:tet=yes", + "ifnot": "language:tet=", + "searchTerms": { + "*": [ + "tet" + ] + }, + "then": { + "en": "Tetum", + "nl": "Tetun", + "de": "Tetum", + "ca": "tetum", + "da": "Tetum", + "eo": "tetuna lingvo", + "es": "Idioma tetun", + "fi": "Tetumin kieli", + "fr": "tétoum", + "gl": "Tetún", + "hu": "tetum", + "id": "Tetum", + "it": "tetum", + "ja": "テトゥン語", + "nb_NO": "tetum", + "pl": "język tetum", + "pt": "língua tétum", + "ru": "тетум", + "sv": "tetum" + } + }, + { + "if": "language:scn=yes", + "ifnot": "language:scn=", + "searchTerms": { + "*": [ + "scn" + ] + }, + "then": { + "en": "Sicilian", + "fr": "sicilien", + "de": "Sizilianisch", + "nl": "Siciliaans", + "ca": "sicilià", + "eo": "sicilia lingvo", + "es": "siciliano", + "fi": "sisilia", + "gl": "Lingua siciliana", + "hu": "szicíliai", + "id": "Bahasa Sisilia", + "it": "siciliano", + "ja": "シチリア語", + "nb_NO": "siciliansk", + "pl": "Język sycylijski", + "pt": "Língua siciliana", + "pt_BR": "Língua siciliana", + "ru": "сицилийский язык", + "sv": "sicilianska", + "da": "siciliansk" + } + }, + { + "if": "language:lmo=yes", + "ifnot": "language:lmo=", + "searchTerms": { + "*": [ + "lmo" + ] + }, + "then": { + "en": "Lombard", + "ca": "llombard", + "es": "lombardo", + "fr": "lombard", + "pl": "Język lombardzki", + "da": "Lombardisk", + "de": "Lombardisch", + "eo": "lombarda lingvo", + "fi": "Lombardin kieli", + "gl": "Lingua lombarda", + "id": "Bahasa Lombard", + "it": "lingua lombarda", + "ja": "ロンバルド語", + "nb_NO": "lombardisk", + "nl": "Lombardisch", + "pt": "Língua lombarda", + "ru": "ломбардский язык", + "sv": "lombardiska", + "hu": "lombard" + } + }, + { + "if": "language:ilo=yes", + "ifnot": "language:ilo=", + "searchTerms": { + "*": [ + "ilo" + ] + }, + "then": { + "en": "Ilocano", + "pt": "Ilocano", + "ca": "ilocano", + "de": "Ilokano", + "eo": "iloka lingvo", + "fi": "Iloko", + "fr": "ilocano", + "gl": "Lingua ilocana", + "hu": "ilokano", + "id": "Bahasa Iloko", + "it": "ilocano", + "ja": "イロカノ語", + "nb_NO": "ilokano", + "nl": "Ilokano", + "pl": "język iloko", + "ru": "Илоканский язык", + "sv": "ilokano", + "es": "ilocano", + "da": "ilokansk" + } + }, + { + "if": "language:sm=yes", + "ifnot": "language:sm=", + "searchTerms": { + "*": [ + "sm" + ] + }, + "then": { + "en": "Samoan", + "hu": "szamoai", + "it": "samoano", + "ca": "samoà", + "de": "Samoanisch", + "eo": "samoa lingvo", + "es": "samoano", + "fi": "samoan kieli", + "fr": "samoan", + "gl": "Lingua samoana", + "id": "Bahasa Samoa", + "ja": "サモア語", + "nb_NO": "samoansk", + "nl": "Samoaans", + "pl": "język samoański", + "pt": "Língua samoana", + "ru": "самоанский язык", + "sv": "samoanska" + }, + "priorityIf": "_country~((^|;)ws($|;))" + }, + { + "if": "language:ss=yes", + "ifnot": "language:ss=", + "searchTerms": { + "*": [ + "ss" + ] + }, + "then": { + "ca": "swazi", + "de": "Siswati", + "en": "Swazi", + "eo": "svazia lingvo", + "es": "suazi", + "fi": "Swazin kieli", + "fr": "swati", + "gl": "Lingua suazi", + "hu": "szvázi", + "id": "Bahasa Swati", + "it": "swati", + "ja": "スワジ語", + "nb_NO": "swazi", + "nl": "Swazi", + "pl": "Język suazi", + "pt": "língua suázi", + "pt_BR": "língua suázi", + "ru": "свати", + "sv": "siswati", + "zh_Hans": "斯威士语", + "zh_Hant": "史瓦濟語" + }, + "priorityIf": "_country~((^|;)sz($|;))|((^|;)za($|;))" + }, + { + "if": "language:mni=yes", + "ifnot": "language:mni=", + "searchTerms": { + "*": [ + "mni" + ] + }, + "then": { + "de": "Meitei", + "en": "Meitei", + "nl": "Meitei", + "ca": "manipuri", + "eo": "manipura lingvo", + "es": "meitei", + "fi": "Manipurin kieli", + "fr": "meitei", + "id": "Bahasa Manipuri", + "it": "manipuri", + "ja": "マニプリ語", + "nb_NO": "Meitei-lon", + "pl": "Język manipuri", + "pt": "Língua manipuri", + "ru": "манипури", + "sv": "meitei", + "zh_Hans": "曼尼普尔语", + "zh_Hant": "曼尼普爾語", + "gl": "Lingua meitei" + } + }, + { + "if": "language:kv=yes", + "ifnot": "language:kv=", + "searchTerms": { + "*": [ + "kv" + ] + }, + "then": { + "de": "Komi", + "en": "Komi", + "ca": "komi", + "da": "komi", + "eo": "komia lingvo", + "es": "komi", + "fi": "komin kieli", + "fr": "komi", + "gl": "lingua komi", + "hu": "komi", + "id": "Bahasa Komi", + "it": "comi", + "ja": "コミ語", + "nb_NO": "syrjensk", + "nl": "Zurjeens", + "pl": "język komi", + "pt": "língua komi", + "ru": "коми язык", + "sv": "komi" + } + }, + { + "if": "language:ku=yes", + "ifnot": "language:ku=", + "searchTerms": { + "*": [ + "ku" + ] + }, + "then": { + "ca": "kurd", + "da": "kurdisk", + "de": "Kurdisch", + "en": "Kurdish", + "eo": "kurda lingvo", + "es": "kurdo", + "fi": "kurdi", + "fr": "kurde", + "hu": "kurd", + "id": "Bahasa Kurdi", + "it": "curdo", + "ja": "クルド語", + "nl": "Koerdisch", + "pl": "język kurdyjski", + "pt": "língua curda", + "pt_BR": "língua curda", + "ru": "курдские языки", + "sl": "Kurdski jeziki", + "sv": "kurdiska", + "zh_Hant": "庫德語", + "gl": "lingua kurda", + "nb_NO": "kurdisk", + "zh_Hans": "库尔德语" + }, + "priorityIf": "_country~((^|;)iq($|;))" + }, + { + "if": "language:lad=yes", + "ifnot": "language:lad=", + "searchTerms": { + "*": [ + "lad" + ] + }, + "then": { + "ca": "judeocastellà", + "da": "Ladino", + "en": "Judaeo-Spanish", + "eo": "judhispana lingvo", + "es": "judeoespañol", + "fi": "Ladinon kieli", + "fr": "judéo-espagnol", + "gl": "Lingua xudeu-española", + "hu": "ladino", + "id": "Bahasa Ladino", + "it": "giudeo-spagnolo", + "ja": "ラディーノ語", + "nb_NO": "jødespansk", + "nl": "Ladino", + "pl": "ladino", + "pt": "judeu-espanhol", + "pt_BR": "Judeu-espanhol", + "ru": "сефардский язык", + "sv": "ladino", + "de": "Sephardisch" + } + }, + { + "if": "language:ts=yes", + "ifnot": "language:ts=", + "searchTerms": { + "*": [ + "ts" + ] + }, + "then": { + "zh_Hans": "聪加语", + "zh_Hant": "聰加語", + "en": "Tsonga", + "ca": "tsonga", + "nl": "Tsonga", + "da": "tsonga", + "de": "Xitsonga", + "eo": "conga lingvo", + "es": "tsonga", + "fi": "Tsongan kieli", + "fr": "tsonga", + "gl": "Lingua tsonga", + "hu": "conga", + "id": "Bahasa Tsonga", + "it": "tsonga", + "ja": "ツォンガ語", + "nb_NO": "tsonga", + "pl": "Język tsonga", + "pt": "língua tsonga", + "pt_BR": "língua tsonga", + "ru": "тсонга", + "sv": "tsonga" + }, + "priorityIf": "_country~((^|;)za($|;))|((^|;)zw($|;))" + }, + { + "if": "language:st=yes", + "ifnot": "language:st=", + "searchTerms": { + "*": [ + "st" + ] + }, + "then": { + "fr": "sotho du Sud", + "ca": "sesotho", + "da": "Sesotho", + "de": "Sesotho", + "en": "Sesotho", + "eo": "sota lingvo", + "es": "sesotho", + "fi": "Eteläsothon kieli", + "gl": "Lingua sotho", + "hu": "déli szoto", + "id": "Bahasa Sesotho", + "it": "sotho del sud", + "ja": "ソト語", + "nb_NO": "sotho", + "nl": "Zuid-Sotho", + "pl": "język sotho", + "pt": "língua soto do sul", + "pt_BR": "língua soto", + "ru": "сесото", + "sv": "sesotho" + }, + "priorityIf": "_country~((^|;)ls($|;))|((^|;)za($|;))|((^|;)zw($|;))" + }, + { + "if": "language:lij=yes", + "ifnot": "language:lij=", + "searchTerms": { + "*": [ + "lij" + ] + }, + "then": { + "hu": "ligur", + "id": "Bahasa Liguria", + "it": "lingua ligure", + "ja": "リグリア語", + "nb_NO": "ligurisk", + "pl": "język liguryjski", + "pt": "Língua lígure", + "ru": "лигурский язык", + "sl": "Ligurščina", + "sv": "liguriska", + "ca": "lígur", + "de": "Ligurisch", + "en": "Ligurian", + "nl": "Ligurisch", + "fr": "ligure", + "da": "ligurisk", + "eo": "ligura lingvo", + "es": "ligur", + "fi": "liguuri", + "gl": "Lingua lígur" + } + }, + { + "if": "language:mai=yes", + "ifnot": "language:mai=", + "searchTerms": { + "*": [ + "mai" + ] + }, + "then": { + "ca": "maithili", + "da": "Maithili", + "de": "Maithili", + "en": "Maithili", + "eo": "maitila lingvo", + "es": "Maithili", + "fi": "Maithilin kieli", + "fr": "maïthili", + "gl": "Lingua maithili", + "hu": "Maithili", + "id": "Bahasa Maithili", + "it": "maithili", + "ja": "マイティリー語", + "nb_NO": "Maithili", + "nl": "Maithili", + "pl": "język maithili", + "pt": "Língua maithili", + "pt_BR": "Língua maithili", + "ru": "майтхили", + "sv": "maithili", + "zh_Hans": "迈蒂利语" + } + }, + { + "if": "language:tvl=yes", + "ifnot": "language:tvl=", + "searchTerms": { + "*": [ + "tvl" + ] + }, + "then": { + "ca": "tuvalià", + "de": "Tuvaluisch", + "en": "Tuvaluan", + "eo": "tuvala lingvo", + "es": "tuvaluano", + "fi": "tuvalun kieli", + "fr": "tuvaluan", + "gl": "Lingua tuvalesa", + "hu": "tuvalui", + "id": "Bahasa Tuvalu", + "it": "lingua tuvaluana", + "ja": "ツバル語", + "nb_NO": "tuvalsk", + "nl": "Tuvaluaans", + "pl": "Język tuvalu", + "pt": "Língua tuvaluana", + "pt_BR": "Língua tuvaluana", + "ru": "тувалу", + "sv": "tuvaluanska" + } + }, + { + "if": "language:tn=yes", + "ifnot": "language:tn=", + "searchTerms": { + "*": [ + "tn" + ] + }, + "then": { + "es": "setsuana", + "fi": "Tswanan kieli", + "fr": "tswana", + "gl": "Lingua tswana", + "hu": "csvana", + "id": "Bahasa Tswana", + "it": "tswana", + "ja": "ツワナ語", + "nb_NO": "setswana", + "pl": "Język tswana", + "pt": "língua tswana", + "pt_BR": "língua tswana", + "ru": "тсвана", + "sv": "setswana", + "zh_Hant": "札那語", + "en": "Tswana", + "nl": "Tswana", + "ca": "tswana", + "da": "Setswana", + "de": "Setswana", + "eo": "cvana lingvo" + }, + "priorityIf": "_country~((^|;)za($|;))|((^|;)zw($|;))" + }, + { + "if": "language:wa=yes", + "ifnot": "language:wa=", + "searchTerms": { + "*": [ + "wa" + ] + }, + "then": { + "en": "Walloon", + "ca": "való", + "da": "vallonsk", + "de": "Wallonisch", + "eo": "valona lingvo", + "es": "valón", + "fi": "Valloni", + "fr": "wallon", + "gl": "Lingua valoa", + "hu": "vallon", + "id": "Bahasa Walloon", + "it": "vallone", + "ja": "ワロン語", + "nb_NO": "vallonsk", + "nl": "Waals", + "pl": "język waloński", + "pt": "valão", + "ru": "валлонский язык", + "sv": "vallonska" + } + }, + { + "if": "language:nan=yes", + "ifnot": "language:nan=", + "searchTerms": { + "*": [ + "nan" + ] + }, + "then": { + "de": "Min Nan", + "eo": "minnana lingvo", + "es": "chino min nan", + "gl": "lingua min nam", + "id": "Min Selatan", + "it": "min nan", + "ja": "閩南語", + "nb_NO": "minnan", + "nl": "Minnanyu", + "pl": "język minnański", + "pt": "Min Nan", + "pt_BR": "Min nan", + "ru": "южноминьский язык", + "sv": "minnan", + "ca": "min nan", + "en": "Southern Min", + "fr": "minnan", + "zh_Hant": "閩南語", + "da": "Minnan", + "fi": "Minnan" + } + }, + { + "if": "language:pih=yes", + "ifnot": "language:pih=", + "searchTerms": { + "*": [ + "pih" + ] + }, + "then": { + "ca": "pitcairnès", + "da": "Pitkairnsk", + "de": "Pitcairn-Englisch", + "en": "Pitkern", + "eo": "pitkarna lingvo", + "es": "pitcairnés", + "fi": "Pitcairnin kieli", + "fr": "pitcairnais", + "gl": "Pitcairnés", + "it": "pitcairnese", + "ja": "ピトケアン語", + "nb_NO": "pitkairnsk", + "nl": "Pitcairnees", + "pl": "Język pitkarnyjski", + "pt": "pitcairnes", + "pt_BR": "Língua pitcairnesa", + "ru": "питкэрнский язык", + "sv": "pitcairnesiska", + "hu": "pitcairni" + } + }, + { + "if": "language:lld=yes", + "ifnot": "language:lld=", + "searchTerms": { + "*": [ + "lld" + ] + }, + "then": { + "es": "ladino", + "it": "ladino", + "en": "Ladin", + "da": "Ladin", + "de": "Ladinisch", + "fr": "ladin", + "ca": "ladí", + "eo": "ladina lingvo", + "fi": "Ladinin kieli", + "gl": "Lingua ladina", + "id": "Bahasa Ladin", + "ja": "ラディン語", + "nb_NO": "ladinsk", + "nl": "Ladinisch", + "pl": "Język ladyński", + "pt": "língua ladino-dolomítica", + "ru": "ладинский язык", + "sv": "ladinska", + "zh_Hans": "拉迪恩语", + "zh_Hant": "拉迪恩語", + "hu": "ladin" + } + }, + { + "if": "language:ty=yes", + "ifnot": "language:ty=", + "searchTerms": { + "*": [ + "ty" + ] + }, + "then": { + "ca": "tahitià", + "de": "Tahitianisch", + "en": "Tahitian", + "eo": "tahitia lingvo", + "es": "tahitiano", + "fi": "Tahitin kieli", + "fr": "tahitien", + "gl": "Lingua tahitiana", + "hu": "tahiti", + "id": "Bahasa Tahiti", + "it": "tahitiano", + "ja": "タヒチ語", + "nb_NO": "tahitisk", + "nl": "Tahitiaans", + "pl": "język tahitański", + "pt": "taitiano", + "ru": "таитянский язык", + "sv": "tahitiska", + "zh_Hans": "塔希提语", + "zh_Hant": "大溪地語" + } + }, + { + "if": "language:wo=yes", + "ifnot": "language:wo=", + "searchTerms": { + "*": [ + "wo" + ] + }, + "then": { + "ca": "wòlof", + "da": "Wolof", + "de": "Wolof", + "en": "Wolof", + "eo": "volofa lingvo", + "es": "wólof", + "fi": "wolofin kieli", + "fr": "wolof", + "gl": "lingua wolof", + "hu": "volof", + "id": "Bahasa Wolof", + "it": "wolof", + "ja": "ウォロフ語", + "nb_NO": "wolof", + "nl": "Wolof", + "pl": "język wolof", + "pt": "Língua wolof", + "ru": "волоф", + "sv": "wolof" + }, + "priorityIf": "_country~((^|;)sn($|;))" + }, + { + "if": "language:war=yes", + "ifnot": "language:war=", + "searchTerms": { + "*": [ + "war" + ] + }, + "then": { + "en": "Waray", + "fr": "waray-waray", + "ca": "waray-waray", + "de": "Wáray-Wáray", + "eo": "varaja lingvo", + "fi": "waray-waray", + "gl": "Lingua waray-waray", + "hu": "waray", + "id": "Bahasa Waray-waray", + "it": "waray-waray", + "ja": "ワライ語", + "nb_NO": "waray-waray", + "nl": "Waray-Waray", + "pl": "język warajski", + "pt": "língua waray-waray", + "pt_BR": "Língua waray-waray", + "ru": "варайский язык", + "sv": "waray-waray", + "es": "samareño", + "da": "varajansk" + } + }, + { + "if": "language:lbe=yes", + "ifnot": "language:lbe=", + "searchTerms": { + "*": [ + "lbe" + ] + }, + "then": { + "nb_NO": "lakisk", + "pl": "Język lakijski", + "pt": "Língua lak", + "ru": "лакский язык", + "nl": "Lak", + "en": "Lak", + "fi": "Lakin kieli", + "ca": "lak", + "de": "Lakisch", + "eo": "laka lingvo", + "es": "idioma lak", + "fr": "lak", + "gl": "Lingua lak", + "id": "Bahasa Lak", + "it": "lak", + "ja": "ラク語" + } + }, + { + "if": "language:ltg=yes", + "ifnot": "language:ltg=", + "searchTerms": { + "*": [ + "ltg" + ] + }, + "then": { + "en": "Latgalian", + "ca": "latgalià", + "da": "Letgallisk", + "de": "Lettgallisch", + "eo": "latgala lingvo", + "es": "Idioma latgaliano", + "fr": "latgalien", + "gl": "Lingua latgaliá", + "id": "Bahasa Latgalia", + "it": "letgallo", + "ja": "ラトガリア語", + "nl": "Letgaals", + "pl": "język łatgalski", + "pt": "Língua latgália", + "ru": "латгальский язык", + "sv": "lettgalliska", + "fi": "latgallin kieli", + "hu": "latgal" + } + }, + { + "if": "language:mad=yes", + "ifnot": "language:mad=", + "searchTerms": { + "*": [ + "mad" + ] + }, + "then": { + "de": "Madura", + "id": "Madura", + "ca": "madurès", + "en": "Madurese", + "es": "madurés", + "fi": "Maduran kieli", + "fr": "madurais", + "gl": "Lingua maduresa", + "it": "madurese", + "ja": "マドゥラ語", + "nl": "Madoerees", + "pl": "język madurski", + "pt": "Língua maduresa", + "ru": "Мадурский язык", + "sv": "maduresiska", + "eo": "madura lingvo" + } + }, + { + "if": "language:mh=yes", + "ifnot": "language:mh=", + "searchTerms": { + "*": [ + "mh" + ] + }, + "then": { + "en": "Marshallese", + "ca": "marshallès", + "de": "Marshallesisch", + "eo": "marŝala lingvo", + "es": "marshalés", + "fi": "Marshallin kieli", + "fr": "marshallais", + "gl": "Lingua marshalesa", + "hu": "Marshall-szigeteki", + "id": "Bahasa Marshall", + "it": "marshallese", + "ja": "マーシャル語", + "nb_NO": "marshallesisk", + "nl": "Marshallees", + "pl": "Język marszalski", + "pt": "Língua marshalesa", + "pt_BR": "Língua marshalesa", + "ru": "маршалльский язык", + "sv": "marshallesiska" + }, + "priorityIf": "_country~((^|;)mh($|;))" + }, + { + "if": "language:mo=yes", + "ifnot": "language:mo=", + "searchTerms": { + "*": [ + "mo" + ] + }, + "then": { + "en": "Moldovan", + "fr": "moldave", + "ca": "moldau", + "hu": "moldáv", + "it": "moldavo", + "de": "Moldawisch", + "eo": "moldava lingvo", + "es": "moldavo", + "fi": "Moldavian kieli", + "ja": "モルドバ語", + "nb_NO": "moldovsk", + "nl": "Moldavisch", + "pl": "Język mołdawski", + "pt": "Língua moldávia", + "pt_BR": "língua moldávia", + "ru": "молдавский язык", + "sl": "Moldavščina", + "sv": "moldaviska", + "gl": "lingua moldova", + "zh_Hant": "摩爾多瓦語" + } + }, + { + "if": "language:yrk=yes", + "ifnot": "language:yrk=", + "searchTerms": { + "*": [ + "yrk" + ] + }, + "then": { + "ca": "iurac", + "de": "Nenzisch", + "en": "Nenets", + "eo": "neneca lingvo", + "es": "nenezo", + "fi": "nenetsi", + "fr": "nénètse", + "id": "Bahasa-bahasa Nenets", + "it": "lingua neneziana", + "ja": "ネネツ語", + "nb_NO": "nenetsisk", + "nl": "Nenets", + "pl": "język nieniecki", + "ru": "ненецкий язык", + "sv": "nentsiska", + "hu": "nyenyec" + } + }, + { + "if": "language:chn=yes", + "ifnot": "language:chn=", + "searchTerms": { + "*": [ + "chn" + ] + }, + "then": { + "ca": "chinook jargon", + "de": "Chinook Wawa", + "en": "Chinook Jargon", + "eo": "ĉinuka piĝino", + "fr": "chinook", + "ja": "チヌーク・ジャーゴン", + "nb_NO": "Chinook jargon", + "nl": "Chinook Jargon", + "pt": "Jargão chinook", + "ru": "чинукский жаргон", + "zh_Hans": "奇努克混合语", + "zh_Hant": "支努幹混合語", + "fi": "chinook-jargon" + } + }, + { + "if": "language:kr=yes", + "ifnot": "language:kr=", + "searchTerms": { + "*": [ + "kr" + ] + }, + "then": { + "ru": "Канури", + "ca": "kanuri", + "de": "Kanuri", + "en": "Kanuri", + "eo": "kanura lingvo", + "es": "kanuri", + "fi": "Kanurin kieli", + "fr": "kanouri", + "hu": "kanuri", + "id": "Bahasa Kanuri", + "it": "kanuri", + "ja": "カヌリ語", + "nl": "Kanuri", + "pl": "Język kanuri", + "pt": "Língua kanuri", + "sv": "kanuri", + "gl": "Lingua kanuri" + } + }, + { + "if": "language:tw=yes", + "ifnot": "language:tw=", + "searchTerms": { + "*": [ + "tw" + ] + }, + "then": { + "ca": "twi", + "da": "Twi", + "de": "Twi", + "en": "Twi", + "eo": "Tvia", + "es": "idioma twi", + "fi": "twi", + "fr": "twi", + "gl": "Lingua twi", + "hu": "tvi", + "id": "Bahasa Twi", + "it": "twi", + "ja": "トウィ語", + "nb_NO": "twi", + "nl": "Twi", + "pl": "Język twi", + "pt": "Língua twi", + "pt_BR": "Língua twi", + "ru": "чви", + "sv": "twi (språk)" + } + }, + { + "if": "language:shn=yes", + "ifnot": "language:shn=", + "searchTerms": { + "*": [ + "shn" + ] + }, + "then": { + "de": "Shan", + "en": "Shan", + "nl": "Shan", + "es": "shan", + "fi": "Shanin kieli", + "fr": "shan", + "gl": "Lingua shan", + "id": "Bahasa Shan", + "it": "lingua shan", + "ja": "シャン語", + "pl": "język szan", + "pt": "língua shan", + "pt_BR": "Língua shan", + "ru": "шанский язык", + "sv": "shan", + "zh_Hans": "掸语", + "zh_Hant": "撣語", + "eo": "ŝana lingvo" + } + }, + { + "if": "language:vls=yes", + "ifnot": "language:vls=", + "searchTerms": { + "*": [ + "vls" + ] + }, + "then": { + "sv": "västflamländska", + "ca": "flamenc occidental", + "da": "vestflamsk", + "de": "Westflämisch", + "en": "West Flemish", + "eo": "okcidentflandra lingvo", + "es": "flamenco occidental", + "fi": "länsiflaami", + "fr": "flamand occidental", + "gl": "Flamengo occidental", + "id": "Flam Barat", + "it": "dialetto fiammingo occidentale", + "ja": "西フラマン語", + "nb_NO": "vestflamsk", + "nl": "West-Vlaams", + "pl": "dialekt zachodnioflamandzki", + "ru": "западнофламандская группа диалектов", + "zh_Hans": "西佛兰德语", + "zh_Hant": "西佛蘭德語" + } + }, + { + "if": "language:pag=yes", + "ifnot": "language:pag=", + "searchTerms": { + "*": [ + "pag" + ] + }, + "then": { + "nl": "Pangasinan", + "ca": "pangasinan", + "de": "Pangasinensisch", + "en": "Pangasinan", + "eo": "pangasina lingvo", + "fi": "Pangasinanin kieli", + "fr": "pangasinan", + "gl": "Lingua pangasinesa", + "hu": "pangasinan", + "id": "Bahasa Pangasinan", + "it": "pangasinan", + "ja": "パンガシナン語", + "pl": "Język pangasinan", + "pt": "Língua pangasinesa", + "ru": "Пангасинанский язык", + "sv": "pangasinan", + "zh_Hans": "邦阿西楠语", + "es": "pangasinense", + "da": "pangasinansk", + "nb_NO": "pangasinansk" + } + }, + { + "if": "language:nso=yes", + "ifnot": "language:nso=", + "searchTerms": { + "*": [ + "nso" + ] + }, + "then": { + "ca": "pedi", + "de": "Nord-Sotho", + "en": "Northern Sotho", + "eo": "peda lingvo", + "es": "Sesotho sa leboa", + "fi": "Pohjoissothon kieli", + "fr": "sotho du Nord", + "gl": "Lingua sotho do norte", + "hu": "északi szoto", + "id": "Bahasa Sepedi", + "it": "sotho del nord", + "ja": "北ソト語", + "nb_NO": "nordsotho", + "nl": "Noord-Sotho", + "pl": "język północny sotho", + "pt": "língua soto do norte", + "pt_BR": "língua soto do norte", + "ru": "северный сото", + "sv": "nordsotho" + } + }, + { + "if": "language:ln=yes", + "ifnot": "language:ln=", + "searchTerms": { + "*": [ + "ln" + ] + }, + "then": { + "ca": "lingala", + "da": "lingala", + "de": "Lingala", + "en": "Lingala", + "eo": "lingala lingvo", + "es": "lingala", + "fi": "Lingala", + "fr": "lingala", + "gl": "Lingua lingala", + "hu": "lingala", + "id": "Bahasa Lingala", + "it": "lingala", + "ja": "リンガラ語", + "nb_NO": "lingala", + "nl": "Lingala", + "pl": "język lingala", + "pt": "Língua lingala", + "sv": "lingala", + "zh_Hant": "林格拉語", + "ru": "лингала" + } + }, + { + "if": "language:zea=yes", + "ifnot": "language:zea=", + "searchTerms": { + "*": [ + "zea" + ] + }, + "then": { + "en": "Zeelandic", + "ca": "zelandès", + "de": "Seeländisch", + "eo": "zelanda lingvo", + "es": "zelandés", + "fr": "zélandais", + "gl": "Lingua zelandesa", + "it": "zelandese", + "ja": "ゼーランド語", + "nb_NO": "zeeuws", + "nl": "Zeeuws", + "pl": "dialekt zelandzki", + "pt": "zeêuws", + "ru": "зеландский диалект", + "sv": "zeeländska", + "zh_Hans": "西兰语", + "zh_Hant": "西蘭語" + } + }, + { + "if": "language:tay=yes", + "ifnot": "language:tay=", + "searchTerms": { + "*": [ + "tay" + ] + }, + "then": { + "de": "Atayal", + "en": "Atayal", + "ca": "atayal", + "es": "lengua atayal", + "fr": "atayal", + "gl": "Lingua atayal", + "it": "lingua atayal", + "ja": "タイヤル語", + "nl": "Atayal", + "pt": "Língua atayal", + "ru": "атаяльский язык", + "zh_Hans": "泰雅语", + "zh_Hant": "泰雅語", + "fi": "Atayalin kieli", + "id": "Bahasa Atayal", + "hu": "atajal" + } + }, + { + "if": "language:wuu=yes", + "ifnot": "language:wuu=", + "searchTerms": { + "*": [ + "wuu" + ] + }, + "then": { + "it": "wu", + "ja": "呉語", + "nb_NO": "wu", + "pl": "język wu", + "pt": "Língua wu", + "ru": "у", + "sv": "wu", + "zh_Hant": "吳語", + "nl": "Wu", + "de": "Wu", + "ca": "wu", + "en": "Wu Chinese", + "eo": "vua lingvo", + "es": "Chino wu", + "fi": "Wu-kiina", + "fr": "wu", + "gl": "Lingua wu", + "id": "Bahasa Wu" + } + }, + { + "if": "language:sah=yes", + "ifnot": "language:sah=", + "searchTerms": { + "*": [ + "sah" + ] + }, + "then": { + "en": "Sakha", + "ca": "iacut", + "de": "Jakutisch", + "eo": "jakuta lingvo", + "es": "Idioma yakuto", + "fi": "jakuutti", + "fr": "iakoute", + "gl": "Lingua sakha", + "hu": "jakut", + "id": "Bahasa Yakut", + "it": "sacha", + "ja": "サハ語", + "nl": "Jakoets", + "pl": "Język jakucki", + "pt": "Língua iacuta", + "ru": "якутский язык", + "sv": "jakutiska", + "nb_NO": "sakha" + } + }, + { + "if": "language:jam=yes", + "ifnot": "language:jam=", + "searchTerms": { + "*": [ + "jam" + ] + }, + "then": { + "ca": "jamaican", + "da": "Patois", + "de": "Jamaika-Kreolisch", + "en": "Jamaican Creole", + "eo": "jamajka-kreola lingvo", + "es": "Criollo jamaicano", + "fi": "Jamaikankreoli", + "fr": "créole jamaïcain", + "gl": "Patois xamaicano", + "hu": "jamaicai angol", + "id": "Patwa Jamaika", + "it": "lingua creola giamaicana", + "ja": "ジャマイカ・クレオール語", + "nl": "Jamaicaans Patois", + "pl": "język jamajski", + "pt": "Patoá jamaicano", + "pt_BR": "Patoá jamaicano", + "ru": "ямайский креольский язык", + "sv": "patwa", + "zh_Hans": "牙买加土语", + "zh_Hant": "牙買加土語" + } + }, + { + "if": "language:lkt=yes", + "ifnot": "language:lkt=", + "searchTerms": { + "*": [ + "lkt" + ] + }, + "then": { + "zh_Hans": "拉科塔语", + "ca": "lakota", + "da": "Lakota", + "de": "Lakota", + "en": "Lakota", + "ja": "ラコタ語", + "nb_NO": "lakota", + "nl": "Lakota", + "ru": "лакота", + "eo": "lakota lingvo", + "es": "lakota", + "fi": "lakota", + "fr": "lakota", + "gl": "Lingua lakota", + "id": "Bahasa Lakota", + "it": "lakota", + "pl": "Język lakota", + "pt": "Língua dacota", + "pt_BR": "Língua dacota", + "sv": "lakota" + } + }, + { + "if": "language:krl=yes", + "ifnot": "language:krl=", + "searchTerms": { + "*": [ + "krl" + ] + }, + "then": { + "en": "Karelian", + "hu": "karjalai", + "ca": "carelià", + "da": "karelsk", + "de": "Karelisch", + "eo": "karela lingvo", + "es": "carelio", + "fi": "karjalan kieli", + "fr": "carélien", + "gl": "Lingua carelia", + "id": "Bahasa Karelia", + "it": "careliano", + "ja": "カレリア語", + "nb_NO": "karelsk", + "nl": "Karelisch", + "pl": "język karelski", + "pt": "Língua carélia", + "pt_BR": "Língua carélia", + "ru": "карельский язык", + "sv": "karelska", + "zh_Hant": "卡累利阿語" + } + }, + { + "if": "language:tcy=yes", + "ifnot": "language:tcy=", + "searchTerms": { + "*": [ + "tcy" + ] + }, + "then": { + "en": "Tulu", + "nl": "Tulu", + "ca": "tulu", + "da": "tulu", + "de": "Tulu", + "eo": "tulua lingvo", + "es": "tulu", + "fi": "Tulun kieli", + "fr": "toulou", + "gl": "Lingua tulu", + "id": "Bahasa Tulu", + "ja": "トゥル語", + "nb_NO": "Tulu", + "pl": "język tulu", + "pt": "Língua túlu", + "ru": "тулу", + "sv": "tulu" + } + }, + { + "if": "language:sju=yes", + "ifnot": "language:sju=", + "searchTerms": { + "*": [ + "sju" + ] + }, + "then": { + "sv": "umesamiska", + "hu": "umei számi", + "ca": "sami d'Ume", + "de": "Umesamisch", + "en": "Ume Sami", + "eo": "ume-samea lingvo", + "es": "sami del Ume", + "fi": "uumajansaame", + "fr": "same d'Ume", + "gl": "Lingua saami de Ume", + "it": "lingua sami di Ume", + "ja": "ウーメ・サーミ語", + "nb_NO": "umesamisk", + "nl": "Ume-Samisch", + "pl": "język ume", + "pt": "língua sami de Ume", + "ru": "уме-саамский язык" + } + }, + { + "if": "language:sou=yes", + "ifnot": "language:sou=", + "searchTerms": { + "*": [ + "sou" + ] + }, + "then": { + "de": "Südthailändisch", + "en": "Southern Thai", + "eo": "sud-taja lingvo", + "fr": "thaï du Sud", + "id": "Bahasa Thai Selatan", + "ja": "南タイ語", + "nl": "Zuidelijk Thai", + "pl": "Język południowotajski", + "ru": "южнотайский диалект", + "zh_Hans": "南部泰语", + "zh_Hant": "南部泰語" + } + }, + { + "if": "language:adx=yes", + "ifnot": "language:adx=", + "searchTerms": { + "*": [ + "adx" + ] + }, + "then": { + "en": "Amdo Tibetan", + "fr": "tibétain de l'Amdo", + "ja": "アムド・チベット語", + "pl": "Język amdo", + "ru": "амдо", + "pt": "Tibetano Amdo", + "hu": "amdói tibeti" + } + }, + { + "if": "language:sli=yes", + "ifnot": "language:sli=", + "searchTerms": { + "*": [ + "sli" + ] + }, + "then": { + "ca": "alemany silesià", + "da": "Schlesisk", + "de": "Schlesisch", + "en": "Silesian German", + "eo": "silezia-germana lingvo", + "es": "alemán silesio", + "fi": "sleesiansaksa", + "fr": "silésien", + "it": "tedesco slesiano", + "ja": "低シレジア語", + "nb_NO": "lavschlesisk", + "nl": "Silezisch Duits", + "ru": "силезские диалекты немецкого языка", + "zh_Hans": "西里西亚语", + "zh_Hant": "西里西亞語", + "pl": "dialekt śląski języka niemieckiego", + "hu": "sziléziai német" + } + }, + { + "if": "language:als=yes", + "ifnot": "language:als=", + "searchTerms": { + "*": [ + "als" + ] + }, + "then": { + "hu": "svájci német", + "en": "Swiss German", + "de": "Schweizerdeutsch", + "ca": "alemany suís", + "da": "schweizertysk", + "eo": "svisgermana lingvo", + "es": "alemán de Suiza", + "fi": "sveitsinsaksa", + "fr": "suisse allemand", + "gl": "Lingua alemá de Suíza", + "id": "Bahasa Jerman Swiss", + "it": "svizzero tedesco", + "ja": "スイスドイツ語", + "nb_NO": "sveitsertysk", + "nl": "Zwitserduits", + "pl": "gwary schwyzertüütsch", + "pt": "suíço-alemão", + "ru": "швейцарский диалект", + "sv": "schweizertyska", + "zh_Hans": "瑞士德语", + "zh_Hant": "瑞士德語" + } + }, + { + "if": "language:kha=yes", + "ifnot": "language:kha=", + "searchTerms": { + "*": [ + "kha" + ] + }, + "then": { + "ru": "Кхаси", + "ca": "khasi", + "de": "Khasi", + "en": "Khasi", + "fi": "Khasi", + "fr": "khasi", + "it": "lingua khasi", + "ja": "カシ語", + "nl": "Khasi", + "pl": "Język khasi", + "pt": "Língua khasi", + "zh_Hans": "卡西语", + "zh_Hant": "卡西語", + "eo": "kasia lingvo" + } + }, + { + "if": "language:mnc=yes", + "ifnot": "language:mnc=", + "searchTerms": { + "*": [ + "mnc" + ] + }, + "then": { + "en": "Manchu", + "ca": "manxú", + "de": "Mandschurisch", + "eo": "manĉura lingvo", + "es": "idioma manchú", + "fi": "Mantšun kieli", + "fr": "mandchou", + "gl": "Lingua manchú", + "hu": "mandzsu", + "id": "Bahasa Manchu", + "it": "lingua mancese", + "ja": "満洲語", + "nb_NO": "Mandsjuisk", + "nl": "Mantsjoe", + "pl": "język mandżurski", + "pt": "Língua manchu", + "ru": "маньчжурский язык", + "sv": "manchuiska" + } + }, + { + "if": "language:yo=yes", + "ifnot": "language:yo=", + "searchTerms": { + "*": [ + "yo" + ] + }, + "then": { + "de": "Yoruba", + "en": "Yoruba", + "es": "yoruba", + "nb_NO": "joruba", + "nl": "Yoruba", + "ru": "йоруба", + "fr": "yoruba", + "ca": "ioruba", + "eo": "joruba lingvo", + "fi": "joruban kieli", + "gl": "Lingua ioruba", + "id": "Bahasa Yoruba", + "it": "yoruba", + "ja": "ヨルバ語", + "pl": "język joruba", + "pt": "Língua iorubá", + "sv": "yoruba", + "zh_Hant": "約魯巴語", + "hu": "joruba" + }, + "priorityIf": "_country~((^|;)ng($|;))" + }, + { + "if": "language:ml=yes", + "ifnot": "language:ml=", + "searchTerms": { + "*": [ + "ml" + ] + }, + "then": { + "en": "Malayalam", + "ca": "malaiàlam", + "da": "Malayalam", + "de": "Malayalam", + "eo": "malajala lingvo", + "es": "malabar", + "fi": "malajalam", + "fr": "malayalam", + "gl": "lingua malayalam", + "hu": "malajálam", + "id": "bahasa Malayalam", + "it": "malayalam", + "ja": "マラヤーラム語", + "nb_NO": "malayalam", + "nl": "Malayalam", + "pl": "język malajalam", + "pt": "malaiala", + "pt_BR": "Língua malaiala", + "ru": "малаялам", + "sl": "Malajalščina", + "sv": "malayalam", + "zh_Hant": "馬拉雅拉姆語" + } + }, + { + "if": "language:hai=yes", + "ifnot": "language:hai=", + "searchTerms": { + "*": [ + "hai" + ] + }, + "then": { + "fi": "Haida", + "fr": "haïda", + "gl": "Lingua haida", + "id": "Bahasa Haida", + "it": "haida", + "ja": "ハイダ語", + "nb_NO": "Haida (språk)", + "pl": "Język haida", + "pt": "Língua haida", + "ru": "Хайда", + "zh_Hans": "海达语", + "zh_Hant": "海達語", + "sv": "Haida (språk)", + "en": "Haida", + "nl": "Haida", + "de": "Haida", + "ca": "haida", + "eo": "Ĥajda lingvo", + "es": "idioma haida" + } + }, + { + "if": "language:kut=yes", + "ifnot": "language:kut=", + "searchTerms": { + "*": [ + "kut" + ] + }, + "then": { + "en": "Kutenai", + "ca": "kootenai", + "de": "Kutanaha", + "es": "Idioma kutenai", + "fi": "Kutenai", + "fr": "kutenai", + "it": "lingua kutenai", + "ja": "クテナイ語", + "nl": "Kutenai", + "pl": "Język kutenai", + "pt": "Língua kutenai", + "ru": "Кутенай", + "zh_Hans": "库特奈语", + "zh_Hant": "庫特奈語" + } + }, + { + "if": "language:hoc=yes", + "ifnot": "language:hoc=", + "searchTerms": { + "*": [ + "hoc" + ] + }, + "then": { + "fr": "ho", + "ca": "ho", + "eo": "hoa lingvo", + "fi": "Hon kieli", + "it": "lingua ho", + "ja": "ホー語", + "pl": "Język ho", + "pt": "Língua ho", + "sv": "ho", + "de": "Ho", + "ru": "Хо", + "en": "Ho", + "da": "Ho" + } + }, + { + "if": "language:gsg=yes", + "ifnot": "language:gsg=", + "searchTerms": { + "*": [ + "gsg" + ] + }, + "then": { + "ca": "llengua de signes alemanya", + "da": "Tysk tegnsprog", + "de": "Deutsche Gebärdensprache", + "en": "German Sign Language", + "eo": "germana signolingvo", + "es": "lengua de señas alemana", + "fr": "langue des signes allemande", + "hu": "német jelnyelv", + "id": "Bahasa Isyarat Jerman", + "it": "lingua dei segni tedesca", + "ja": "ドイツ手話", + "nb_NO": "tysk tegnspråk", + "nl": "Duitse gebarentaal", + "pl": "niemiecki język migowy", + "pt": "língua gestual alemã", + "pt_BR": "língua de sinais alemã", + "ru": "германский жестовый язык", + "sv": "tyskt teckenspråk", + "zh_Hans": "德国手语", + "zh_Hant": "德國手語", + "fi": "saksalainen viittomakieli" + } + }, + { + "if": "language:li=yes", + "ifnot": "language:li=", + "searchTerms": { + "*": [ + "li" + ] + }, + "then": { + "it": "limburghese", + "ja": "リンブルフ語", + "nb_NO": "limburgsk", + "pl": "język limburski", + "pt": "língua limburguesa", + "ru": "лимбургский язык", + "sv": "limburgiska", + "zh_Hans": "林堡语", + "zh_Hant": "林堡語", + "ca": "limburguès", + "en": "Limburgish", + "nl": "Limburgs", + "de": "Limburgisch", + "eo": "limburga lingvo", + "es": "limburgués", + "fi": "limburgin kieli", + "fr": "limbourgeois", + "gl": "Lingua limburguesa", + "hu": "limburgi", + "id": "Bahasa Limburgish" + } + }, + { + "if": "language:hyw=yes", + "ifnot": "language:hyw=", + "searchTerms": { + "*": [ + "hyw" + ] + }, + "then": { + "ca": "armeni occidental", + "de": "Westarmenisch", + "en": "Western Armenian", + "eo": "okcident-armena lingvo", + "es": "armenio occidental", + "fr": "arménien occidental", + "gl": "Armenio occidental", + "id": "Armenia Barat", + "it": "dialetto armeno occidentale", + "ja": "西アルメニア語", + "nb_NO": "vestarmensk", + "nl": "West-Armeens", + "pl": "język zachodnioormiański", + "ru": "западноармянский язык", + "sv": "västarmeniska", + "zh_Hans": "西部亚美尼亚语", + "zh_Hant": "西部亞美尼亞語" + } + }, + { + "if": "language:esu=yes", + "ifnot": "language:esu=", + "searchTerms": { + "*": [ + "esu" + ] + }, + "then": { + "ru": "Центрально-юпикский язык", + "zh_Hans": "中阿拉斯加尤皮克语", + "sv": "Centraljupik", + "ca": "yupik de l'Alaska central", + "de": "Yup'ik", + "en": "Central Alaskan Yup'ik", + "es": "Yupik alaskeño central", + "fi": "alaskanjupik", + "fr": "yupik de l'Alaska central", + "gl": "Lingua iupik de Alasca central", + "it": "lingua yupik centrale", + "ja": "中央アラスカ・ユピック語", + "nb_NO": "Alaskayupik", + "nl": "Joepik", + "pl": "Język yupik środkowy" + } + }, + { + "if": "language:abq=yes", + "ifnot": "language:abq=", + "searchTerms": { + "*": [ + "abq" + ] + }, + "then": { + "en": "Abaza", + "ca": "abazí", + "de": "Abasinisch", + "eo": "abaza lingvo", + "es": "abaza", + "fi": "Abazan kieli", + "fr": "abaza", + "gl": "Lingua abaza", + "it": "lingua abazina", + "ja": "アバザ語", + "nb_NO": "abazinsk", + "nl": "Abazijns", + "pl": "Język abazyński", + "pt": "Língua abaza", + "pt_BR": "Língua abaza", + "ru": "абазинский язык", + "sv": "abazinska", + "zh_Hans": "阿巴扎语", + "zh_Hant": "阿巴扎語", + "id": "Bahasa Abaza", + "hu": "abaza" + } + }, + { + "if": "language:tli=yes", + "ifnot": "language:tli=", + "searchTerms": { + "*": [ + "tli" + ] + }, + "then": { + "ca": "Tlingit", + "de": "Tlingit", + "en": "Tlingit", + "fi": "Tlingit", + "nb_NO": "Tlingit", + "nl": "Tlingit", + "eo": "Tlingita", + "es": "tlingit", + "fr": "tlingit", + "id": "Bahasa Tlingit", + "it": "lingua tlingit", + "ja": "トリンギット語", + "pl": "Język tlingit", + "pt": "Língua tlingit", + "pt_BR": "Língua tlingit", + "ru": "Тлингитский язык", + "sv": "tlingit", + "hu": "tlingit" + } + }, + { + "if": "language:trv=yes", + "ifnot": "language:trv=", + "searchTerms": { + "*": [ + "trv" + ] + }, + "then": { + "ca": "seediq", + "en": "Seediq", + "eo": "sedeka lingvo", + "fi": "Taroko", + "fr": "seediq", + "gl": "Lingua seediq", + "it": "lingua seediq", + "ja": "セデック語", + "nb_NO": "Truku", + "nl": "Taroko", + "pt": "Língua seediq", + "zh_Hans": "赛德克语", + "zh_Hant": "賽德克語", + "id": "Bahasa Seediq" + } + }, + { + "if": "language:szy=yes", + "ifnot": "language:szy=", + "searchTerms": { + "*": [ + "szy" + ] + }, + "then": { + "en": "Sakizaya", + "fr": "sakizaya", + "gl": "Lingua sakizaya", + "id": "Bahasa Sakizaya", + "ja": "サキザヤ語", + "zh_Hans": "撒奇莱雅语", + "zh_Hant": "撒奇萊雅語", + "pt": "Língua sakisaya" + } + }, + { + "if": "language:lus=yes", + "ifnot": "language:lus=", + "searchTerms": { + "*": [ + "lus" + ] + }, + "then": { + "ca": "mizo", + "de": "Mizo", + "en": "Mizo", + "es": "mizo", + "fi": "Lusai", + "fr": "mizo", + "it": "lingua Mizo", + "ja": "ミゾ語", + "nl": "Mizo", + "pl": "Język mizo", + "pt": "Língua mizo", + "ru": "Мизо", + "sv": "mizo", + "zh_Hant": "米佐語", + "id": "Bahasa Mizo" + } + }, + { + "if": "language:olo=yes", + "ifnot": "language:olo=", + "searchTerms": { + "*": [ + "olo" + ] + }, + "then": { + "ca": "livvi-carelià", + "de": "Olonetzisch", + "en": "Livvi-Karelian", + "eo": "olonec-karela lingvo", + "fi": "livvinkarjala", + "fr": "olonetsien", + "gl": "Lingua livvi", + "it": "lingua livvi", + "ja": "リッヴィ語", + "nb_NO": "livvisk", + "nl": "Olonetsisch", + "pl": "Dialekt ołoniecki", + "ru": "ливвиковское наречие", + "sv": "livvi", + "zh_Hant": "利維卡累利阿語" + } + }, + { + "if": "language:pnt=yes", + "ifnot": "language:pnt=", + "searchTerms": { + "*": [ + "pnt" + ] + }, + "then": { + "ca": "pòntic", + "de": "Pontisch", + "en": "Pontic Greek", + "eo": "Ponta greka lingvo", + "es": "griego póntico", + "fr": "grec pontique", + "gl": "Grego póntico", + "id": "Bahasa Yunani Pontus", + "it": "pontico", + "ja": "ギリシア語ポントス方言", + "nb_NO": "pontisk gresk", + "nl": "Pontisch", + "pl": "język pontyjski", + "pt": "Grego do Ponto", + "ru": "понтийский язык", + "sv": "pontisk grekiska", + "zh_Hant": "旁狄希臘語", + "hu": "pontoszi görög" + } + }, + { + "if": "language:koi=yes", + "ifnot": "language:koi=", + "searchTerms": { + "*": [ + "koi" + ] + }, + "then": { + "ja": "コミ・ペルミャク語", + "en": "Permyak", + "ca": "komi-permià", + "da": "Komipermjakisk", + "de": "Permjakisch", + "eo": "komipermjaka lingvo", + "es": "komi permio", + "fi": "komipermjakin kieli", + "fr": "komi-permiak", + "gl": "Lingua komi-permyac", + "hu": "permják", + "it": "permiaco", + "nb_NO": "komipermjakisk", + "nl": "Komi-Permjaaks", + "pl": "język komi-permiacki", + "pt": "Língua komi-permyak", + "ru": "коми-пермяцкий язык", + "sv": "komi-permjakiska", + "zh_Hans": "彼尔姆科米语", + "zh_Hant": "彼爾姆科米語" + } + }, + { + "if": "language:nog=yes", + "ifnot": "language:nog=", + "searchTerms": { + "*": [ + "nog" + ] + }, + "then": { + "sv": "nogai", + "en": "Nogai", + "ca": "nogai", + "de": "Nogaisch", + "eo": "nogaja lingvo", + "es": "nogai", + "fi": "Nogain kieli", + "fr": "nogaï", + "id": "Bahasa Nogai", + "it": "lingua nogai", + "ja": "ノガイ語", + "nb_NO": "nogaisk", + "nl": "Nogais", + "pl": "Język nogajski", + "pt": "Língua nogai", + "ru": "ногайский язык" + } + }, + { + "if": "language:wbl=yes", + "ifnot": "language:wbl=", + "searchTerms": { + "*": [ + "wbl" + ] + }, + "then": { + "de": "Wakhi", + "en": "Wakhi", + "nb_NO": "Wakhi", + "nl": "Wakhi", + "es": "wají", + "fi": "Vahanin kieli", + "fr": "wakhi", + "gl": "Lingua vakhí", + "id": "Bahasa Wakhi", + "it": "wakhi", + "ja": "ワヒ語", + "pl": "Język wachański", + "pt": "Língua wakhi", + "pt_BR": "Língua wakhi", + "ru": "Ваханский язык" + } + }, + { + "if": "language:tly=yes", + "ifnot": "language:tly=", + "searchTerms": { + "*": [ + "tly" + ] + }, + "then": { + "en": "Talysh", + "id": "Talysh", + "ca": "talixi", + "de": "Talisch", + "eo": "taliŝa lingvo", + "es": "talishi", + "fi": "Tališin kieli", + "fr": "talysh", + "gl": "Lingua talysh", + "it": "lingua taliscia", + "ja": "タリシュ語", + "nl": "Talysjisch", + "pl": "Tałyszowie", + "pt": "Língua talish", + "ru": "талышский язык", + "sv": "talysj", + "nb_NO": "talysj" + } + }, + { + "if": "language:mhr=yes", + "ifnot": "language:mhr=", + "searchTerms": { + "*": [ + "mhr" + ] + }, + "then": { + "fi": "niittymarin kieli", + "fr": "mari des prairies", + "gl": "Lingua mari das pradeiras", + "it": "mari orientale", + "ja": "牧地マリ語", + "nb_NO": "østmarisk", + "nl": "Oost-Tsjeremissisch", + "pl": "maryjski łąkowy", + "pt": "Língua mari das campinas", + "ru": "луговомарийский язык", + "sv": "östmariska", + "en": "Meadow Mari", + "ca": "txeremís oriental", + "de": "Wiesenmari", + "es": "mari de las praderas" + } + }, + { + "if": "language:ruq=yes", + "ifnot": "language:ruq=", + "searchTerms": { + "*": [ + "ruq" + ] + }, + "then": { + "en": "Megleno-Romanian", + "ca": "meglenoromanès", + "de": "Meglenorumänisch", + "eo": "meglenorumana lingvo", + "es": "meglenorrumano", + "fr": "mégléno-roumain", + "gl": "Lingua megleno-romanesa", + "it": "lingua meglenorumena", + "ja": "メグレノ・ルーマニア語", + "nb_NO": "meglenorumensk", + "nl": "Megleno-Roemeens", + "pl": "Język meglenorumuński", + "pt": "Romeno meglesita", + "pt_BR": "Romeno meglesita", + "ru": "мегленорумынский язык", + "zh_Hans": "梅戈来诺-罗马尼亚语", + "zh_Hant": "梅戈來諾-羅馬尼亞語", + "hu": "meglenoromán" + } + }, + { + "if": "language:mwv=yes", + "ifnot": "language:mwv=", + "searchTerms": { + "*": [ + "mwv" + ] + }, + "then": { + "id": "Mentawai", + "pt": "Mentawai", + "ca": "mentawai", + "da": "Mentawai", + "de": "Mentawaisprache", + "en": "Mentawai", + "eo": "Mentawai", + "es": "mentawai", + "fi": "Mentawain kieli", + "fr": "mentawai", + "gl": "Lingua mentawai", + "hu": "Mentawai", + "it": "lingua mentawai", + "ja": "メンタワイ語", + "nb_NO": "Mentawai", + "nl": "Mentawai", + "pl": "język mentawai", + "pt_BR": "Mentawai", + "ru": "ментавай", + "sl": "Mentawai", + "sv": "mentawai" + } + }, + { + "if": "language:koy=yes", + "ifnot": "language:koy=", + "searchTerms": { + "*": [ + "koy" + ] + }, + "then": { + "de": "Koyukon", + "en": "Koyukon", + "nb_NO": "Koyukon", + "es": "koyukón", + "fr": "koyukon", + "it": "lingua koyukon", + "ja": "コユコン語", + "pt": "Língua koyukon", + "pt_BR": "Língua koyukon", + "ru": "Коюкон" + } + }, + { + "if": "language:clc=yes", + "ifnot": "language:clc=", + "searchTerms": { + "*": [ + "clc" + ] + }, + "then": { + "en": "Chilcotin", + "de": "Tschilcotin", + "es": "chilcotin", + "fr": "chilcotin", + "it": "lingua chilcotin", + "ja": "チルコティン語", + "nb_NO": "Chilcotin", + "pt": "Língua chilcontin", + "ru": "Чилкотин", + "eo": "ĉilkotina lingvo" + } + }, + { + "if": "language:fiu-vro=yes", + "ifnot": "language:fiu-vro=", + "searchTerms": { + "*": [ + "fiu-vro" + ] + }, + "then": { + "en": "Võro", + "ca": "võro", + "da": "Võro", + "de": "Võro", + "eo": "voroa lingvo", + "es": "Idioma võro", + "fi": "võro", + "fr": "võro", + "gl": "Lingua võro", + "id": "Bahasa Võro", + "it": "võro", + "ja": "ヴォロ語", + "nb_NO": "sørestisk", + "nl": "Võro", + "pl": "język võro", + "pt": "Língua võro", + "ru": "выруский диалект", + "sv": "võro", + "zh_Hans": "沃罗语", + "hu": "võro" + } + }, + { + "if": "language:frc=yes", + "ifnot": "language:frc=", + "searchTerms": { + "*": [ + "frc" + ] + }, + "then": { + "fr": "français de Louisiane", + "id": "Bahasa Prancis Louisiana", + "it": "francese cajun", + "ja": "ケイジャン・フランス語", + "nl": "Cajun-Frans", + "pt": "francês cajun", + "ru": "Кажунский диалект французского языка", + "sv": "Louisianafranska", + "de": "Cajun", + "ca": "francès cajun", + "en": "Louisiana French", + "eo": "luiziana franca dialekto", + "es": "francés cajún" + } + }, + { + "if": "language:guw=yes", + "ifnot": "language:guw=", + "searchTerms": { + "*": [ + "guw" + ] + }, + "then": { + "ru": "Гун", + "en": "Gun", + "de": "Gun", + "ca": "gun", + "ja": "グン語", + "fr": "gun-gbe", + "gl": "Lingua gun" + } + }, + { + "if": "language:cnh=yes", + "ifnot": "language:cnh=", + "searchTerms": { + "*": [ + "cnh" + ] + }, + "then": { + "de": "Hakha Chin", + "en": "Hakha-Chin", + "fr": "haka chin", + "ja": "ハカ語", + "ru": "Чинский язык" + } + }, + { + "if": "language:sjm=yes", + "ifnot": "language:sjm=", + "searchTerms": { + "*": [ + "sjm" + ] + }, + "then": { + "en": "Mapun", + "fr": "mapun" + } + }, + { + "if": "language:bzs=yes", + "ifnot": "language:bzs=", + "searchTerms": { + "*": [ + "bzs" + ] + }, + "then": { + "ca": "llengua de signes brasilera", + "da": "brasiliansk tegnsprog", + "de": "Brasilianische Gebärdensprache", + "en": "Brazilian Sign Language", + "eo": "brazila signolingvo", + "fr": "langue des signes brésilienne", + "it": "lingua dei segni brasiliana", + "ja": "ブラジル手話", + "nb_NO": "brasiliansk tegnspråk", + "nl": "Braziliaanse gebarentaal", + "pt": "língua brasileira de sinais", + "pt_BR": "língua brasileira de sinais", + "es": "Lengua brasileña de señas", + "ru": "бразильский жестовый язык", + "id": "Bahasa Isyarat Brasil" + } + }, + { + "if": "language:kcg=yes", + "ifnot": "language:kcg=", + "searchTerms": { + "*": [ + "kcg" + ] + }, + "then": { + "en": "Tyap", + "de": "Tjap", + "fi": "Tyap", + "ja": "カタブ語", + "nl": "Tyap", + "gl": "Lingua tyap", + "ca": "katab", + "es": "katab", + "fr": "katab" + } + }, + { + "if": "language:mi=yes", + "ifnot": "language:mi=", + "searchTerms": { + "*": [ + "mi" + ] + }, + "then": { + "fi": "Maorin kieli", + "fr": "māori", + "gl": "Lingua maorí", + "hu": "maori", + "id": "Bahasa Maori", + "it": "māori", + "ja": "マオリ語", + "nb_NO": "maorisk", + "nl": "Maori", + "pl": "język maori", + "pt": "língua maori", + "pt_BR": "língua maori", + "ru": "маори", + "sv": "maori", + "zh_Hans": "毛利语", + "zh_Hant": "毛利語", + "ca": "maori", + "da": "Maori", + "de": "Māori", + "en": "Māori", + "eo": "maoria lingvo", + "es": "maorí" + }, + "priorityIf": "_country~((^|;)nz($|;))" + }, + { + "if": "language:aeb=yes", + "ifnot": "language:aeb=", + "searchTerms": { + "*": [ + "aeb" + ] + }, + "then": { + "da": "Tunesisk arabisk", + "de": "Tunesisch-Arabisch", + "en": "Tunisian Arabic", + "eo": "tunizia araba lingvo", + "es": "árabe tunecino", + "fi": "tunisianarabia", + "fr": "arabe tunisien", + "id": "Bahasa Arab Tunisia", + "it": "arabo tunisino", + "ja": "アラビア語チュニジア方言", + "nb_NO": "tunisisk arabisk", + "nl": "Tunesisch", + "pt": "árabe tunisino", + "pt_BR": "Árabe tunisino", + "ru": "Тунисский диалект арабского языка", + "sv": "tunisisk arabiska", + "zh_Hans": "突尼斯阿拉伯语", + "zh_Hant": "突尼西亞阿拉伯語", + "ca": "àrab tunisià", + "pl": "tunezyjski" + } + }, + { + "if": "language:nrf-gg=yes", + "ifnot": "language:nrf-gg=", + "searchTerms": { + "*": [ + "nrf-gg" + ] + }, + "then": { + "ca": "guernseiès", + "de": "Guernésiais", + "en": "Guernésiais", + "eo": "gernezeja lingvo", + "es": "guernseyés", + "fi": "Guernésiais", + "fr": "guernesiais", + "it": "dialetto guernesiais", + "ja": "ガーンジー島方言", + "nb_NO": "guernésiais", + "nl": "Dgèrnésiais", + "pl": "Dgèrnésiais", + "pt": "Guernésiais", + "ru": "Гернсийский диалект нормандского языка", + "sl": "Guernseyščina", + "sv": "Guernésiais" + } + }, + { + "if": "language:lki=yes", + "ifnot": "language:lki=", + "searchTerms": { + "*": [ + "lki" + ] + }, + "then": { + "en": "Laki", + "pt": "Laki", + "de": "Leki", + "da": "Laki", + "eo": "Laki", + "ca": "dialecte laki", + "fi": "laki", + "fr": "laki", + "gl": "Lingua laki", + "ja": "ラーク語", + "nl": "Laki dialect", + "ru": "лаки", + "sv": "lekî", + "id": "Bahasa Laki" + } + }, + { + "if": "language:bej=yes", + "ifnot": "language:bej=", + "searchTerms": { + "*": [ + "bej" + ] + }, + "then": { + "nl": "Beja", + "en": "Beja", + "nb_NO": "Beja", + "ru": "Беджа", + "de": "Bedscha", + "ca": "llengua beja", + "eo": "beĝaa lingvo", + "es": "Idioma beya", + "fi": "Bedžan kieli", + "fr": "bedja", + "id": "Bahasa Beja", + "it": "begia", + "ja": "ベジャ語", + "pl": "Język bedża", + "pt": "Língua beja" + } + }, + { + "if": "language:ckt=yes", + "ifnot": "language:ckt=", + "searchTerms": { + "*": [ + "ckt" + ] + }, + "then": { + "en": "Chukchi", + "ca": "txuktxi", + "de": "Tschuktschisch", + "eo": "Ĉukĉa lingvo", + "es": "chucoto", + "fi": "Tšuktšin kieli", + "fr": "tchouktche", + "gl": "Lingua Chukoto", + "id": "Bahasa Chukchi", + "it": "lingua ciukcia", + "ja": "チュクチ語", + "nb_NO": "Luoravetlansk", + "nl": "Tsjoektsjisch", + "pl": "Język czukocki", + "pt": "Língua chukoto", + "ru": "чукотский язык", + "sl": "Čukotščina", + "sv": "tjuktjiska", + "hu": "csukcs" + } + }, + { + "if": "language:mus=yes", + "ifnot": "language:mus=", + "searchTerms": { + "*": [ + "mus" + ] + }, + "then": { + "de": "Maskoki", + "en": "Muscogee", + "ca": "muskogi", + "eo": "krika lingvo", + "es": "idioma maskoki", + "fi": "Creekin kieli", + "fr": "creek", + "gl": "Lingua muscogee", + "hu": "muszkogi", + "id": "Bahasa Muskogee", + "it": "lingua creek", + "ja": "マスコギ語", + "nl": "Muskogi", + "pl": "Język krik", + "pt": "Língua creek", + "pt_BR": "Língua creek", + "ru": "Крикский язык" + } + }, + { + "if": "language:pwn=yes", + "ifnot": "language:pwn=", + "searchTerms": { + "*": [ + "pwn" + ] + }, + "then": { + "ca": "paiwan", + "en": "Paiwan", + "es": "Idioma paiwan", + "fr": "paiwan", + "gl": "Lingua paiwan", + "id": "Bahasa Paiwan", + "it": "paiwan", + "ja": "パイワン語", + "nl": "Paiwaans", + "pt": "Língua paiwan", + "sv": "paiwan", + "zh_Hans": "排湾语", + "zh_Hant": "排灣語", + "de": "Paiwan", + "fi": "Paiwanin kieli" + } + }, + { + "if": "language:kj=yes", + "ifnot": "language:kj=", + "searchTerms": { + "*": [ + "kj" + ] + }, + "then": { + "en": "Kwanyama", + "nl": "Kwanyama", + "ca": "kwanyama", + "de": "Kwanyama", + "eo": "kuanjama lingvo", + "es": "idioma kuanyama", + "fr": "kuanyama", + "gl": "Lingua kwanyama", + "hu": "kvanyama", + "it": "kwanyama", + "ja": "クワニャマ語", + "pl": "Język kwanyama", + "pt": "Língua cuanhama", + "ru": "кваньяма", + "sv": "kwanyama", + "zh_Hans": "夸摩马语", + "zh_Hant": "誇摩馬語" + } + }, + { + "if": "language:rgn=yes", + "ifnot": "language:rgn=", + "searchTerms": { + "*": [ + "rgn" + ] + }, + "then": { + "ca": "romanyol", + "de": "Romagnol", + "en": "Romagnol", + "eo": "romanja lingvo", + "es": "romañol", + "fr": "romagnol", + "it": "romagnolo", + "ja": "ロマーニャ語", + "nl": "Romagnools", + "pt": "romagnol", + "ru": "Романьольский язык", + "zh_Hans": "罗马涅语", + "zh_Hant": "羅馬涅語", + "fi": "romagnolin kieli" + } + }, + { + "if": "language:abs=yes", + "ifnot": "language:abs=", + "searchTerms": { + "*": [ + "abs" + ] + }, + "then": { + "de": "Ambonesisch", + "en": "Ambonese", + "fr": "malais d'Ambon", + "id": "Bahasa Ambon", + "ja": "アンボン・マライ語", + "nl": "Ambonees", + "pl": "język malajski amboński", + "pt": "Malaio ambonês", + "ru": "амбонезский язык", + "zh_Hans": "安汶马来语", + "zh_Hant": "安汶馬來語" + } + }, + { + "if": "language:sxr=yes", + "ifnot": "language:sxr=", + "searchTerms": { + "*": [ + "sxr" + ] + }, + "then": { + "ja": "サアロア語", + "pt": "Língua saaroa", + "zh_Hans": "拉阿鲁哇语", + "zh_Hant": "拉阿魯哇語", + "id": "Bahasa Saaroa", + "en": "Saaroa", + "fi": "Saaroa", + "nl": "Saaroa", + "ca": "saaroa", + "fr": "saaroa", + "it": "lingua saaroa" + } + }, + { + "if": "language:ckv=yes", + "ifnot": "language:ckv=", + "searchTerms": { + "*": [ + "ckv" + ] + }, + "then": { + "ca": "kavalan", + "en": "Kavalan", + "fi": "Kavalan", + "fr": "kavalan", + "it": "lingua kavalan", + "ja": "クバラン語", + "nl": "Kavalaans", + "pt": "Língua kavalan", + "zh_Hans": "噶玛兰语", + "zh_Hant": "噶瑪蘭語", + "id": "Bahasa Kavalan" + } + }, + { + "if": "language:tsu=yes", + "ifnot": "language:tsu=", + "searchTerms": { + "*": [ + "tsu" + ] + }, + "then": { + "ru": "Цзоу", + "en": "Tsou", + "nl": "Tsou", + "ca": "tsou", + "fr": "tsou", + "id": "Bahasa Tsou", + "it": "lingua tsou", + "ja": "ツォウ語", + "sv": "tsou", + "zh_Hans": "邹语", + "zh_Hant": "鄒語", + "fi": "Tsoun kieli" + } + }, + { + "if": "language:xsy=yes", + "ifnot": "language:xsy=", + "searchTerms": { + "*": [ + "xsy" + ] + }, + "then": { + "ca": "saisiyat", + "en": "Saisiyat", + "fr": "saisiyat", + "it": "lingua saisiyat", + "ja": "サイシャット語", + "nl": "Saisiyat", + "pt": "Língua saisiyat", + "zh_Hans": "赛夏语", + "zh_Hant": "賽夏語", + "id": "Bahasa Saisiyat" + } + }, + { + "if": "language:lvk=yes", + "ifnot": "language:lvk=", + "searchTerms": { + "*": [ + "lvk" + ] + }, + "then": { + "en": "Lavukaleve", + "fr": "lavukaleve", + "ja": "ラヴカルヴェ語", + "pl": "język lavukaleve", + "ru": "Лавукалеве", + "sv": "Lavukaleve", + "de": "Lavukaleve", + "es": "lavukaleve", + "it": "lavukaleve", + "pt": "lavukaleve" + } + }, + { + "if": "language:zh-yue=yes", + "ifnot": "language:zh-yue=", + "searchTerms": { + "*": [ + "zh-yue" + ] + }, + "then": { + "zh_Hans": "粤语", + "zh_Hant": "粵語", + "de": "Kantonesisch", + "en": "Yue Chinese", + "es": "cantonés", + "ja": "粤語", + "nl": "Kantonees", + "pl": "język yue", + "ca": "xinès Yue", + "da": "yue", + "eo": "sudĉina lingvo", + "fr": "cantonais", + "id": "Tionghoa Yue", + "it": "cantonese", + "nb_NO": "kantonesisk", + "pt": "Língua yue", + "ru": "юэ" + } + }, + { + "if": "language:tvn=yes", + "ifnot": "language:tvn=", + "searchTerms": { + "*": [ + "tvn" + ] + }, + "then": { + "en": "Tavoyan", + "fr": "tavoyan", + "nb_NO": "tavoyansk" + } + }, + { + "if": "language:pmy=yes", + "ifnot": "language:pmy=", + "searchTerms": { + "*": [ + "pmy" + ] + }, + "then": { + "en": "Papuan Malay", + "fi": "Papuan malaiji", + "fr": "malais papou", + "id": "Melayu Papua", + "pl": "język malajski papuaski" + } + }, + { + "if": "language:kbg=yes", + "ifnot": "language:kbg=", + "searchTerms": { + "*": [ + "kbg" + ] + }, + "then": { + "en": "Khamba", + "fr": "khamba" + } + }, + { + "if": "language:rwr=yes", + "ifnot": "language:rwr=", + "searchTerms": { + "*": [ + "rwr" + ] + }, + "then": { + "en": "Marwari", + "fr": "marvari", + "ru": "марвари" + } + }, + { + "if": "language:ttm=yes", + "ifnot": "language:ttm=", + "searchTerms": { + "*": [ + "ttm" + ] + }, + "then": { + "en": "Northern Tutchone", + "de": "Nord-Tutchone", + "es": "tutchone septentrional", + "fr": "tutchone du Nord" + } + }, + { + "if": "language:mrj=yes", + "ifnot": "language:mrj=", + "searchTerms": { + "*": [ + "mrj" + ] + }, + "then": { + "en": "Hill Mari", + "de": "Bergmari", + "ca": "txeremís occidental", + "es": "mari de las colinas", + "fi": "vuorimarin kieli", + "fr": "mari des montagnes", + "gl": "Lingua mari das montañas", + "it": "lingua mari occidentale", + "ja": "山地マリ語", + "nb_NO": "vestmarisk", + "nl": "West-Tsjeremissisch", + "pl": "maryjski górski", + "pt": "mari ocidental", + "ru": "горномарийский язык", + "sv": "västmariska", + "hu": "hegyi mari" + } + }, + { + "if": "language:nia=yes", + "ifnot": "language:nia=", + "searchTerms": { + "*": [ + "nia" + ] + }, + "then": { + "de": "Nias", + "en": "Nias", + "nl": "Nias", + "id": "Nias", + "fi": "Niasin kieli", + "fr": "niha", + "gl": "Lingua nias", + "it": "lingua nias", + "ja": "ニアス語", + "pl": "Język nias", + "pt": "Língua nias", + "ru": "Ниасский язык", + "zh_Hans": "尼亚斯语", + "zh_Hant": "尼亞斯語", + "eo": "niasa lingvo" + } + }, + { + "if": "language:yrl=yes", + "ifnot": "language:yrl=", + "searchTerms": { + "*": [ + "yrl" + ] + }, + "then": { + "de": "Nheengatu", + "en": "Nheengatu", + "nl": "Nheengatu", + "ca": "nheengatu", + "eo": "nengatua lingvo", + "es": "ñe'engatú", + "fi": "Ñeengatú", + "fr": "nheengatu", + "gl": "Lingua nheengatu", + "it": "nheengatu", + "ja": "ニェエンガトゥ語", + "pt": "nheengatu", + "pt_BR": "Nheengatu", + "ru": "ньенгату" + } + }, + { + "if": "language:cak=yes", + "ifnot": "language:cak=", + "searchTerms": { + "*": [ + "cak" + ] + }, + "then": { + "en": "Kaqchikel", + "nl": "Kaqchikel", + "ca": "kaqtxikel", + "de": "Cakchiquel-Sprache", + "eo": "kakĉikela lingvo", + "es": "Idioma kakchikel", + "fr": "cakchiquel", + "gl": "Lingua kaqchikel", + "id": "Bahasa Kaqchikel", + "ja": "カクチケル語", + "nb_NO": "Kakchikel", + "pl": "Język kaqchikel", + "pt": "Língua caqchiquel", + "ru": "Какчикельский язык", + "sv": "cakchiquel" + } + }, + { + "if": "language:ami=yes", + "ifnot": "language:ami=", + "searchTerms": { + "*": [ + "ami" + ] + }, + "then": { + "en": "Amis", + "nl": "Amis", + "ca": "amis", + "de": "Amisisch", + "es": "Idioma amis", + "fr": "amis", + "gl": "Lingua amis", + "id": "Bahasa Amis", + "it": "lingua amis", + "ja": "アミ語", + "pl": "Język amis", + "pt": "Língua amis", + "ru": "амисский язык", + "sv": "amis", + "zh_Hans": "阿美语", + "zh_Hant": "阿美語", + "fi": "Amisin kieli" + } + }, + { + "if": "language:krx=yes", + "ifnot": "language:krx=", + "searchTerms": { + "*": [ + "krx" + ] + }, + "then": { + "en": "Karon", + "de": "Karon", + "fr": "karone", + "ja": "カロン語" + } + }, + { + "if": "language:hil=yes", + "ifnot": "language:hil=", + "searchTerms": { + "*": [ + "hil" + ] + }, + "then": { + "id": "Bahasa Hiligaynon", + "it": "lingua hiligaynon", + "ja": "ヒリガイノン語", + "pl": "Język hiligaynon", + "pt": "Língua hiligaynon", + "ru": "Хилигайнон", + "sv": "hiligaynon", + "es": "hiligueino", + "da": "hiligajisk", + "en": "Hiligaynon", + "de": "Hiligaynon", + "nl": "Hiligaynon", + "ca": "híligaynon", + "eo": "hiligajnona lingvo", + "fi": "Hiligainon kieli", + "fr": "hiligaïnon" + } + }, + { + "if": "language:uun=yes", + "ifnot": "language:uun=", + "searchTerms": { + "*": [ + "uun" + ] + }, + "then": { + "de": "Pazeh", + "en": "Pazeh", + "ca": "pazeh", + "fr": "pazeh", + "id": "Bahasa Pazeh", + "it": "lingua pazeh", + "ja": "パゼッヘ語", + "nl": "Kulon-Pazeh", + "pl": "Język pazeh", + "pt": "Língua pazeh", + "zh_Hant": "巴宰語" + } + }, + { + "if": "language:sjt=yes", + "ifnot": "language:sjt=", + "searchTerms": { + "*": [ + "sjt" + ] + }, + "then": { + "ca": "sami ter", + "de": "Tersamisch", + "en": "Ter Sami", + "eo": "ter-samea lingvo", + "es": "sami ter", + "fi": "turjansaame", + "fr": "same de Ter", + "gl": "Lingua saami de Ter", + "it": "sami di Ter", + "ja": "テル・サーミ語", + "nb_NO": "tersamisk", + "nl": "Ter-Samisch", + "pl": "język ter", + "pt": "sami de Ter", + "ru": "йоканьгско-саамский язык", + "sv": "tersamiska" + } + }, + { + "if": "language:wal=yes", + "ifnot": "language:wal=", + "searchTerms": { + "*": [ + "wal" + ] + }, + "then": { + "de": "Wolaytta", + "ru": "Воламо", + "en": "Wolaytta", + "es": "Idioma wolayta", + "fi": "Wolaitta", + "fr": "wolaita", + "it": "lingua wolaytta", + "ja": "ウォライタ語", + "nl": "Wolayta", + "pt": "Língua wolaytta" + } + }, + { + "if": "language:wym=yes", + "ifnot": "language:wym=", + "searchTerms": { + "*": [ + "wym" + ] + }, + "then": { + "en": "Vilamovian", + "ca": "wymysorys", + "da": "vimisørisk", + "de": "Wilmesaurisch", + "eo": "vilamovica lingvo", + "es": "vilamoviciano", + "fi": "Wymysorys", + "fr": "wilamowicien", + "gl": "Lingua wymysorys", + "hu": "wilamowicei", + "id": "Bahasa Wimisoris", + "it": "vilamoviano", + "ja": "ヴィラモヴィアン語", + "nb_NO": "wymysörisk", + "nl": "Wymysöryś", + "pl": "etnolekt wilamowski", + "pt": "Wymysorys", + "pt_BR": "Wymysorys", + "ru": "вилямовский язык", + "sv": "wymysöriska" + } + }, + { + "if": "language:arq=yes", + "ifnot": "language:arq=", + "searchTerms": { + "*": [ + "arq" + ] + }, + "then": { + "ca": "àrab algerià", + "da": "Algerisk arabisk", + "de": "Algerisch-Arabisch", + "en": "Algerian Arabic", + "eo": "alĝeria araba lingvo", + "es": "árabe argelino", + "fi": "algerianarabia", + "fr": "arabe algérien", + "id": "Bahasa Arab Aljazair", + "it": "arabo algerino", + "ja": "アラビア語アルジェリア方言", + "nl": "Algerijns Arabisch", + "pt": "árabe argelino", + "ru": "Алжирский диалект арабского языка", + "sv": "algerisk arabiska", + "zh_Hant": "阿爾及利亞阿拉伯語", + "nb_NO": "algerisk-arabisk", + "hu": "algériai arab" + } + }, + { + "if": "language:bsk=yes", + "ifnot": "language:bsk=", + "searchTerms": { + "*": [ + "bsk" + ] + }, + "then": { + "zh_Hans": "布鲁夏斯基语", + "zh_Hant": "布魯夏斯基語", + "id": "Bahasa Burushaski", + "hu": "burusaszki", + "ca": "buruixaski", + "da": "Burushaski", + "de": "Burushaski", + "en": "Burushaski", + "eo": "buruŝa lingvo", + "es": "Idioma burushaski", + "fi": "Burušaskin kieli", + "fr": "bourouchaski", + "gl": "Lingua burushaski", + "it": "lingua burushaski", + "ja": "ブルシャスキー語", + "nl": "Burushaski", + "pl": "Język buruszaski", + "pt": "língua burushaski", + "ru": "Бурушаски", + "sv": "burushaski" + } + }, + { + "if": "language:bqi=yes", + "ifnot": "language:bqi=", + "searchTerms": { + "*": [ + "bqi" + ] + }, + "then": { + "en": "Bakhtiari", + "de": "Bachtiarisch", + "fr": "bakhtiari", + "it": "dialetto bakhtiari", + "ja": "バフティヤーリー語", + "nl": "Bachtiarisch", + "pl": "Język bachtiarski", + "ru": "Бахтиярский язык", + "zh_Hans": "巴赫蒂亚语", + "zh_Hant": "巴赫蒂亞語" + } + }, + { + "if": "language:hrx=yes", + "ifnot": "language:hrx=", + "searchTerms": { + "*": [ + "hrx" + ] + }, + "then": { + "ja": "フンスリュック方言", + "de": "Riograndenser Hunsrückisch", + "en": "Hunsrik", + "eo": "Sudriogranda germana dialekto", + "es": "Riograndenser Hunsrückisch", + "it": "lingua hunsrik", + "nl": "Riograndenser Hunsrückisch", + "pl": "Riograndenser Hunsrückisch", + "pt": "hunsriqueano riograndense", + "pt_BR": "hunsriqueano riograndense", + "ru": "Хунсрик", + "sv": "Riograndenser Hunsrückisch", + "fr": "hunsrik" + } + }, + { + "if": "language:ssf=yes", + "ifnot": "language:ssf=", + "searchTerms": { + "*": [ + "ssf" + ] + }, + "then": { + "en": "Thao", + "nl": "Thao", + "ca": "thao", + "fi": "Thaon kieli", + "fr": "thao", + "it": "lingua thao", + "ja": "サオ語", + "pl": "Język thao", + "id": "Bahasa Thao", + "ru": "Тхао" + } + }, + { + "if": "language:mrh=yes", + "ifnot": "language:mrh=", + "searchTerms": { + "*": [ + "mrh" + ] + }, + "then": { + "ca": "lakher", + "en": "Mara", + "fr": "mara", + "ja": "マラ語", + "ru": "Мара" + } + }, + { + "if": "language:aoc=yes", + "ifnot": "language:aoc=", + "searchTerms": { + "*": [ + "aoc" + ] + }, + "then": { + "de": "Pemón", + "en": "Pemon", + "eo": "pemona lingvo", + "es": "Idioma pemón", + "fr": "pemon", + "it": "pemon", + "ja": "ペモン語", + "nb_NO": "Pemón", + "nl": "Pemón", + "pt": "Língua taurepangue", + "pt_BR": "Língua taurepangue", + "ru": "Пемонский язык", + "ca": "Pemon" + } + }, + { + "if": "language:tsk=yes", + "ifnot": "language:tsk=", + "searchTerms": { + "*": [ + "tsk" + ] + }, + "then": { + "en": "Tseku", + "fr": "tseku", + "ru": "Цеку" + } + }, + { + "if": "language:luz=yes", + "ifnot": "language:luz=", + "searchTerms": { + "*": [ + "luz" + ] + }, + "then": { + "de": "Südliches Lori", + "en": "Southern Luri", + "fr": "luri du Sud", + "ja": "南ロル語", + "ru": "южнолурский язык" + } + }, + { + "if": "language:tce=yes", + "ifnot": "language:tce=", + "searchTerms": { + "*": [ + "tce" + ] + }, + "then": { + "en": "Southern Tutchone", + "es": "tutchone meridional", + "fr": "tutchone du Sud" + } + }, + { + "if": "language:quc=yes", + "ifnot": "language:quc=", + "searchTerms": { + "*": [ + "quc" + ] + }, + "then": { + "ca": "quitxé", + "de": "Quiché-Sprache", + "en": "K’iche’", + "es": "Idioma quiché", + "fi": "k'iche'n kieli", + "fr": "quiché", + "gl": "Lingua kʼicheʼ", + "id": "Bahasa K'iche'", + "it": "lingua k'iche'", + "ja": "キチェ語", + "nb_NO": "Quiché", + "nl": "K'iche'", + "pl": "Język kicze", + "pt": "Língua quiché", + "ru": "киче", + "sv": "quiché" + } + }, + { + "if": "language:bnn=yes", + "ifnot": "language:bnn=", + "searchTerms": { + "*": [ + "bnn" + ] + }, + "then": { + "en": "Bunun", + "ru": "Бунун", + "ca": "bunun", + "fr": "bunun", + "it": "lingua bunun", + "ja": "ブヌン語", + "nl": "Bunun", + "pl": "Język bunun", + "pt": "Língua bunun", + "zh_Hant": "布農語", + "fi": "bununin kieli", + "id": "Bahasa Bunun" + } + }, + { + "if": "language:lzz=yes", + "ifnot": "language:lzz=", + "searchTerms": { + "*": [ + "lzz" + ] + }, + "then": { + "nb_NO": "Lazisk", + "nl": "Lazisch", + "pl": "Język lazyjski", + "pt": "laz", + "ru": "Лазский язык", + "sv": "laziska", + "zh_Hans": "拉兹語", + "zh_Hant": "拉茲語", + "id": "Bahasa Laz", + "en": "Laz", + "de": "Lasisch", + "es": "laz", + "it": "laz", + "hu": "láz", + "fr": "laze", + "ca": "laz", + "eo": "laza lingvo", + "fi": "Lazin kieli", + "gl": "Lingua laz", + "ja": "ラズ語" + } + }, + { + "if": "language:sdh=yes", + "ifnot": "language:sdh=", + "searchTerms": { + "*": [ + "sdh" + ] + }, + "then": { + "ca": "kurd del sud", + "da": "sydkurdisk", + "de": "Südkurdisch", + "en": "Southern Kurdish", + "eo": "Sudaj Kurdaj dialektoj", + "fr": "kurde du Sud", + "id": "Bahasa Kurdi Selatan", + "it": "lingua curda meridionale", + "ja": "南部クルド語", + "nl": "Zuid-Koerdisch", + "pl": "język południowokurdyjski", + "pt": "Curdo meridional", + "pt_BR": "Curdo meridional", + "ru": "южнокурдский язык", + "sv": "sydkurdiska", + "zh_Hans": "南库尔德语", + "zh_Hant": "南庫德語" + } + }, + { + "if": "language:nsk=yes", + "ifnot": "language:nsk=", + "searchTerms": { + "*": [ + "nsk" + ] + }, + "then": { + "en": "Naskapi", + "ru": "Наскапи", + "fr": "naskapi", + "it": "lingua naskapi", + "nb_NO": "Naskapi (språk)" + } + }, + { + "if": "language:akz=yes", + "ifnot": "language:akz=", + "searchTerms": { + "*": [ + "akz" + ] + }, + "then": { + "nl": "Alabama", + "de": "Alabama", + "en": "Alabama", + "nb_NO": "Alabama", + "ca": "alibamu", + "eo": "alabama lingvo", + "es": "Idioma alabama", + "fr": "alabama", + "gl": "Lingua alabama", + "it": "lingua alabama", + "ja": "アラバマ語", + "pl": "język alabama", + "ru": "Алабамский язык" + } + }, + { + "if": "language:kri=yes", + "ifnot": "language:kri=", + "searchTerms": { + "*": [ + "kri" + ] + }, + "then": { + "eo": "Krio", + "nl": "Krio", + "de": "Krio", + "en": "Krio", + "fi": "Krion kieli", + "fr": "krio", + "id": "Bahasa Krio", + "it": "lingua krio", + "ja": "クリオ語", + "pl": "Język krio", + "pt": "Língua krio", + "ru": "Крио", + "sv": "krio", + "zh_Hans": "克里奥语", + "zh_Hant": "克里奧語", + "es": "Criollo sierraleonés" + } + }, + { + "if": "language:kea=yes", + "ifnot": "language:kea=", + "searchTerms": { + "*": [ + "kea" + ] + }, + "then": { + "es": "criollo caboverdiano", + "ca": "crioll capverdià", + "de": "Kapverdisches Kreol", + "en": "Cape Verdean Creole", + "eo": "Kabo-Verda kreolo", + "fi": "Kapverdenkreoli", + "fr": "créole du Cap-Vert", + "gl": "Crioulo caboverdiano", + "it": "creolo capoverdiano", + "ja": "カーボベルデ・クレオール語", + "nb_NO": "kappverdisk kreol", + "nl": "Kaapverdisch Creools", + "pl": "Język kreolski Wysp Zielonego Przylądka", + "pt": "crioulo cabo-verdiano", + "ru": "Кабувердьяну", + "sv": "krioli" + } + }, + { + "if": "language:dru=yes", + "ifnot": "language:dru=", + "searchTerms": { + "*": [ + "dru" + ] + }, + "then": { + "en": "Rukai", + "ca": "rukai", + "es": "rukai", + "fi": "Rukai", + "fr": "rukai", + "gl": "Lingua rukai", + "id": "Bahasa Rukai", + "it": "rukai", + "ja": "ルカイ語", + "nl": "Rukai", + "pl": "Rukai", + "pt": "Língua rukai", + "zh_Hans": "鲁凯语", + "zh_Hant": "魯凱語" + } + }, + { + "if": "language:tzm=yes", + "ifnot": "language:tzm=", + "searchTerms": { + "*": [ + "tzm" + ] + }, + "then": { + "ca": "tamazight", + "de": "Zentralatlas-Tamazight", + "en": "Central Atlas Tamazight", + "eo": "tamaziĥta lingvo", + "es": "Tamazight del Marruecos Central", + "fi": "Keskiatlaksentamazight", + "fr": "tamazight du Maroc central", + "it": "tamazight del Marocco centrale", + "ja": "中央アトラス・タマジクト語", + "nl": "Central Atlas Tamazight", + "pl": "Język tamazight", + "ru": "Тамазигхтские языки", + "sv": "tamazight", + "zh_Hans": "中阿特拉斯柏柏尔语", + "zh_Hant": "中阿特拉斯柏柏語" + } + }, + { + "if": "language:bfq=yes", + "ifnot": "language:bfq=", + "searchTerms": { + "*": [ + "bfq" + ] + }, + "then": { + "en": "Badaga", + "ca": "badaga", + "de": "Badaga", + "fi": "Badagan kieli", + "fr": "badaga", + "id": "Bahasa Badaga", + "it": "lingua badaga", + "ja": "バダガ語", + "nl": "Badaga", + "pl": "Język badaga", + "pt": "Língua badaga", + "pt_BR": "Língua badaga", + "sv": "badaga" + } + }, + { + "if": "language:khw=yes", + "ifnot": "language:khw=", + "searchTerms": { + "*": [ + "khw" + ] + }, + "then": { + "de": "Khowar", + "en": "Khowar", + "fi": "Khowarin kieli", + "fr": "khowar", + "id": "Bahasa Khowar", + "it": "khawar", + "ja": "コワール語", + "nb_NO": "Khowar", + "nl": "Khowar", + "pl": "język khowar", + "pt": "Língua khovar", + "sv": "khowar", + "ru": "кховар" + } + }, + { + "if": "language:uzs=yes", + "ifnot": "language:uzs=", + "searchTerms": { + "*": [ + "uzs" + ] + }, + "then": { + "de": "Südusbekisch", + "en": "Southern Uzbek", + "eo": "sud-uzbeka lingvo", + "fr": "ouzbek du Sud", + "ru": "Южноузбекский язык", + "zh_Hans": "南乌兹别克语", + "zh_Hant": "南烏茲別克語" + } + }, + { + "if": "language:rmf=yes", + "ifnot": "language:rmf=", + "searchTerms": { + "*": [ + "rmf" + ] + }, + "then": { + "en": "Finnish Kalo", + "eo": "finna-cigana lingvo", + "fi": "Suomen romanikieli", + "fr": "romani finlandais", + "it": "lingua kalò della Finlandia", + "pt": "Língua kalo finlandesa", + "ru": "Финский кало" + } + }, + { + "if": "language:osa=yes", + "ifnot": "language:osa=", + "searchTerms": { + "*": [ + "osa" + ] + }, + "then": { + "en": "Osage", + "nl": "Osage", + "ca": "osage", + "fr": "osage", + "nb_NO": "Osage", + "fi": "Osagen kieli", + "it": "lingua osage", + "ja": "オセージ語", + "ru": "Оседжи" + } + }, + { + "if": "language:cps=yes", + "ifnot": "language:cps=", + "searchTerms": { + "*": [ + "cps" + ] + }, + "then": { + "en": "Capiznon", + "fi": "Capiznon", + "fr": "capiznon", + "ja": "カピス語", + "nl": "Capiznon", + "pt": "Língua capiznon", + "es": "idioma capizano", + "da": "kapisansk" + } + }, + { + "if": "language:pjt=yes", + "ifnot": "language:pjt=", + "searchTerms": { + "*": [ + "pjt" + ] + }, + "then": { + "en": "Pitjantjatjara", + "es": "Pitjantjatjara", + "nl": "Pitjantjatjara", + "ru": "питянтятяра", + "eo": "pitjantjatjara lingvo", + "fr": "pitjantjatjara", + "gl": "Lingua pitjantjatjara", + "it": "lingua pitjantjatjara", + "ja": "ピッチャンチャジャーラ語", + "pl": "Język pitjantjatjara", + "sv": "pitjantjatjara", + "de": "Pitjantjatjara Sprache" + } + }, + { + "if": "language:kjp=yes", + "ifnot": "language:kjp=", + "searchTerms": { + "*": [ + "kjp" + ] + }, + "then": { + "en": "Eastern Pwo", + "fr": "pwo de l’Est", + "ja": "東ポー語", + "nl": "oostelijk Pwo", + "ru": "Восточный пво", + "nb_NO": "østpwo" + } + }, + { + "if": "language:gpe=yes", + "ifnot": "language:gpe=", + "searchTerms": { + "*": [ + "gpe" + ] + }, + "then": { + "en": "Ghanaian Pidgin English", + "eo": "ganaa piĝino", + "ru": "ганский пиджин английского" + } + }, + { + "if": "language:kiu=yes", + "ifnot": "language:kiu=", + "searchTerms": { + "*": [ + "kiu" + ] + }, + "then": { + "en": "Kirmanjki", + "ja": "キルマンジュキ語", + "fr": "kirmancki", + "nl": "Noord-Zaza", + "ru": "кирманский" + } + }, + { + "if": "language:rar=yes", + "ifnot": "language:rar=", + "searchTerms": { + "*": [ + "rar" + ] + }, + "then": { + "ca": "maori de les Illes Cook", + "de": "Rarotonganisch", + "en": "Cook Islands Maori", + "eo": "Kuk-insulara maoria lingvo", + "es": "Idioma rarotongano", + "fi": "Rarotongan kieli", + "fr": "maori des îles Cook", + "gl": "Lingua maorí das Illas Cook", + "hu": "Cook-szigeteki maori", + "ja": "ラロトンガ語", + "nb_NO": "rarotongesisk", + "nl": "Cookeilandmaori", + "pl": "język maoryski Wysp Cooka", + "pt": "Maori das Ilhas Cook", + "ru": "кукский язык", + "sv": "rarotongesiska", + "zh_Hant": "庫克羣島毛利人" + } + }, + { + "if": "language:ksw=yes", + "ifnot": "language:ksw=", + "searchTerms": { + "*": [ + "ksw" + ] + }, + "then": { + "en": "S'gaw Karen", + "es": "S'gaw Karen", + "fr": "sgaw", + "ja": "スゴー語" + } + }, + { + "if": "language:zh_Hant=yes", + "ifnot": "language:zh_Hant=", + "searchTerms": { + "*": [ + "zh_Hant" + ] + }, + "then": { + "ca": "xinès simplificat", + "en": "Simplified Chinese", + "da": "forenklet kinesisk", + "fr": "chinois simplifié", + "ru": "упрощённый китайский", + "sv": "förenklad kinesiska", + "de": "vereinfachtes Chinesisch", + "eo": "simpligita ĉina skribsistemo", + "es": "chino simplificado", + "it": "cinese semplificato", + "ja": "簡体字中国語", + "nb_NO": "forenklet kinesisk", + "pl": "język chiński uproszczony", + "pt": "chinês simplificado", + "zh_Hans": "简体中文", + "zh_Hant": "簡體中文", + "hu": "egyszerűsített kínai", + "id": "aksara Han sederhana", + "nl": "vereenvoudigd Chinees" + } + }, + { + "if": "language:pt_BR=yes", + "ifnot": "language:pt_BR=", + "searchTerms": { + "*": [ + "pt_BR" + ] + }, + "then": { + "ca": "portuguès brasiler", + "da": "brasiliansk portugisisk", + "de": "brasilianisches Portugiesisch", + "en": "Brazilian Portuguese", + "eo": "brazilportugala lingvo", + "es": "portugués brasileño", + "fi": "brasilianportugali", + "fr": "portugais brésilien", + "gl": "portugués do Brasil", + "hu": "brazíliai portugál", + "id": "Portugis Brasil", + "it": "portoghese brasiliano", + "ja": "ブラジルポルトガル語", + "nb_NO": "brasiliansk portugisisk", + "nl": "Braziliaans-Portugees", + "pl": "brazylijska odmiana języka portugalskiego", + "pt": "português brasileiro", + "pt_BR": "português brasileiro", + "ru": "бразильский вариант португальского языка", + "sv": "brasiliansk portugisiska", + "zh_Hans": "巴西葡萄牙语", + "zh_Hant": "巴西葡萄牙語" + } + }, + { + "if": "language:fil=yes", + "ifnot": "language:fil=", + "searchTerms": { + "*": [ + "fil" + ] + }, + "then": { + "de": "Filipino", + "en": "Filipino", + "fr": "Philippin", + "it": "filippino", + "da": "Filippinsk", + "eo": "filipina lingvo", + "fi": "filipino", + "hu": "filippínó", + "id": "Bahasa Filipino", + "ja": "フィリピン語", + "nb_NO": "filippinsk", + "nl": "Filipijns", + "pl": "Język filipiński", + "pt": "Língua filipina", + "pt_BR": "Língua filipina", + "ru": "филиппинский язык", + "sv": "Filipino", + "zh_Hant": "菲律賓語", + "es": "idioma filipino", + "ca": "filipí" + } + } + ] + }, + { + "builtin": "wikidata.language", + "override": { + "id": "language-multi", + "description": "Enables to pick *multiple* 'language:=yes' within the mappings", + "multiAnswer": true + } + }, + { + "id": "school-language", + "description": "Enables to pick a single 'school:language=' within the mappings", + "multiAnswer": true, + "mappings": [ + { + "if": "school:language=ay", + "then": { + "ca": "aimara", + "da": "Aymara", + "de": "Aymara", + "en": "Aymara", + "it": "aymara", + "fr": "aymara", + "eo": "ajmara lingvo", + "es": "aymara", + "fi": "aimara", + "gl": "Lingua aimará", + "hu": "ajmara", + "id": "Bahasa Aymara", + "ja": "アイマラ語", + "nb_NO": "aymara", + "nl": "Aymara", + "pl": "język ajmara", + "pt": "Língua aymará", + "pt_BR": "Língua aimará", + "ru": "аймара", + "sl": "Ajmarščina", + "sv": "aymara", + "zh_Hans": "艾马拉语", + "zh_Hant": "艾馬拉語" + }, + "priorityIf": "_country~((^|;)bo($|;))|((^|;)pe($|;))", + "searchTerms": { + "*": [ + "ay" + ] + } + }, + { + "if": "school:language=ab", + "then": { + "sv": "abchaziska", + "zh_Hans": "阿布哈兹语", + "zh_Hant": "阿布哈茲語", + "ca": "abkhaz", + "en": "Abkhaz", + "fr": "abkhaze", + "da": "Abkhasisk", + "de": "Abchasisch", + "eo": "abĥaza lingvo", + "es": "abjasio", + "fi": "abhaasi", + "gl": "Lingua abkhaza", + "hu": "abház", + "id": "Bahasa Abkhaz", + "it": "abcaso", + "ja": "アブハズ語", + "nb_NO": "abkhasisk", + "nl": "Abchazisch", + "pl": "język abchaski", + "pt": "Língua abecásia", + "pt_BR": "Língua abecásia", + "ru": "абхазский язык", + "sl": "Abhaščina" + }, + "priorityIf": "_country~((^|;)ge($|;))", + "searchTerms": { + "*": [ + "ab" + ] + } + }, + { + "if": "school:language=an", + "then": { + "ca": "aragonès", + "da": "aragonsk", + "de": "Aragonesisch", + "en": "Aragonese", + "eo": "aragona lingvo", + "es": "aragonés", + "fi": "aragonia", + "fr": "aragonais", + "gl": "Lingua aragonesa", + "hu": "aragóniai", + "id": "Bahasa Aragon", + "it": "aragonese", + "ja": "アラゴン語", + "nb_NO": "aragonesisk", + "nl": "Aragonees", + "pl": "język aragoński", + "pt": "Língua aragonesa", + "pt_BR": "Língua aragonesa", + "ru": "арагонский язык", + "sv": "aragonska", + "zh_Hans": "阿拉贡语", + "zh_Hant": "亞拉岡語" + }, + "searchTerms": { + "*": [ + "an" + ] + } + }, + { + "if": "school:language=de", + "then": { + "ca": "alemany", + "en": "German", + "fr": "allemand", + "hu": "német", + "id": "Jerman", + "it": "tedesco", + "pt_BR": "alemão", + "de": "Deutsch", + "da": "tysk", + "nl": "Duits", + "es": "alemán", + "ja": "ドイツ語", + "eo": "germana lingvo", + "fi": "saksa", + "gl": "lingua alemá", + "nb_NO": "tysk", + "pl": "język niemiecki", + "pt": "alemão", + "ru": "немецкий язык", + "sl": "nemščina", + "sv": "tyska", + "zh_Hans": "德语", + "zh_Hant": "德語" + }, + "priorityIf": "_country~((^|;)at($|;))|((^|;)be($|;))|((^|;)ch($|;))|((^|;)de($|;))|((^|;)li($|;))|((^|;)lu($|;))", + "searchTerms": { + "*": [ + "de" + ] + } + }, + { + "if": "school:language=ca", + "then": { + "en": "Catalan", + "de": "Katalanisch", + "nl": "Catalaans", + "ca": "català", + "es": "catalán", + "fr": "catalan", + "da": "catalansk", + "eo": "kataluna lingvo", + "fi": "katalaani", + "gl": "lingua catalá", + "hu": "katalán", + "id": "Bahasa Katala", + "it": "catalano", + "ja": "カタルーニャ語", + "nb_NO": "katalansk", + "pl": "język kataloński", + "pt": "língua catalã", + "pt_BR": "língua catalã", + "ru": "каталанский язык", + "sl": "Katalonščina", + "sv": "katalanska", + "zh_Hans": "加泰罗尼亚语", + "zh_Hant": "加泰隆尼亞語" + }, + "priorityIf": "_country~((^|;)ad($|;))", + "searchTerms": { + "*": [ + "ca" + ] + } + }, + { + "if": "school:language=az", + "then": { + "en": "Azerbaijani", + "ca": "àzeri", + "hu": "azeri", + "de": "Aserbaidschanisch", + "es": "azerí", + "it": "azero", + "da": "aserbajdsjansk", + "eo": "azerbajĝana lingvo", + "fi": "azeri", + "fr": "azéri", + "gl": "Lingua azerí", + "id": "Bahasa Azeri", + "ja": "アゼルバイジャン語", + "nb_NO": "aserbajdsjansk", + "nl": "Azerbeidzjaans", + "pl": "język azerski", + "pt": "Língua azeri", + "pt_BR": "língua azeri", + "ru": "азербайджанский язык", + "sl": "azerbajdžanščina", + "sv": "azerbajdzjanska", + "zh_Hans": "阿塞拜疆语", + "zh_Hant": "亞塞拜然語" + }, + "priorityIf": "_country~((^|;)az($|;))", + "searchTerms": { + "*": [ + "az" + ] + } + }, + { + "if": "school:language=hr", + "then": { + "nb_NO": "kroatisk", + "nl": "Kroatisch", + "pl": "język chorwacki", + "pt": "croata", + "pt_BR": "língua croata", + "ru": "хорватский язык", + "sl": "hrvaščina", + "sv": "kroatiska", + "zh_Hans": "克罗地亚语", + "zh_Hant": "克羅埃西亞語", + "ca": "croat", + "da": "kroatisk", + "de": "Kroatisch", + "en": "Croatian", + "eo": "kroata lingvo", + "es": "croata", + "fi": "kroatia", + "fr": "croate", + "gl": "lingua croata", + "hu": "horvát", + "id": "Bahasa Kroasia", + "it": "croato", + "ja": "クロアチア語" + }, + "priorityIf": "_country~((^|;)ba($|;))|((^|;)hr($|;))", + "searchTerms": { + "*": [ + "hr" + ] + } + }, + { + "if": "school:language=eo", + "then": { + "nb_NO": "esperanto", + "pl": "esperanto", + "pt": "esperanto", + "pt_BR": "esperanto", + "ru": "эсперанто", + "sl": "esperanto", + "sv": "esperanto", + "zh_Hans": "世界语", + "en": "Esperanto", + "eo": "Esperanto", + "nl": "Esperanto", + "de": "Esperanto", + "id": "Esperanto", + "zh_Hant": "世界語", + "ja": "エスペラント", + "fr": "espéranto", + "ca": "esperanto", + "da": "esperanto", + "es": "esperanto", + "fi": "esperanto", + "gl": "esperanto", + "hu": "eszperantó", + "it": "esperanto" + }, + "searchTerms": { + "*": [ + "eo" + ] + } + }, + { + "if": "school:language=ba", + "then": { + "it": "baschiro", + "ja": "バシキール語", + "nb_NO": "basjkirsk", + "nl": "Basjkiers", + "pl": "język baszkirski", + "pt": "Língua bashkir", + "pt_BR": "Língua bashkir", + "ru": "башкирский язык", + "sl": "Baškirščina", + "sv": "basjkiriska", + "zh_Hans": "巴什基尔语", + "zh_Hant": "巴什基爾語", + "en": "Bashkir", + "de": "Baschkirisch", + "ca": "baixkir", + "da": "basjkirsk", + "eo": "baŝkira lingvo", + "es": "bashkir", + "fi": "baškiiri", + "fr": "bachkir", + "gl": "Lingua baskir", + "hu": "baskír", + "id": "Bahasa Bashkir" + }, + "searchTerms": { + "*": [ + "ba" + ] + } + }, + { + "if": "school:language=ar", + "then": { + "zh_Hant": "阿拉伯語", + "en": "Arabic", + "id": "Arab", + "nl": "Arabisch", + "sv": "arabiska", + "ca": "àrab", + "es": "árabe", + "fr": "arabe", + "hu": "arab", + "pt_BR": "árabe", + "ru": "арабский язык", + "da": "arabisk", + "de": "Arabisch", + "eo": "araba lingvo", + "fi": "arabia", + "gl": "árabe", + "it": "arabo", + "ja": "アラビア語", + "zh_Hans": "阿拉伯语", + "nb_NO": "arabisk", + "pl": "język arabski", + "pt": "árabe", + "sl": "Arabščina" + }, + "priorityIf": "_country~((^|;)ae($|;))|((^|;)af($|;))|((^|;)bh($|;))|((^|;)dj($|;))|((^|;)dz($|;))|((^|;)eg($|;))|((^|;)er($|;))|((^|;)iq($|;))|((^|;)jo($|;))|((^|;)km($|;))|((^|;)kw($|;))|((^|;)lb($|;))|((^|;)ly($|;))|((^|;)ma($|;))|((^|;)mr($|;))|((^|;)om($|;))|((^|;)pk($|;))|((^|;)ps($|;))|((^|;)qa($|;))|((^|;)sa($|;))|((^|;)sd($|;))|((^|;)so($|;))|((^|;)ss($|;))|((^|;)sy($|;))|((^|;)td($|;))|((^|;)tn($|;))|((^|;)ye($|;))", + "searchTerms": { + "*": [ + "ar" + ] + } + }, + { + "if": "school:language=he", + "then": { + "nb_NO": "hebraisk", + "pl": "język hebrajski", + "pt": "hebraico", + "pt_BR": "hebraico", + "ru": "иврит", + "sl": "Hebrejščina", + "sv": "hebreiska", + "zh_Hans": "希伯来语", + "zh_Hant": "希伯來語", + "nl": "Hebreeuws", + "en": "Hebrew", + "es": "hebreo", + "fr": "hébreu", + "ja": "ヘブライ語", + "ca": "hebreu", + "da": "hebraisk", + "de": "Hebräisch", + "eo": "hebrea lingvo", + "fi": "heprea", + "gl": "lingua hebrea", + "hu": "héber", + "id": "Bahasa Ibrani", + "it": "ebraico" + }, + "priorityIf": "_country~((^|;)il($|;))", + "searchTerms": { + "*": [ + "he" + ] + } + }, + { + "if": "school:language=gl", + "then": { + "en": "Galician", + "es": "gallego", + "ca": "gallec", + "da": "galicisk", + "de": "Galicisch", + "eo": "galega lingvo", + "fi": "galicia", + "fr": "galicien", + "gl": "lingua galega", + "hu": "galiciai", + "id": "Bahasa Galisia", + "it": "gallego", + "ja": "ガリシア語", + "nb_NO": "galisisk", + "nl": "Galicisch", + "pl": "język galicyjski", + "pt": "galego", + "pt_BR": "língua galega", + "ru": "галисийский язык", + "sl": "Galicijščina", + "sv": "galiciska", + "zh_Hant": "加利西亞語" + }, + "searchTerms": { + "*": [ + "gl" + ] + } + }, + { + "if": "school:language=el", + "then": { + "da": "nygræsk", + "eo": "moderna greka lingvo", + "fi": "nykykreikka", + "gl": "lingua grega moderna", + "hu": "újgörög", + "id": "Yunani Modern", + "it": "greco moderno", + "ja": "現代ギリシア語", + "nb_NO": "nygresk", + "nl": "Nieuwgrieks", + "ru": "новогреческий язык", + "de": "Neugriechisch", + "en": "Modern Greek", + "es": "griego moderno", + "fr": "grec moderne", + "ca": "grec modern", + "pl": "język nowogrecki", + "pt": "grego moderno", + "pt_BR": "língua grega", + "sl": "grščina", + "sv": "nygrekiska", + "zh_Hant": "現代希臘語", + "zh_Hans": "希腊语" + }, + "priorityIf": "_country~((^|;)cy($|;))", + "searchTerms": { + "*": [ + "el" + ] + } + }, + { + "if": "school:language=cs", + "then": { + "sl": "češčina", + "sv": "tjeckiska", + "zh_Hans": "捷克语", + "zh_Hant": "捷克語", + "en": "Czech", + "hu": "cseh", + "it": "ceco", + "de": "Tschechisch", + "es": "checo", + "fr": "tchèque", + "ca": "txec", + "da": "tjekkisk", + "eo": "ĉeĥa lingvo", + "fi": "tšekki", + "gl": "lingua checa", + "id": "Bahasa Ceska", + "ja": "チェコ語", + "nb_NO": "tsjekkisk", + "nl": "Tsjechisch", + "pl": "język czeski", + "pt": "checo", + "pt_BR": "língua tcheca", + "ru": "чешский язык" + }, + "priorityIf": "_country~((^|;)cz($|;))", + "searchTerms": { + "*": [ + "cs" + ] + } + }, + { + "if": "school:language=da", + "then": { + "pt": "dinamarquês", + "pt_BR": "dinamarquês", + "ru": "датский язык", + "sl": "Danščina", + "sv": "danska", + "zh_Hans": "丹麦语", + "zh_Hant": "丹麥語", + "ca": "danès", + "da": "dansk", + "de": "Dänisch", + "en": "Danish", + "eo": "dana lingvo", + "es": "danés", + "fi": "tanska", + "fr": "danois", + "gl": "lingua dinamarquesa", + "hu": "dán", + "id": "Bahasa Denmark", + "it": "danese", + "ja": "デンマーク語", + "nb_NO": "dansk", + "nl": "Deens", + "pl": "język duński" + }, + "priorityIf": "_country~((^|;)dk($|;))", + "searchTerms": { + "*": [ + "da" + ] + } + }, + { + "if": "school:language=af", + "then": { + "en": "Afrikaans", + "fr": "afrikaans", + "ca": "afrikaans", + "da": "afrikaans", + "de": "Afrikaans", + "eo": "afrikansa lingvo", + "es": "afrikáans", + "fi": "afrikaans", + "gl": "Lingua africáner", + "hu": "afrikaans", + "id": "Bahasa Afrikaans", + "it": "afrikaans", + "ja": "アフリカーンス語", + "nb_NO": "afrikaans", + "nl": "Afrikaans", + "pl": "język afrikaans", + "pt": "língua africâner", + "pt_BR": "língua africâner", + "ru": "африкаанс", + "sl": "Afrikanščina", + "sv": "afrikaans", + "zh_Hans": "南非语", + "zh_Hant": "南非語" + }, + "priorityIf": "_country~((^|;)za($|;))", + "searchTerms": { + "*": [ + "af" + ] + } + }, + { + "if": "school:language=ga", + "then": { + "en": "Irish", + "es": "irlandés", + "fr": "irlandais", + "hu": "ír", + "it": "irlandese", + "ca": "gaèlic irlandès", + "da": "irsk", + "de": "Irisch", + "eo": "irlanda lingvo", + "fi": "iiri", + "gl": "lingua irlandesa", + "id": "Bahasa Irlandia", + "ja": "アイルランド語", + "nb_NO": "irsk", + "nl": "Iers", + "pl": "język irlandzki", + "pt": "irlandês", + "pt_BR": "língua irlandesa", + "ru": "ирландский язык", + "sl": "Irska gelščina", + "sv": "iriska", + "zh_Hans": "爱尔兰语", + "zh_Hant": "愛爾蘭語" + }, + "priorityIf": "_country~((^|;)ie($|;))", + "searchTerms": { + "*": [ + "ga" + ] + } + }, + { + "if": "school:language=hi", + "then": { + "nb_NO": "hindi", + "pl": "język hindi", + "pt": "língua hindi", + "pt_BR": "língua hindi", + "ru": "хинди", + "sl": "hindijščina", + "sv": "hindi", + "zh_Hans": "印地语", + "zh_Hant": "印地語", + "de": "Hindi", + "en": "Hindi", + "nl": "Hindi", + "es": "hindi", + "ca": "hindi", + "da": "hindi", + "eo": "hindia lingvo", + "fi": "hindi", + "fr": "hindi", + "gl": "lingua hindi", + "hu": "hindi", + "id": "Bahasa Hindi", + "it": "hindi", + "ja": "ヒンディー語" + }, + "priorityIf": "_country~((^|;)in($|;))", + "searchTerms": { + "*": [ + "hi" + ] + } + }, + { + "if": "school:language=bg", + "then": { + "pl": "język bułgarski", + "pt": "língua búlgara", + "pt_BR": "língua búlgara", + "ru": "болгарский язык", + "sl": "bolgarščina", + "sv": "bulgariska", + "zh_Hans": "保加利亚语", + "zh_Hant": "保加利亞語", + "ca": "búlgar", + "da": "bulgarsk", + "de": "Bulgarisch", + "en": "Bulgarian", + "eo": "bulgara lingvo", + "es": "búlgaro", + "fi": "bulgaria", + "fr": "bulgare", + "gl": "lingua búlgara", + "hu": "bolgár", + "id": "Bahasa Bulgaria", + "it": "bulgaro", + "ja": "ブルガリア語", + "nb_NO": "bulgarsk", + "nl": "Bulgaars" + }, + "priorityIf": "_country~((^|;)bg($|;))", + "searchTerms": { + "*": [ + "bg" + ] + } + }, + { + "if": "school:language=be", + "then": { + "ca": "bielorús", + "da": "hviderussisk", + "de": "Belarussisch", + "en": "Belarusian", + "eo": "belorusa lingvo", + "es": "bielorruso", + "fi": "valkovenäjä", + "fr": "biélorusse", + "gl": "Lingua belarusa", + "hu": "belarusz", + "id": "Bahasa Belarus", + "it": "bielorusso", + "ja": "ベラルーシ語", + "nl": "Wit-Russisch", + "pl": "język białoruski", + "pt": "Língua bielorrussa", + "pt_BR": "língua bielorrussa", + "ru": "белорусский язык", + "sl": "Beloruščina", + "sv": "belarusiska", + "zh_Hans": "白俄罗斯语", + "zh_Hant": "白俄羅斯語", + "nb_NO": "belarusisk" + }, + "priorityIf": "_country~((^|;)by($|;))", + "searchTerms": { + "*": [ + "be" + ] + } + }, + { + "if": "school:language=gu", + "then": { + "en": "Gujarati", + "ru": "гуджарати", + "de": "Gujarati", + "nl": "Gujarati", + "ca": "gujarati", + "da": "gujarati", + "eo": "guĝarata lingvo", + "es": "guyaratí", + "fi": "Gudžarati", + "fr": "gujarati", + "gl": "lingua guxaratí", + "hu": "gudzsaráti", + "id": "Bahasa Gujarati", + "it": "gujarati", + "ja": "グジャラート語", + "nb_NO": "gujarati", + "pl": "język gudźarati", + "pt": "gujarate", + "pt_BR": "Língua gujarati", + "sl": "gudžaratščina", + "sv": "gujarati" + }, + "searchTerms": { + "*": [ + "gu" + ] + } + }, + { + "if": "school:language=cy", + "then": { + "da": "walisisk", + "de": "Walisisch", + "eo": "kimra lingvo", + "fi": "kymri", + "gl": "lingua galesa", + "hu": "walesi", + "id": "Bahasa Wales", + "it": "gallese", + "ja": "ウェールズ語", + "nb_NO": "walisisk", + "pl": "język walijski", + "pt": "galês", + "pt_BR": "galês", + "ru": "валлийский язык", + "sl": "Valižanščina", + "ca": "gal·lès", + "es": "galés", + "fr": "gallois", + "en": "Welsh", + "nl": "Welsh", + "sv": "kymriska", + "zh_Hant": "威爾士語" + }, + "searchTerms": { + "*": [ + "cy" + ] + } + }, + { + "if": "school:language=fr", + "then": { + "nb_NO": "fransk", + "pl": "język francuski", + "pt_BR": "francês", + "ru": "французский язык", + "sl": "francoščina", + "sv": "franska", + "zh_Hans": "法语", + "es": "francés", + "nl": "Frans", + "en": "French", + "fr": "français", + "it": "francese", + "pt": "francês", + "hu": "francia", + "ca": "francès", + "zh_Hant": "法語", + "de": "Französisch", + "id": "Prancis", + "da": "fransk", + "eo": "franca lingvo", + "fi": "ranska", + "gl": "lingua francesa", + "ja": "フランス語" + }, + "priorityIf": "_country~((^|;)be($|;))|((^|;)bf($|;))|((^|;)bi($|;))|((^|;)bj($|;))|((^|;)ca($|;))|((^|;)cd($|;))|((^|;)cf($|;))|((^|;)cg($|;))|((^|;)ch($|;))|((^|;)ci($|;))|((^|;)cm($|;))|((^|;)dj($|;))|((^|;)fr($|;))|((^|;)ga($|;))|((^|;)gn($|;))|((^|;)gq($|;))|((^|;)ht($|;))|((^|;)km($|;))|((^|;)lu($|;))|((^|;)mc($|;))|((^|;)mg($|;))|((^|;)ml($|;))|((^|;)mu($|;))|((^|;)ne($|;))|((^|;)rw($|;))|((^|;)sc($|;))|((^|;)sn($|;))|((^|;)td($|;))|((^|;)tg($|;))|((^|;)va($|;))|((^|;)vu($|;))", + "searchTerms": { + "*": [ + "fr" + ] + } + }, + { + "if": "school:language=hsb", + "then": { + "hu": "felsőszorb", + "id": "Bahasa Sorbia Hulu", + "it": "alto sorabo", + "ja": "高地ソルブ語", + "nl": "Oppersorbisch", + "pl": "język górnołużycki", + "pt": "alto sorábio", + "pt_BR": "Alto sorábio", + "ru": "верхнелужицкий язык", + "sl": "Zgornjelužiščina", + "sv": "högsorbiska", + "zh_Hans": "上索布语", + "zh_Hant": "上索布语", + "ca": "alt sòrab", + "de": "Obersorbisch", + "en": "Upper Sorbian", + "eo": "suprasoraba lingvo", + "es": "alto sorabo", + "fi": "yläsorbi", + "fr": "haut-sorabe", + "gl": "Alto sorabo" + }, + "searchTerms": { + "*": [ + "hsb" + ] + } + }, + { + "if": "school:language=fy", + "then": { + "ca": "frisó occidental", + "da": "Westerlauwersfrisisk", + "de": "Westfriesisch", + "en": "West Frisian", + "eo": "okcidentfrisa lingvo", + "es": "frisón occidental", + "fi": "länsifriisin kieli", + "fr": "frison occidental", + "gl": "Lingua frisoa occidental", + "hu": "nyugati fríz", + "id": "Bahasa Frisia Barat", + "it": "frisone occidentale", + "ja": "西フリジア語", + "nb_NO": "vestfrisisk", + "nl": "Westerlauwers Fries", + "pl": "język zachodniofryzyjski", + "pt": "frísio ocidental", + "pt_BR": "frísio ocidental", + "ru": "западнофризский язык", + "sv": "västfrisiska", + "zh_Hans": "西弗里斯兰语", + "zh_Hant": "西菲士蘭語" + }, + "searchTerms": { + "*": [ + "fy" + ] + } + }, + { + "if": "school:language=ak", + "then": { + "eo": "akanaj lingvoj", + "es": "lenguas akánicas", + "fi": "akanin kieli", + "fr": "akan", + "gl": "Lingua akán", + "hu": "akan", + "it": "akan", + "ja": "アカン語", + "nb_NO": "akan", + "nl": "Akan", + "pl": "język akan", + "pt": "língua akan", + "pt_BR": "língua akan", + "ru": "акан", + "sv": "akan", + "zh_Hans": "阿肯语", + "zh_Hant": "阿寒語", + "ca": "àkan", + "de": "Akan", + "en": "Akan" + }, + "searchTerms": { + "*": [ + "ak" + ] + } + }, + { + "if": "school:language=am", + "then": { + "en": "Amharic", + "ca": "amhàric", + "fr": "amharique", + "da": "amharisk", + "de": "Amharisch", + "eo": "amhara lingvo", + "es": "amhárico", + "fi": "amharan kieli", + "gl": "Lingua amhárica", + "hu": "amhara", + "id": "Bahasa Amhar", + "it": "amarico", + "ja": "アムハラ語", + "nb_NO": "amharisk", + "nl": "Amhaars", + "pl": "język amharski", + "pt": "Língua amárica", + "pt_BR": "língua amárica", + "ru": "амхарский язык", + "sl": "Amharščina", + "sv": "amhariska", + "zh_Hans": "阿姆哈拉语", + "zh_Hant": "阿姆哈拉語" + }, + "priorityIf": "_country~((^|;)et($|;))", + "searchTerms": { + "*": [ + "am" + ] + } + }, + { + "if": "school:language=es", + "then": { + "pl": "język hiszpański", + "pt": "espanhol", + "pt_BR": "espanhol", + "ru": "испанский язык", + "sl": "španščina", + "sv": "spanska", + "zh_Hans": "西班牙语", + "zh_Hant": "西班牙語", + "hu": "spanyol", + "id": "Spanyol", + "it": "spagnolo", + "ja": "スペイン語", + "nb_NO": "spansk", + "nl": "Spaans", + "en": "Spanish", + "es": "español", + "ca": "castellà", + "fr": "espagnol", + "da": "spansk", + "de": "Spanisch", + "eo": "hispana lingvo", + "fi": "espanja", + "gl": "lingua castelá" + }, + "priorityIf": "_country~((^|;)ar($|;))|((^|;)bo($|;))|((^|;)cl($|;))|((^|;)co($|;))|((^|;)cr($|;))|((^|;)cu($|;))|((^|;)do($|;))|((^|;)ec($|;))|((^|;)es($|;))|((^|;)gq($|;))|((^|;)gt($|;))|((^|;)hn($|;))|((^|;)mx($|;))|((^|;)ni($|;))|((^|;)pa($|;))|((^|;)pe($|;))|((^|;)py($|;))|((^|;)sv($|;))|((^|;)uy($|;))|((^|;)ve($|;))", + "searchTerms": { + "*": [ + "es" + ] + } + }, + { + "if": "school:language=bs", + "then": { + "en": "Bosnian", + "es": "bosnio", + "de": "Bosnisch", + "ca": "bosnià", + "da": "bosnisk", + "eo": "bosna lingvo", + "fi": "bosnia", + "fr": "bosnien", + "gl": "Lingua bosníaca", + "hu": "bosnyák", + "id": "Bahasa Bosnia", + "it": "bosniaco", + "ja": "ボスニア語", + "nb_NO": "bosnisk", + "nl": "Bosnisch", + "pl": "język bośniacki", + "pt": "Língua bósnia", + "pt_BR": "língua bósnia", + "ru": "боснийский язык", + "sl": "Bosanščina", + "sv": "bosniska", + "zh_Hans": "波斯尼亚语", + "zh_Hant": "波士尼亞語" + }, + "priorityIf": "_country~((^|;)ba($|;))", + "searchTerms": { + "*": [ + "bs" + ] + } + }, + { + "if": "school:language=diq", + "then": { + "ca": "zazaqui", + "da": "Zazaki", + "de": "Zaza-Sprache", + "en": "Zazaki", + "eo": "zazaa lingvo", + "es": "zazaki", + "fi": "zaza", + "fr": "zazaki", + "gl": "Lingua zazaki", + "hu": "zazaki", + "id": "Bahasa Zazaki", + "it": "zazaki", + "ja": "ザザキ語", + "nb_NO": "zazaisk", + "nl": "Zazaki", + "pl": "język zazaki", + "pt": "Zazaki", + "pt_BR": "Zazaki", + "ru": "зазаки", + "sv": "zazaiska", + "zh_Hans": "扎扎其语", + "zh_Hant": "扎扎其語" + }, + "searchTerms": { + "*": [ + "diq" + ] + } + }, + { + "if": "school:language=dz", + "then": { + "nl": "Dzongkha", + "pl": "Dzongkha", + "pt": "língua butanesa", + "pt_BR": "Língua butanesa", + "ru": "дзонг-кэ", + "sl": "Dzongkha", + "sv": "dzongkha", + "zh_Hans": "宗卡语", + "zh_Hant": "宗喀語", + "ca": "dzongkha", + "da": "dzongkha", + "de": "Dzongkha", + "en": "Dzongkha", + "eo": "dzonka lingvo", + "es": "dzongkha", + "fi": "Dzongkhan kieli", + "fr": "dzongkha", + "gl": "Lingua dzongkha", + "hu": "dzongkha", + "id": "Dzongkha", + "it": "dzongkha", + "ja": "ゾンカ語", + "nb_NO": "dzongkha" + }, + "priorityIf": "_country~((^|;)bt($|;))", + "searchTerms": { + "*": [ + "dz" + ] + } + }, + { + "if": "school:language=co", + "then": { + "es": "corso", + "en": "Corsican", + "ca": "cors", + "fr": "corse", + "da": "Korsikansk", + "de": "Korsisch", + "eo": "korsika lingvo", + "fi": "Korsikan kieli", + "gl": "Lingua corsa", + "hu": "korzikai", + "id": "Bahasa Korsika", + "it": "Lingua corsa", + "ja": "コルシカ語", + "nb_NO": "korsikansk", + "nl": "Corsicaans", + "pl": "język korsykański", + "pt": "Língua corsa", + "ru": "корсиканский язык", + "sl": "Korziščina", + "sv": "korsikanska" + }, + "searchTerms": { + "*": [ + "co" + ] + } + }, + { + "if": "school:language=cr", + "then": { + "id": "Bahasa Cree", + "it": "cree", + "ja": "クリー語", + "nb_NO": "cree", + "pl": "język kri", + "pt": "Língua cree", + "sv": "cree", + "de": "Cree", + "en": "Cree", + "fi": "Cree", + "nl": "Cree", + "fr": "cri", + "ca": "cree", + "ru": "кри", + "eo": "kria lingvo", + "es": "idioma cree", + "gl": "Lingua cree", + "hu": "krí" + }, + "searchTerms": { + "*": [ + "cr" + ] + } + }, + { + "if": "school:language=csb", + "then": { + "de": "Kaschubisch", + "en": "Kashubian", + "ca": "caixubi", + "da": "Kasjubisk", + "eo": "kaŝuba lingvo", + "es": "casubio", + "fi": "Kašubi", + "fr": "cachoube", + "gl": "Lingua caxubia", + "hu": "kasub", + "id": "bahasa Kasubia", + "it": "casciubo", + "ja": "カシューブ語", + "nb_NO": "kasjubisk", + "nl": "Kasjoebisch", + "pl": "język kaszubski", + "pt": "cassúbio", + "pt_BR": "Língua cassúbia", + "ru": "кашубский язык", + "sl": "Kašubščina", + "sv": "kasjubiska" + }, + "searchTerms": { + "*": [ + "csb" + ] + } + }, + { + "if": "school:language=gv", + "then": { + "hu": "manx", + "id": "Bahasa Manx", + "ja": "マン島語", + "nb_NO": "mansk", + "pl": "język manx", + "pt": "Língua manesa", + "pt_BR": "manês", + "ru": "мэнский язык", + "sl": "Manska gelščina", + "sv": "manx", + "en": "Manx", + "nl": "Manx", + "fr": "mannois", + "de": "Manx", + "it": "mannese", + "ca": "gaèlic manx", + "da": "Manx", + "eo": "manksa lingvo", + "es": "manés", + "fi": "manksi", + "gl": "Lingua manx" + }, + "searchTerms": { + "*": [ + "gv" + ] + } + }, + { + "if": "school:language=cv", + "then": { + "ca": "txuvaix", + "de": "Tschuwaschisch", + "en": "Chuvash", + "eo": "ĉuvaŝa lingvo", + "es": "chuvasio", + "fi": "tšuvassi", + "fr": "tchouvache", + "gl": "Lingua chuvash", + "hu": "csuvas", + "id": "Bahasa Chuvash", + "it": "ciuvascio", + "ja": "チュヴァシ語", + "nb_NO": "tsjuvasjisk", + "nl": "Tsjoevasjisch", + "pl": "język czuwaski", + "pt": "tchuvache", + "pt_BR": "Língua tchuvache", + "ru": "чувашский язык", + "sv": "tjuvasjiska", + "zh_Hant": "楚瓦什語" + }, + "searchTerms": { + "*": [ + "cv" + ] + } + }, + { + "if": "school:language=bn", + "then": { + "de": "Bengali", + "en": "Bengali", + "nl": "Bengaals", + "sl": "bengalščina", + "sv": "bengali", + "zh_Hans": "孟加拉语", + "zh_Hant": "孟加拉語", + "ca": "bengalí", + "da": "bengali", + "eo": "bengala lingvo", + "es": "bengalí", + "fi": "bengali", + "fr": "bengali", + "gl": "lingua bengalí", + "hu": "bengáli", + "id": "Bahasa Bengali", + "it": "bengali", + "ja": "ベンガル語", + "nb_NO": "bengali", + "pl": "język bengalski", + "pt": "língua bengali", + "pt_BR": "língua bengali", + "ru": "бенгальский язык" + }, + "priorityIf": "_country~((^|;)bd($|;))", + "searchTerms": { + "*": [ + "bn" + ] + } + }, + { + "if": "school:language=gd", + "then": { + "nb_NO": "skotsk-gælisk", + "nl": "Schots-Gaelisch", + "pl": "język gaelicki szkocki", + "pt": "Língua gaélica escocesa", + "pt_BR": "Língua gaélica escocesa", + "sl": "Škotska gelščina", + "ru": "шотландский гэльский язык", + "sv": "skotsk gaeliska", + "ca": "gaèlic escocès", + "da": "skotsk gælisk", + "de": "Schottisch-Gälisch", + "en": "Scottish Gaelic", + "eo": "skotgaela lingvo", + "es": "gaélico escocés", + "fi": "Gaeli", + "fr": "gaélique écossais", + "gl": "Lingua gaélica escocesa", + "hu": "skót gael", + "id": "Bahasa Gaelik Skotlandia", + "it": "gaelico scozzese", + "ja": "スコットランド・ゲール語" + }, + "searchTerms": { + "*": [ + "gd" + ] + } + }, + { + "if": "school:language=av", + "then": { + "ca": "àvar", + "de": "Awarisch", + "en": "Avaric", + "eo": "avara lingvo", + "es": "ávaro", + "fi": "Avaarin kieli", + "fr": "avar", + "gl": "Lingua avar", + "hu": "avar", + "id": "Bahasa Avar", + "ja": "アヴァル語", + "nb_NO": "avarisk", + "nl": "Avaars", + "pl": "język awarski", + "pt": "Língua avar", + "ru": "аварский язык", + "sl": "Avarščina", + "sv": "avariska", + "it": "avaro" + }, + "searchTerms": { + "*": [ + "av" + ] + } + }, + { + "if": "school:language=awa", + "then": { + "ca": "Avadhi", + "de": "Awadhi", + "en": "Awadhi", + "es": "awadhi", + "fi": "Awadhin kieli", + "fr": "awadhi", + "gl": "Lingua awadhi", + "id": "Bahasa Awadhi", + "it": "awadhi", + "ja": "アワディー語", + "nb_NO": "Awadhi", + "nl": "Awadhi", + "pl": "Awadhi", + "pt": "Língua awadhi", + "pt_BR": "Língua awadhi", + "ru": "авадхи", + "sv": "awadhi", + "zh_Hans": "阿瓦德语", + "zh_Hant": "阿瓦德語" + }, + "searchTerms": { + "*": [ + "awa" + ] + } + }, + { + "if": "school:language=br", + "then": { + "en": "Breton", + "ca": "bretó", + "pt": "bretão", + "da": "bretonsk", + "de": "Bretonisch", + "eo": "bretona lingvo", + "es": "bretón", + "fi": "bretoni", + "fr": "breton", + "gl": "lingua bretoa", + "hu": "breton", + "id": "Bahasa Breton", + "it": "bretone", + "ja": "ブルトン語", + "nb_NO": "bretonsk", + "nl": "Bretons", + "pl": "język bretoński", + "pt_BR": "língua bretã", + "ru": "бретонский язык", + "sl": "Bretonščina", + "sv": "bretonska", + "zh_Hant": "布列塔尼語" + }, + "searchTerms": { + "*": [ + "br" + ] + } + }, + { + "if": "school:language=ee", + "then": { + "en": "Ewe", + "fr": "ewe", + "de": "Ewe", + "nl": "Ewe", + "es": "ewé", + "it": "ewe", + "ca": "ewe", + "eo": "evea lingvo", + "fi": "ewen kieli", + "gl": "Lingua ewe", + "hu": "eve", + "id": "Bahasa Ewe", + "ja": "エウェ語", + "nb_NO": "ewe", + "pl": "Język ewe", + "pt": "ewe", + "ru": "эве", + "sv": "ewe" + }, + "searchTerms": { + "*": [ + "ee" + ] + } + }, + { + "if": "school:language=dag", + "then": { + "de": "Dagbani", + "en": "Dagbani", + "es": "dagbani", + "fr": "dagbani", + "gl": "Lingua dagbani", + "it": "Dagbani", + "ja": "ダバニ語", + "nl": "Dagbani", + "pt": "Língua dagbani", + "pt_BR": "Língua dagbani", + "ru": "Дагбани", + "sv": "dagbani", + "eo": "Dagbania lingvo", + "da": "Dagbani", + "ca": "dagbani" + }, + "searchTerms": { + "*": [ + "dag" + ] + } + }, + { + "if": "school:language=dv", + "then": { + "en": "Maldivian", + "ca": "divehi", + "da": "Dhivehi", + "de": "Dhivehi", + "eo": "maldiva lingvo", + "es": "dhivehi", + "fi": "Divehin kieli", + "fr": "maldivien", + "gl": "lingua maldivana", + "hu": "maldív", + "id": "Divehi", + "it": "maldiviano", + "ja": "ディベヒ語", + "nb_NO": "dhivehi", + "nl": "Maldivisch", + "pl": "język malediwski", + "pt": "Língua divehi", + "pt_BR": "Língua divehi", + "ru": "мальдивский язык", + "sv": "divehi" + }, + "priorityIf": "_country~((^|;)mv($|;))", + "searchTerms": { + "*": [ + "dv" + ] + } + }, + { + "if": "school:language=fi", + "then": { + "nl": "Fins", + "de": "Finnisch", + "en": "Finnish", + "ja": "フィンランド語", + "fi": "suomi", + "es": "finés", + "ru": "финский язык", + "hu": "finn", + "id": "Finlandia", + "it": "finlandese", + "ca": "finès", + "da": "finsk", + "eo": "finna lingvo", + "fr": "finnois", + "gl": "finés", + "nb_NO": "finsk", + "pl": "język fiński", + "pt": "finlandês", + "pt_BR": "língua finlandesa", + "sl": "finščina", + "sv": "finska", + "zh_Hans": "芬兰语", + "zh_Hant": "芬蘭語" + }, + "priorityIf": "_country~((^|;)fi($|;))", + "searchTerms": { + "*": [ + "fi" + ] + } + }, + { + "if": "school:language=en", + "then": { + "pl": "język angielski", + "pt": "inglês", + "pt_BR": "inglês", + "ru": "английский язык", + "sl": "angleščina", + "sv": "engelska", + "zh_Hans": "英语", + "zh_Hant": "英語", + "ca": "anglès", + "da": "engelsk", + "de": "Englisch", + "en": "English", + "eo": "angla lingvo", + "es": "inglés", + "fi": "englanti", + "fr": "anglais", + "gl": "lingua inglesa", + "hu": "angol", + "id": "Inggris", + "it": "inglese", + "ja": "英語", + "nb_NO": "engelsk", + "nl": "Engels" + }, + "priorityIf": "_country~((^|;)ag($|;))|((^|;)au($|;))|((^|;)bb($|;))|((^|;)bi($|;))|((^|;)bn($|;))|((^|;)bs($|;))|((^|;)bw($|;))|((^|;)bz($|;))|((^|;)ca($|;))|((^|;)cm($|;))|((^|;)dm($|;))|((^|;)er($|;))|((^|;)fj($|;))|((^|;)fm($|;))|((^|;)gb($|;))|((^|;)gd($|;))|((^|;)gh($|;))|((^|;)gi($|;))|((^|;)gm($|;))|((^|;)gy($|;))|((^|;)ie($|;))|((^|;)in($|;))|((^|;)jm($|;))|((^|;)ke($|;))|((^|;)ki($|;))|((^|;)kn($|;))|((^|;)lc($|;))|((^|;)lr($|;))|((^|;)ls($|;))|((^|;)mh($|;))|((^|;)mt($|;))|((^|;)mu($|;))|((^|;)mw($|;))|((^|;)na($|;))|((^|;)ng($|;))|((^|;)nr($|;))|((^|;)nz($|;))|((^|;)pg($|;))|((^|;)ph($|;))|((^|;)pk($|;))|((^|;)pw($|;))|((^|;)rw($|;))|((^|;)sb($|;))|((^|;)sc($|;))|((^|;)sd($|;))|((^|;)sg($|;))|((^|;)sl($|;))|((^|;)ss($|;))|((^|;)sz($|;))|((^|;)to($|;))|((^|;)tt($|;))|((^|;)tv($|;))|((^|;)tz($|;))|((^|;)ug($|;))|((^|;)vc($|;))|((^|;)vu($|;))|((^|;)ws($|;))|((^|;)za($|;))|((^|;)zm($|;))|((^|;)zw($|;))", + "searchTerms": { + "*": [ + "en" + ] + } + }, + { + "if": "school:language=ady", + "then": { + "it": "adighè", + "ca": "adigué", + "de": "Adygeisch", + "en": "Adyghe", + "eo": "adigea lingvo", + "es": "idioma adigué", + "fi": "adygen kieli", + "fr": "adyguéen", + "gl": "Lingua adigue", + "ja": "アディゲ語", + "nb_NO": "adygeisk", + "nl": "West-Circassisch", + "pl": "język adygejski", + "pt": "língua adigue", + "ru": "адыгейский язык", + "sv": "adygeiska", + "id": "Bahasa Adighe" + }, + "searchTerms": { + "*": [ + "ady" + ] + } + }, + { + "if": "school:language=as", + "then": { + "en": "Assamese", + "ca": "assamès", + "da": "assamesisk", + "de": "Assamesisch", + "eo": "asama lingvo", + "es": "asamés", + "fi": "assami", + "fr": "assamais", + "gl": "Lingua asamesa", + "hu": "asszámi", + "id": "Bahasa Assam", + "it": "assamese", + "ja": "アッサム語", + "nb_NO": "assamesisk", + "nl": "Assamees", + "pl": "język asamski", + "pt": "língua assamesa", + "ru": "ассамский язык", + "sv": "assamesiska", + "zh_Hant": "阿薩姆語" + }, + "searchTerms": { + "*": [ + "as" + ] + } + }, + { + "if": "school:language=gn", + "then": { + "nb_NO": "guaraní", + "nl": "Guarani", + "pl": "język guarani", + "pt": "língua guarani", + "pt_BR": "língua guarani", + "ru": "гуарани", + "sl": "Gvaranščina", + "sv": "guaraní", + "ca": "guaraní", + "da": "Guaraní", + "de": "Guaraní", + "en": "Guarani", + "eo": "gvarania lingvo", + "es": "guaraní", + "fi": "Guaranin kieli", + "fr": "guarani", + "gl": "Lingua guaraní", + "hu": "guarani", + "id": "Bahasa Guarani", + "it": "guaraní", + "ja": "グアラニー語" + }, + "priorityIf": "_country~((^|;)bo($|;))|((^|;)py($|;))", + "searchTerms": { + "*": [ + "gn" + ] + } + }, + { + "if": "school:language=hif", + "then": { + "en": "Fiji Hindi", + "ca": "hindi de Fiji", + "da": "Fiji Hindi", + "de": "Fidschi-Hindi", + "eo": "Fiĝia hindia lingvo", + "es": "hindi de Fiyi", + "fi": "Fidžinhindi", + "fr": "hindi des Fidji", + "gl": "Hindi de Fidxi", + "id": "Bahasa Fiji Hindi", + "it": "hindi figiano", + "ja": "フィジー・ヒンディー語", + "nb_NO": "Fijiansk hindi", + "nl": "Fijisch Hindoestani", + "pl": "hindi fidżyjskie", + "pt": "Hindi fijiano", + "ru": "фиджийский хинди", + "sv": "fijiansk hindi" + }, + "searchTerms": { + "*": [ + "hif" + ] + } + }, + { + "if": "school:language=ast", + "then": { + "zh_Hans": "阿斯图里亚斯语", + "zh_Hant": "阿斯圖里亞斯語", + "ca": "asturià", + "da": "asturiansk", + "de": "Asturisch", + "en": "Asturian", + "eo": "astura lingvo", + "es": "asturiano", + "fi": "asturia", + "fr": "asturien", + "gl": "lingua asturiana", + "hu": "asztúriai", + "id": "Bahasa Asturia", + "it": "asturiano", + "ja": "アストゥリアス語", + "nb_NO": "asturiansk", + "nl": "Asturisch", + "pl": "język asturyjski", + "pt": "asturiano", + "pt_BR": "Língua asturiana", + "ru": "астурийский язык", + "sv": "asturiska" + }, + "searchTerms": { + "*": [ + "ast" + ] + } + }, + { + "if": "school:language=dsb", + "then": { + "it": "sorabo inferiore", + "ja": "低地ソルブ語", + "nl": "Nedersorbisch", + "pl": "język dolnołużycki", + "pt": "baixo sorábio", + "pt_BR": "Baixo sorábio", + "ru": "нижнелужицкий язык", + "sl": "Dolnjesrbščina", + "sv": "lågsorbiska", + "en": "Lower Sorbian", + "ca": "baix sòrab", + "de": "Niedersorbisch", + "eo": "malsuprasoraba lingvo", + "es": "bajo sorabo", + "fr": "bas-sorabe", + "gl": "Baixo sorabo", + "hu": "alsó szorb", + "id": "Bahasa Sorbia Hilir" + }, + "searchTerms": { + "*": [ + "dsb" + ] + } + }, + { + "if": "school:language=haw", + "then": { + "gl": "Lingua hawaiana", + "hu": "hawaii", + "id": "Bahasa Hawaii", + "it": "hawaiano", + "ja": "ハワイ語", + "nb_NO": "hawaiisk", + "nl": "Hawaïaans", + "pl": "język hawajski", + "pt": "havaiano", + "pt_BR": "língua havaiana", + "ru": "гавайский язык", + "sl": "Havajščina", + "sv": "hawaiiska", + "zh_Hant": "夏威夷語", + "en": "Hawaiian", + "fr": "hawaïen", + "ca": "hawaià", + "da": "Hawaiiansk", + "de": "Hawaiisch", + "eo": "havaja lingvo", + "es": "hawaiano", + "fi": "havaijin kieli" + }, + "searchTerms": { + "*": [ + "haw" + ] + } + }, + { + "if": "school:language=glk", + "then": { + "ca": "gilaki", + "de": "Gilaki", + "en": "Gilaki", + "eo": "gila lingvo", + "es": "gileki", + "fi": "Gilakin kieli", + "fr": "gilaki", + "gl": "Lingua gilaki", + "hu": "gilaki", + "id": "Bahasa Gilaki", + "it": "gilaki", + "ja": "ギラキ語", + "nb_NO": "Gileki", + "nl": "Gilaki", + "pl": "Język giliański", + "pt": "Língua gilaki", + "sv": "gilaki", + "ru": "гилякский язык" + }, + "searchTerms": { + "*": [ + "glk" + ] + } + }, + { + "if": "school:language=gag", + "then": { + "zh_Hans": "加告兹语", + "zh_Hant": "加告茲語", + "hu": "gagauz", + "ca": "gagaús", + "de": "Gagausisch", + "en": "Gagauz", + "eo": "gagauza lingvo", + "es": "gagauzo", + "fi": "gagauzi", + "fr": "gagaouze", + "gl": "Lingua gagauza", + "id": "Bahasa Gagauz", + "it": "gagauzo", + "ja": "ガガウズ語", + "nb_NO": "gagausisk", + "nl": "Gagaoezisch", + "pl": "Język gagauski", + "pt": "Língua gagaúza", + "ru": "Гагаузский язык", + "sl": "Gagauščina", + "sv": "gagauziska" + }, + "searchTerms": { + "*": [ + "gag" + ] + } + }, + { + "if": "school:language=gan", + "then": { + "en": "Gan", + "nl": "Gan", + "ca": "gan", + "da": "Gan", + "de": "Gan", + "eo": "gana lingvo", + "es": "chino gan", + "fi": "Gan-kiina", + "fr": "gan", + "gl": "Gan", + "id": "Bahasa Gan", + "it": "gan", + "ja": "贛語", + "nb_NO": "gan", + "pl": "język gan", + "pt": "Chinês gan", + "ru": "Гань", + "sv": "gan", + "zh_Hant": "贛語" + }, + "searchTerms": { + "*": [ + "gan" + ] + } + }, + { + "if": "school:language=ase", + "then": { + "de": "American Sign Language", + "en": "American Sign Language", + "eo": "usona signolingvo", + "es": "lengua de señas americana", + "fi": "amerikkalainen viittomakieli", + "fr": "langue des signes américaine", + "gl": "Lingua de signos americana", + "id": "Bahasa Isyarat Amerika", + "it": "lingua dei segni americana", + "ja": "アメリカ手話", + "nb_NO": "amerikansk tegnspråk", + "nl": "Amerikaanse Gebarentaal", + "pl": "amerykański język migowy", + "pt": "língua de sinais americana", + "pt_BR": "Língua de sinais americana", + "ru": "амслен", + "sv": "amerikanskt teckenspråk", + "zh_Hant": "美國手語", + "da": "ASL", + "ca": "llengua de signes americana" + }, + "searchTerms": { + "*": [ + "ase" + ] + } + }, + { + "if": "school:language=cal", + "then": { + "en": "Carolinian", + "fi": "Karoliini", + "ca": "carolinià", + "de": "Karolinisch", + "eo": "karolina lingvo", + "es": "carolinio", + "fr": "carolinien", + "id": "Bahasa Caroline", + "it": "lingua caroliniana", + "ja": "カロリン語", + "nb_NO": "karolinsk", + "nl": "Caroliniaans", + "pt": "Língua caroliniana", + "ru": "Каролинский язык", + "sv": "karoliniska", + "pl": "język karoliński" + }, + "searchTerms": { + "*": [ + "cal" + ] + } + }, + { + "if": "school:language=gil", + "then": { + "it": "gilbertese", + "ca": "gilbertès", + "da": "Kiribatisk", + "de": "Kiribatisch", + "en": "Gilbertese", + "eo": "kiribata lingvo", + "es": "gilbertino", + "fi": "Kiribatin kieli", + "fr": "gilbertin", + "gl": "Lingua kiribatiana", + "hu": "gilberti", + "id": "Bahasa Kiribati", + "ja": "キリバス語", + "nb_NO": "Kiribatisk", + "nl": "Kiribatisch", + "pl": "Język kiribati", + "pt": "Gilbertês", + "ru": "кирибати", + "sv": "kiribatiska" + }, + "searchTerms": { + "*": [ + "gil" + ] + } + }, + { + "if": "school:language=arz", + "then": { + "pt_BR": "Árabe egípcio", + "ru": "египетский диалект арабского языка", + "sv": "egyptisk arabiska", + "zh_Hant": "埃及阿拉伯語", + "hu": "egyiptomi arab", + "de": "Ägyptisch-Arabisch", + "en": "Egyptian Arabic", + "ca": "àrab egipci", + "da": "egyptisk arabisk", + "eo": "egipt-araba lingvo", + "es": "árabe egipcio", + "fi": "egyptinarabia", + "fr": "arabe égyptien", + "gl": "Árabe exipcio", + "id": "bahasa Arab Mesir", + "it": "arabo egiziano", + "ja": "アラビア語エジプト方言", + "nb_NO": "egyptisk arabisk", + "nl": "Egyptisch Arabisch", + "pl": "dialekt egipski języka arabskiego", + "pt": "árabe egípcio" + }, + "searchTerms": { + "*": [ + "arz" + ] + } + }, + { + "if": "school:language=ban", + "then": { + "en": "Balinese", + "fr": "balinais", + "nl": "Balinees", + "ca": "balinès", + "de": "Balinesisch", + "eo": "balia lingvo", + "es": "balinés", + "fi": "Balin kieli", + "gl": "Lingua balinesa", + "id": "Bahasa Bali", + "it": "balinese", + "ja": "バリ語", + "nb_NO": "balinesisk", + "pl": "język balijski", + "pt": "balinês", + "pt_BR": "Língua balinesa", + "ru": "Балийский язык", + "sv": "balinesiska", + "zh_Hans": "巴厘语", + "zh_Hant": "峇里語" + }, + "searchTerms": { + "*": [ + "ban" + ] + } + }, + { + "if": "school:language=hak", + "then": { + "ru": "хакка", + "en": "Hakka", + "ca": "hakka", + "de": "Hakka", + "id": "Hakka", + "nl": "Hakka", + "eo": "hakaa lingvo", + "es": "Chino hakka", + "fi": "Hakka-kiina", + "fr": "hakka", + "gl": "Lingua hakka", + "it": "hakka", + "ja": "客家語", + "nb_NO": "hakka", + "pl": "język hakka", + "pt": "Língua hakka", + "sv": "hakka", + "zh_Hans": "客家语", + "zh_Hant": "客家話", + "hu": "hakka" + }, + "searchTerms": { + "*": [ + "hak" + ] + } + }, + { + "if": "school:language=din", + "then": { + "fr": "dinka", + "gl": "Lingua dinka", + "id": "Bahasa Dinka", + "it": "lingua dinka", + "ja": "ディンカ語", + "pl": "język dinka", + "pt": "Língua dinka", + "sv": "dinka", + "en": "Dinka", + "nl": "Dinka", + "de": "Dinka", + "ru": "Динка", + "ca": "dinka", + "es": "idioma dinka", + "fi": "dinka" + }, + "searchTerms": { + "*": [ + "din" + ] + } + }, + { + "if": "school:language=egl", + "then": { + "ca": "emilià", + "de": "Emilianisch", + "en": "Emilian", + "eo": "Emiliaj lingvoj", + "es": "emiliano", + "fi": "Emilian kieli", + "fr": "émilien", + "hu": "emilián", + "id": "Bahasa Emilian", + "it": "emiliano", + "ja": "エミリア語", + "nl": "Emiliaans", + "pt": "Dialeto emiliano", + "ru": "эмилианский", + "sv": "emilianska", + "zh_Hant": "艾米利亞語" + }, + "searchTerms": { + "*": [ + "egl" + ] + } + }, + { + "if": "school:language=dty", + "then": { + "ca": "doteli", + "de": "Doteli", + "en": "Doteli", + "eo": "Doteli", + "es": "Doteli", + "fr": "dotyali", + "gl": "Lingua doteli", + "ja": "ドテリ語", + "nl": "Doteli", + "pl": "Język doteli", + "pt": "Doteli", + "ru": "дотели", + "sv": "doteli" + }, + "searchTerms": { + "*": [ + "dty" + ] + } + }, + { + "if": "school:language=fa", + "then": { + "fi": "persia", + "gl": "lingua persa", + "hu": "perzsa", + "it": "persiano", + "ja": "ペルシア語", + "nb_NO": "persisk", + "nl": "Perzisch", + "pl": "język perski", + "en": "Persian", + "id": "Persia", + "sv": "persiska", + "fr": "persan", + "ca": "persa", + "da": "persisk", + "de": "Persisch", + "eo": "persa lingvo", + "es": "persa", + "pt": "persa", + "pt_BR": "persa", + "ru": "персидский язык", + "sl": "Perzijščina", + "zh_Hant": "波斯語" + }, + "priorityIf": "_country~((^|;)ir($|;))", + "searchTerms": { + "*": [ + "fa" + ] + } + }, + { + "if": "school:language=cnr", + "then": { + "en": "Montenegrin", + "fr": "monténégrin", + "ca": "montenegrí", + "da": "montenegrinsk", + "de": "Montenegrinisch", + "eo": "montenegra lingvo", + "es": "montenegrino", + "fi": "montenegro", + "gl": "Lingua montenegrina", + "hu": "montenegrói", + "id": "Bahasa Montenegro", + "it": "montenegrino", + "ja": "モンテネグロ語", + "nb_NO": "montenegrinsk", + "nl": "Montenegrijns", + "pl": "język czarnogórski", + "pt": "língua montenegrina", + "pt_BR": "língua montenegrina", + "ru": "черногорский язык", + "sl": "Črnogorščina", + "sv": "montenegrinska", + "zh_Hans": "黑山语", + "zh_Hant": "蒙特內哥羅語" + }, + "searchTerms": { + "*": [ + "cnr" + ] + } + }, + { + "if": "school:language=bxr", + "then": { + "en": "Russia Buriat", + "hu": "burját", + "ca": "buriat", + "de": "Burjatisch", + "eo": "burjata lingvo", + "es": "idioma buriato", + "fi": "Burjaatin kieli", + "fr": "bouriate de Russie", + "gl": "Lingua buriata", + "id": "Bahasa Buryat", + "it": "buriato", + "ja": "ブリヤート語", + "nb_NO": "burjatisk", + "nl": "Russisch-Boerjatisch", + "pl": "język buriacki", + "pt": "Língua buriata", + "ru": "бурятский язык", + "sv": "burjatiska", + "zh_Hant": "布里亞特語", + "pt_BR": "Língua buriata", + "zh_Hans": "俄罗斯布里亚特语" + }, + "searchTerms": { + "*": [ + "bxr" + ] + } + }, + { + "if": "school:language=ckb", + "then": { + "nl": "Sorani", + "fr": "sorani", + "ca": "sorani", + "da": "Sorani", + "de": "Sorani", + "en": "Sorani", + "eo": "sorana lingvo", + "es": "sorani", + "fi": "sorani", + "gl": "lingua kurda central", + "hu": "szoráni", + "id": "Soranî", + "it": "sorani", + "ja": "ソラニー", + "pl": "język sorani", + "pt": "Língua sorâni", + "ru": "сорани", + "sv": "soranî", + "zh_Hans": "中库尔德语", + "zh_Hant": "中庫德語" + }, + "searchTerms": { + "*": [ + "ckb" + ] + } + }, + { + "if": "school:language=eu", + "then": { + "en": "Basque", + "pt": "basco", + "de": "Baskisch", + "nl": "Baskisch", + "fr": "basque", + "ca": "basc", + "da": "baskisk", + "eo": "eŭska lingvo", + "es": "euskera", + "fi": "baski", + "gl": "lingua éuscara", + "hu": "baszk", + "id": "Bahasa Basque", + "it": "basco", + "ja": "バスク語", + "nb_NO": "baskisk", + "pl": "język baskijski", + "pt_BR": "basco", + "ru": "баскский язык", + "sl": "baskovščina", + "sv": "baskiska", + "zh_Hans": "巴斯克语", + "zh_Hant": "巴斯克語" + }, + "searchTerms": { + "*": [ + "eu" + ] + } + }, + { + "if": "school:language=et", + "then": { + "da": "estisk", + "eo": "estona lingvo", + "es": "estonio", + "fi": "viro", + "fr": "estonien", + "gl": "lingua estoniana", + "id": "Esti", + "ja": "エストニア語", + "nb_NO": "estisk", + "nl": "Estisch", + "pl": "język estoński", + "pt": "estónio", + "pt_BR": "língua estônia", + "ru": "эстонский язык", + "sl": "estonščina", + "sv": "estniska", + "zh_Hant": "愛沙尼亞語", + "de": "Estnisch", + "en": "Estonian", + "ca": "estonià", + "hu": "észt", + "it": "estone" + }, + "priorityIf": "_country~((^|;)ee($|;))", + "searchTerms": { + "*": [ + "et" + ] + } + }, + { + "if": "school:language=bar", + "then": { + "fr": "bavarois", + "ca": "bavarès", + "da": "Bajersk", + "de": "Bairisch", + "en": "Bavarian", + "eo": "bavara lingvo", + "es": "bávaro", + "fi": "Baijerin kieli", + "hu": "bajor", + "id": "Bahasa Bayern", + "it": "bavarese", + "ja": "バイエルン・オーストリア語", + "nb_NO": "bairisk", + "nl": "Beiers", + "pl": "dialekt bawarski", + "pt": "língua bávara", + "ru": "австро-баварский язык", + "sv": "bayerska", + "zh_Hans": "奥地利-巴伐利亚德语", + "zh_Hant": "奧地利-巴伐利亞德語", + "gl": "Lingua bavaresa", + "sl": "Bavarščina" + }, + "searchTerms": { + "*": [ + "bar" + ] + } + }, + { + "if": "school:language=fo", + "then": { + "id": "Bahasa Faroe", + "ja": "フェロー語", + "nb_NO": "færøysk", + "nl": "Faeröers", + "pl": "język farerski", + "pt": "Língua feroesa", + "ru": "фарерский язык", + "sl": "Ferščina", + "sv": "färöiska", + "en": "Faroese", + "fr": "féroïen", + "it": "faroese", + "ca": "feroès", + "da": "færøsk", + "de": "Färöisch", + "eo": "feroa lingvo", + "es": "feroés", + "fi": "fäärin kieli", + "gl": "lingua feroesa", + "hu": "feröeri" + }, + "searchTerms": { + "*": [ + "fo" + ] + } + }, + { + "if": "school:language=frr", + "then": { + "ca": "frisó septentrional", + "da": "Nordfrisisk", + "de": "Nordfriesisch", + "en": "North Frisian", + "eo": "nordfrisa lingvo", + "es": "frisón septentrional", + "fi": "Pohjoisfriisi", + "fr": "frison septentrional", + "gl": "Lingua frisoa setentrional", + "hu": "északi fríz", + "id": "Bahasa Frisia Utara", + "it": "frisone settentrionale", + "ja": "北フリジア語", + "nb_NO": "nordfrisisk", + "nl": "Noord-Fries", + "pl": "język północnofryzyjski", + "pt": "frisão setentrional", + "ru": "севернофризский язык", + "sv": "nordfrisiska", + "zh_Hans": "北弗里斯兰语", + "zh_Hant": "北菲士蘭語" + }, + "searchTerms": { + "*": [ + "frr" + ] + } + }, + { + "if": "school:language=ch", + "then": { + "hu": "csamorro", + "id": "Bahasa Chamorro", + "it": "chamorro", + "ja": "チャモロ語", + "nb_NO": "chamorro", + "nl": "Chamorro", + "pl": "język czamorro", + "pt": "Língua chamorro", + "sv": "chamorro", + "ru": "чаморро", + "en": "Chamorro", + "ca": "chamorro", + "de": "Chamorro", + "eo": "ĉamora lingvo", + "es": "idioma chamorro", + "fi": "Tšamorron kieli", + "fr": "chamorro", + "gl": "Lingua chamorra" + }, + "searchTerms": { + "*": [ + "ch" + ] + } + }, + { + "if": "school:language=chy", + "then": { + "en": "Cheyenne", + "nl": "Cheyenne", + "da": "Cheyenne", + "de": "Cheyenne", + "nb_NO": "Cheyenne", + "ca": "xeiene", + "eo": "Ĉejena lingvo", + "es": "cheyene", + "fi": "Cheyennen kieli", + "fr": "cheyenne", + "gl": "Lingua cheyenne", + "hu": "cheyenne", + "it": "cheyenne", + "ja": "シャイアン語", + "pl": "język czejeński", + "pt": "Língua cheyenne", + "ru": "шайенский язык", + "zh_Hans": "夏延语", + "zh_Hant": "夏安語" + }, + "searchTerms": { + "*": [ + "chy" + ] + } + }, + { + "if": "school:language=ce", + "then": { + "en": "Chechen", + "fr": "tchétchène", + "zh_Hans": "车臣语", + "zh_Hant": "車臣語", + "ca": "txetxè", + "da": "Tjetjensk", + "de": "Tschetschenisch", + "eo": "ĉeĉena lingvo", + "es": "checheno", + "fi": "Tšetšeenin kieli", + "gl": "Lingua chechena", + "hu": "csecsen", + "id": "Bahasa Chechnya", + "it": "ceceno", + "ja": "チェチェン語", + "nb_NO": "tsjetsjensk", + "nl": "Tsjetsjeens", + "pl": "język czeczeński", + "pt": "checheno", + "pt_BR": "Língua chechena", + "ru": "чеченский язык", + "sl": "Čečenščina", + "sv": "tjetjenska" + }, + "searchTerms": { + "*": [ + "ce" + ] + } + }, + { + "if": "school:language=no", + "then": { + "de": "Norwegisch", + "ja": "ノルウェー語", + "en": "Norwegian", + "hu": "norvég", + "nb_NO": "norsk", + "ru": "норвежский язык", + "ca": "noruec", + "da": "norsk", + "eo": "norvega lingvo", + "es": "noruego", + "fi": "norja", + "fr": "norvégien", + "gl": "lingua norueguesa", + "id": "Norwegia", + "it": "norvegese", + "nl": "Noors", + "pl": "język norweski", + "pt": "língua norueguesa", + "pt_BR": "língua norueguesa", + "sl": "Norveščina", + "sv": "norska", + "zh_Hant": "挪威語" + }, + "priorityIf": "_country~((^|;)no($|;))", + "searchTerms": { + "*": [ + "no" + ] + } + }, + { + "if": "school:language=bjn", + "then": { + "en": "Banjar", + "fi": "Banjar", + "id": "Banjar", + "ca": "banjar", + "de": "Banjaresisch", + "eo": "banĝara lingvo", + "es": "banjar", + "fr": "banjar", + "gl": "Lingua banjar", + "it": "lingua banjar", + "ja": "バンジャル語", + "nl": "Bandjarees", + "pl": "język banjar", + "pt": "Língua banjaresa", + "ru": "банджарский язык", + "sv": "banjaresiska", + "zh_Hans": "班查语", + "zh_Hant": "班查語" + }, + "searchTerms": { + "*": [ + "bjn" + ] + } + }, + { + "if": "school:language=ceb", + "then": { + "en": "Cebuano", + "nl": "Cebuano", + "ca": "cebuà", + "eo": "cebua lingvo", + "es": "cebuano", + "fi": "Cebun kieli", + "fr": "cebuano", + "gl": "Lingua cebuana", + "hu": "szebuano", + "id": "Bahasa Cebú", + "it": "cebuano", + "ja": "セブ語", + "nb_NO": "cebuano", + "pl": "język cebuański", + "pt": "cebuano", + "ru": "себуанский язык", + "sv": "cebuano", + "zh_Hans": "宿务语", + "zh_Hant": "宿霧語", + "da": "sebuansk", + "de": "Cebuano" + }, + "searchTerms": { + "*": [ + "ceb" + ] + } + }, + { + "if": "school:language=ha", + "then": { + "en": "Hausa", + "ca": "haussa", + "de": "Hausa", + "eo": "haŭsa lingvo", + "es": "hausa", + "fi": "hausan kieli", + "fr": "haoussa", + "gl": "Lingua hausa", + "hu": "hausza", + "id": "Bahasa Hausa", + "it": "hausa", + "ja": "ハウサ語", + "nb_NO": "hausa", + "nl": "Hausa", + "pl": "język hausa", + "pt": "Língua haúça", + "pt_BR": "língua hauçá", + "ru": "хауса", + "sv": "hausa" + }, + "searchTerms": { + "*": [ + "ha" + ] + } + }, + { + "if": "school:language=frp", + "then": { + "id": "Bahasa Arpitan", + "it": "francoprovenzale", + "ja": "アルピタン語", + "nb_NO": "frankoprovençalsk", + "nl": "Arpitaans", + "pl": "język franko-prowansalski", + "pt": "franco-provençal", + "pt_BR": "Língua franco-provençal", + "ru": "франкопровансальский язык", + "sv": "frankoprovensalska", + "hu": "frankoprovanszál", + "en": "Franco-Provençal", + "fr": "francoprovençal", + "ca": "francoprovençal", + "de": "Frankoprovenzalisch", + "eo": "arpitana lingvo", + "es": "franco-provenzal", + "fi": "Arpitaani", + "gl": "Lingua francoprovenzal" + }, + "searchTerms": { + "*": [ + "frp" + ] + } + }, + { + "if": "school:language=chr", + "then": { + "de": "Cherokee", + "en": "Cherokee", + "nl": "Cherokee", + "da": "Cherokee", + "es": "cheroqui", + "pt": "cherokee", + "ru": "чероки", + "ca": "cherokee", + "eo": "Ĉeroka lingvo", + "fi": "Cherokeen kieli", + "fr": "cherokee", + "gl": "Lingua cheroqui", + "hu": "cseroki", + "id": "Bahasa Cherokee", + "it": "cherokee", + "ja": "チェロキー語", + "nb_NO": "cherokesisk", + "pl": "język czirokeski", + "sv": "cherokesiska", + "zh_Hans": "切罗基语", + "zh_Hant": "切羅基語" + }, + "searchTerms": { + "*": [ + "chr" + ] + } + }, + { + "if": "school:language=gcr", + "then": { + "ca": "crioll guaianès", + "en": "Guianan Creole", + "eo": "franc-gujana kreola lingvo", + "es": "Criollo de Guayana Francesa", + "fi": "Ranskan Guayanan kreoli", + "fr": "créole guyanais", + "gl": "Crioulo da Güiana Francesa", + "it": "lingua creola della Guyana francese", + "ja": "仏領ギアナのクレオール語", + "nl": "French Guianese Creole", + "pl": "język kreolski Gujany Francuskiej", + "pt": "Crioulo da Guiana Francesa", + "ru": "Гвианский креольский язык", + "sv": "guyanansk kreol", + "zh_Hant": "圭亞那克里奧爾法語" + }, + "searchTerms": { + "*": [ + "gcr" + ] + } + }, + { + "if": "school:language=gor", + "then": { + "de": "Gorontalo", + "en": "Gorontalo", + "id": "Gorontalo", + "nb_NO": "Gorontalo", + "nl": "Gorontalo", + "pl": "Gorontalo", + "pt": "Gorontalo", + "ru": "Горонтало", + "da": "Gorontalo", + "ca": "gorontalo", + "es": "Idioma gorontalo", + "fi": "Gorontalon kieli", + "fr": "gorontalo", + "gl": "Gorontalo", + "it": "lingua gorontalo", + "ja": "ゴロンタロ語", + "pt_BR": "Gorontalo", + "sl": "Gorontalo", + "sv": "gorontalo", + "zh_Hans": "哥伦打洛语", + "zh_Hant": "哥倫打洛語", + "eo": "gorontala lingvo" + }, + "searchTerms": { + "*": [ + "gor" + ] + } + }, + { + "if": "school:language=ext", + "then": { + "es": "extremeño", + "en": "Extremaduran", + "ca": "extremeny", + "de": "Extremadurisch", + "eo": "ekstremadura lingvo", + "fi": "extremadura", + "fr": "estrémègne", + "gl": "Lingua estremeña", + "id": "Bahasa Estremeñu", + "it": "estremegno", + "ja": "エストレマドゥーラ語", + "nb_NO": "ekstremaduransk", + "nl": "Extremeens", + "pl": "język estremadurski", + "pt": "Língua estremenha", + "ru": "Эстремадурский язык", + "sv": "extremaduriska" + }, + "searchTerms": { + "*": [ + "ext" + ] + } + }, + { + "if": "school:language=fj", + "then": { + "ca": "fijià", + "de": "Fidschi", + "en": "Fijian", + "eo": "fiĝia lingvo", + "es": "fiyiano", + "fi": "Fidžin kieli", + "fr": "fidjien", + "gl": "Lingua fidxiana", + "hu": "fidzsi", + "id": "Bahasa Fiji", + "it": "figiano", + "ja": "フィジー語", + "nb_NO": "fijiansk", + "nl": "Fijisch", + "pl": "Język fidżyjski", + "pt": "Língua fidjiana", + "pt_BR": "Língua fijiana", + "ru": "фиджийский язык", + "sv": "fijianska" + }, + "priorityIf": "_country~((^|;)fj($|;))", + "searchTerms": { + "*": [ + "fj" + ] + } + }, + { + "if": "school:language=fur", + "then": { + "en": "Friulian", + "it": "friulano", + "ca": "furlà", + "da": "friulisk", + "de": "Furlanisch", + "eo": "friula lingvo", + "es": "friulano", + "fi": "Friulin kieli", + "fr": "frioulan", + "gl": "Lingua friulana", + "hu": "friuli", + "id": "Bahasa Friuli", + "ja": "フリウリ語", + "nb_NO": "friulisk", + "nl": "Friulisch", + "pl": "język friulski", + "pt": "friulano", + "ru": "фриульский язык", + "sl": "Furlanščina", + "sv": "friuliska" + }, + "searchTerms": { + "*": [ + "fur" + ] + } + }, + { + "if": "school:language=bss", + "then": { + "en": "Kose", + "ca": "akoose", + "de": "Akoose", + "fi": "Koose", + "fr": "akoose", + "gl": "Lingua akoose", + "ja": "アコース語", + "nl": "Bakossi" + }, + "searchTerms": { + "*": [ + "bss" + ] + } + }, + { + "if": "school:language=prg", + "then": { + "ca": "prussià", + "de": "Altpreußisch", + "en": "Old Prussian", + "eo": "antikva prusa lingvo", + "es": "prusiano antiguo", + "fi": "Muinaispreussin kieli", + "fr": "vieux-prussien", + "gl": "Lingua prusiana antiga", + "id": "Bahasa Prusia Kuno", + "it": "antico prussiano", + "ja": "プロシア語", + "nb_NO": "gammelprøyssisk", + "nl": "Oudpruisisch", + "pl": "język pruski", + "pt": "prussiano antigo", + "pt_BR": "Prussiano antigo", + "ru": "прусский язык", + "sv": "prusiska", + "hu": "óporosz" + }, + "searchTerms": { + "*": [ + "prg" + ] + } + }, + { + "if": "school:language=ses", + "then": { + "de": "Koyra Senni", + "en": "Koyraboro Senni", + "es": "Koyraboro senni", + "fi": "Koyraboro senni", + "fr": "koyraboro senni", + "ja": "コイラボロ・センニ語", + "nl": "Koyra Senni" + }, + "searchTerms": { + "*": [ + "ses" + ] + } + }, + { + "if": "school:language=pko", + "then": { + "de": "Pökoot", + "en": "Pökoot", + "it": "lingua suk", + "ja": "ポコット語", + "pt": "Língua pocote", + "ru": "Покот", + "sv": "pökoot", + "fr": "Pökot" + }, + "searchTerms": { + "*": [ + "pko" + ] + } + }, + { + "if": "school:language=ccp", + "then": { + "de": "Chakma", + "en": "Chakma", + "eo": "Ĉakma lingvo", + "fr": "changma kodha", + "ja": "チャクマ語", + "nl": "Chakma", + "pl": "Język czakma", + "pt": "Língua chakma", + "pt_BR": "Língua chakma", + "ru": "Чакма" + }, + "searchTerms": { + "*": [ + "ccp" + ] + } + }, + { + "if": "school:language=dua", + "then": { + "de": "Duala", + "en": "Duala", + "es": "duala", + "fi": "Duala", + "fr": "douala", + "it": "lingua duala", + "ja": "ドゥアラ語", + "nl": "Duala", + "pl": "język duala", + "pt": "Língua duala", + "pt_BR": "Língua duala", + "ru": "Дуала", + "zh_Hans": "杜阿拉语", + "zh_Hant": "杜阿拉語", + "eo": "dualaa lingvo" + }, + "searchTerms": { + "*": [ + "dua" + ] + } + }, + { + "if": "school:language=tr", + "then": { + "zh_Hans": "土耳其语", + "zh_Hant": "土耳其語", + "nb_NO": "tyrkisk", + "nl": "Turks", + "pl": "język turecki", + "pt": "língua turca", + "pt_BR": "língua turca", + "ru": "турецкий язык", + "sl": "turščina", + "sv": "turkiska", + "en": "Turkish", + "es": "turco", + "fr": "turc", + "id": "Bahasa Turki", + "fi": "turkki", + "hu": "török", + "ca": "turc", + "da": "tyrkisk", + "de": "Türkisch", + "eo": "turka lingvo", + "gl": "lingua turca", + "it": "turco", + "ja": "トルコ語" + }, + "priorityIf": "_country~((^|;)cy($|;))|((^|;)tr($|;))", + "searchTerms": { + "*": [ + "tr" + ] + } + }, + { + "if": "school:language=ur", + "then": { + "de": "Urdu", + "en": "Urdu", + "nl": "Urdu", + "ja": "ウルドゥー語", + "ca": "urdú", + "da": "urdu", + "eo": "urduo", + "es": "urdu", + "fi": "urdu", + "fr": "ourdou", + "gl": "Lingua urdú", + "hu": "urdu", + "id": "Bahasa Urdu", + "it": "urdu", + "nb_NO": "urdu", + "pl": "język urdu", + "pt": "Língua urdu", + "pt_BR": "Língua urdu", + "ru": "урду", + "sl": "Urdujščina", + "sv": "urdu", + "zh_Hant": "烏爾都語" + }, + "priorityIf": "_country~((^|;)pk($|;))", + "searchTerms": { + "*": [ + "ur" + ] + } + }, + { + "if": "school:language=bm", + "then": { + "de": "Bambara", + "en": "Bambara", + "nl": "Bambara", + "es": "bambara", + "it": "bambara", + "sv": "bambara", + "da": "Bambara", + "ca": "bambara", + "eo": "bambara lingvo", + "fi": "bambaran kieli", + "fr": "bambara", + "gl": "Lingua bambara", + "hu": "bambara", + "id": "Bahasa Bambara", + "ja": "バンバラ語", + "nb_NO": "bambara", + "pl": "język bambara", + "pt": "Língua bambara", + "ru": "бамана" + }, + "searchTerms": { + "*": [ + "bm" + ] + } + }, + { + "if": "school:language=ff", + "then": { + "en": "Fula", + "fi": "Fulani", + "ca": "ful", + "da": "fula", + "de": "Fulfulde", + "eo": "fula lingvo", + "es": "fula", + "fr": "peul", + "gl": "Lingua fula", + "hu": "ful", + "id": "Bahasa Fula", + "it": "fula", + "ja": "フラニ語", + "nb_NO": "Fulfulde", + "nl": "Fulah", + "pl": "Język ful", + "pt": "Língua fula", + "ru": "фула", + "sv": "fula" + }, + "searchTerms": { + "*": [ + "ff" + ] + } + }, + { + "if": "school:language=ru", + "then": { + "ca": "rus", + "da": "russisk", + "de": "Russisch", + "eo": "rusa lingvo", + "fi": "venäjä", + "gl": "lingua rusa", + "id": "Rusia", + "it": "russo", + "ja": "ロシア語", + "zh_Hans": "俄语", + "zh_Hant": "俄語", + "nb_NO": "russisk", + "pl": "język rosyjski", + "pt": "russo", + "pt_BR": "russo", + "sl": "ruščina", + "sv": "ryska", + "hu": "orosz", + "en": "Russian", + "ru": "русский язык", + "es": "ruso", + "fr": "russe", + "nl": "Russisch" + }, + "priorityIf": "_country~((^|;)by($|;))|((^|;)kg($|;))|((^|;)kz($|;))|((^|;)ru($|;))|((^|;)tj($|;))", + "searchTerms": { + "*": [ + "ru" + ] + } + }, + { + "if": "school:language=sid", + "then": { + "de": "Sidama", + "en": "Sidamo", + "nl": "Sidamo", + "ca": "sidamo", + "es": "Idioma sidamo", + "fi": "Sidamo", + "fr": "sidama", + "gl": "Lingua sidamo", + "hu": "sidamo", + "it": "lingua Sidamo", + "ja": "シダモ語", + "pl": "Język sidamo", + "ru": "Сидамо" + }, + "searchTerms": { + "*": [ + "sid" + ] + } + }, + { + "if": "school:language=niu", + "then": { + "en": "Niuean", + "hu": "niuei", + "ca": "Niueà", + "de": "Niueanisch", + "es": "Idioma niuano", + "fi": "Niuen kieli", + "fr": "niuéen", + "id": "Bahasa Niue", + "it": "lingua niueana", + "ja": "ニウエ語", + "nb_NO": "Niuisk", + "nl": "Niueaans", + "pl": "Język niue", + "pt": "Língua niueana", + "ru": "ниуэ", + "sv": "niueanska", + "eo": "niua lingvo" + }, + "searchTerms": { + "*": [ + "niu" + ] + } + }, + { + "if": "school:language=oj", + "then": { + "ru": "Оджибве", + "en": "Ojibwe", + "ca": "idioma ojibwa", + "da": "Ojibwa", + "de": "Ojibwe", + "eo": "aniŝinabeka lingvo", + "es": "Idioma ojibwa", + "fi": "Odžibwan kieli", + "fr": "ojibwé", + "gl": "Lingua ojibwa", + "hu": "odzsibva", + "id": "Bahasa Ojibwe", + "it": "lingua ojibwe", + "ja": "オジブウェー語", + "nb_NO": "Ojibwa", + "nl": "Ojibwe", + "pl": "Język odżibwe", + "pt": "Língua ojíbua", + "sl": "očipvejščina", + "sv": "ojibwa" + }, + "searchTerms": { + "*": [ + "oj" + ] + } + }, + { + "if": "school:language=vot", + "then": { + "eo": "vota lingvo", + "es": "votio", + "fi": "vatja", + "hu": "vót", + "id": "Bahasa Votik", + "it": "votico", + "ja": "ヴォート語", + "nb_NO": "votisk", + "nl": "Wotisch", + "pl": "Język wotycki", + "pt": "vótico", + "ru": "водский язык", + "sv": "votiska", + "zh_Hans": "瓦佳语", + "zh_Hant": "瓦佳語", + "fr": "vote", + "ca": "vòtic", + "de": "Wotisch", + "en": "Votic" + }, + "searchTerms": { + "*": [ + "vot" + ] + } + }, + { + "if": "school:language=bfi", + "then": { + "de": "Britische Gebärdensprache", + "en": "British Sign Language", + "eo": "brita signolingvo", + "es": "Lengua de señas británica", + "fi": "brittiläinen viittomakieli", + "fr": "langue des signes britannique", + "it": "lingua dei segni britannica", + "ja": "イギリス手話", + "nl": "Britse gebarentaal", + "pl": "brytyjski język migowy", + "pt": "língua de sinais britânica", + "ru": "британский жестовый язык", + "sv": "brittiskt teckenspråk", + "id": "Bahasa Isyarat Britania" + }, + "searchTerms": { + "*": [ + "bfi" + ] + } + }, + { + "if": "school:language=bla", + "then": { + "de": "Blackfoot", + "en": "Blackfoot", + "eo": "nigrapieda lingvo", + "es": "Idioma siksiká", + "fi": "Mustajalka", + "fr": "pied-noir", + "gl": "Lingua siksiká", + "it": "lingua blackfoot", + "ja": "ブラックフット語", + "nb_NO": "blackfoot", + "nl": "Blackfoot", + "pl": "język siksika", + "pt": "Língua Siksiká", + "ru": "Блэкфут", + "sv": "siksika", + "zh_Hans": "黑脚语" + }, + "searchTerms": { + "*": [ + "bla" + ] + } + }, + { + "if": "school:language=bbc", + "then": { + "ca": "Batak Toba", + "da": "Batak Toba", + "de": "Toba Batak", + "en": "Toba Batak", + "eo": "Batak Toba", + "es": "Batak Toba", + "fi": "Batak Toba", + "fr": "batak toba", + "gl": "Lingua toba batak", + "hu": "Batak Toba", + "id": "Batak Toba", + "it": "lingua batak toba", + "ja": "バタク・トバ語", + "nb_NO": "Batak Toba", + "nl": "Batak Toba", + "pl": "Batak Toba", + "pt": "Batak Toba", + "pt_BR": "Batak Toba", + "ru": "Тоба", + "sl": "Batak Toba", + "sv": "toba batak" + }, + "searchTerms": { + "*": [ + "bbc" + ] + } + }, + { + "if": "school:language=ctg", + "then": { + "de": "Chittagonisch", + "en": "Chittagonian", + "fi": "Chittagongin kieli", + "fr": "chittagonien", + "id": "Bahasa Chittagonia", + "it": "lingua chittagonian", + "ja": "チッタゴン語", + "pl": "Język chatgaya", + "pt": "Língua chittagong", + "pt_BR": "Língua chittagong", + "sv": "chittagoniska", + "es": "Idioma chittagoniano" + }, + "searchTerms": { + "*": [ + "ctg" + ] + } + }, + { + "if": "school:language=brh", + "then": { + "de": "Brahui", + "en": "Brahui", + "nl": "Brahui", + "ca": "brahui", + "eo": "braŭia lingvo", + "es": "Idioma brahui", + "fi": "Brahuin kieli", + "fr": "brahoui", + "id": "Bahasa Brahui", + "it": "brahui", + "ja": "ブラーフーイー語", + "nb_NO": "Brahui", + "pl": "Język brahui", + "pt": "Língua brahui", + "ru": "Брауи", + "sv": "brahui" + }, + "searchTerms": { + "*": [ + "brh" + ] + } + }, + { + "if": "school:language=bug", + "then": { + "en": "Bugis", + "id": "Bugis", + "ca": "bugui", + "de": "Buginesisch", + "eo": "buĝia lingvo", + "es": "idioma buguinés", + "fi": "Bugin kieli", + "fr": "bouguinais", + "gl": "Lingua bugi", + "hu": "bugisz", + "it": "lingua buginese", + "ja": "ブギス語", + "nb_NO": "Buginesisk", + "nl": "Boeginees", + "pl": "język bugijski", + "pt": "Língua buginesa", + "ru": "бугийский язык", + "sv": "buginesiska" + }, + "searchTerms": { + "*": [ + "bug" + ] + } + }, + { + "if": "school:language=pa", + "then": { + "id": "Bahasa Punjab", + "it": "punjabi", + "ja": "パンジャーブ語", + "nb_NO": "panjabi", + "nl": "Punjabi", + "pl": "język pendżabski", + "pt": "Língua panjabi", + "ru": "панджаби", + "sv": "punjabi", + "zh_Hant": "旁遮普語", + "en": "Punjabi", + "ca": "panjabi", + "da": "Punjabi", + "de": "Panjabi", + "eo": "panĝaba lingvo", + "es": "panyabí", + "fi": "punjabin kieli", + "fr": "pendjabi", + "gl": "lingua punjabi", + "hu": "pandzsábi" + }, + "searchTerms": { + "*": [ + "pa" + ] + } + }, + { + "if": "school:language=pnb", + "then": { + "id": "Bahasa Punjab", + "it": "punjabi", + "ja": "パンジャーブ語", + "nb_NO": "panjabi", + "nl": "Punjabi", + "pl": "język pendżabski", + "pt": "Língua panjabi", + "ru": "панджаби", + "sv": "punjabi", + "zh_Hant": "旁遮普語", + "en": "Punjabi", + "ca": "panjabi", + "da": "Punjabi", + "de": "Panjabi", + "eo": "panĝaba lingvo", + "es": "panyabí", + "fi": "punjabin kieli", + "fr": "pendjabi", + "gl": "lingua punjabi", + "hu": "pandzsábi" + }, + "searchTerms": { + "*": [ + "pnb" + ] + } + }, + { + "if": "school:language=brx", + "then": { + "en": "Bodo", + "fr": "bodo", + "de": "Bodo", + "nl": "Boro", + "nb_NO": "Bodo", + "ru": "Бодо", + "ca": "bodo", + "eo": "bodoa lingvo", + "es": "Idioma bodo", + "fi": "Bodon kieli", + "id": "Bahasa Bodo", + "it": "bodo", + "ja": "ボド語", + "pl": "Język bodo", + "pt": "Língua bodo", + "sv": "bodo" + }, + "searchTerms": { + "*": [ + "brx" + ] + } + }, + { + "if": "school:language=sjd", + "then": { + "ca": "sami kildin", + "de": "Kildinsamisch", + "en": "Kildin Sami", + "eo": "kildin-samea lingvo", + "es": "sami kildin", + "fi": "kiltinänsaame", + "fr": "same de Kildin", + "gl": "Lingua saami de Kildin", + "it": "lingua sami di Kildin", + "ja": "キルディン・サーミ語", + "nb_NO": "kildinsamisk", + "nl": "Kildin-Sami", + "pl": "Język kildin", + "pt": "Língua sami de Kildin", + "ru": "кильдинский саамский язык", + "sv": "kildinsamiska", + "hu": "kildini számi" + }, + "searchTerms": { + "*": [ + "sjd" + ] + } + }, + { + "if": "school:language=bo", + "then": { + "en": "Tibetan", + "ru": "тибетский язык", + "fr": "tibétain", + "de": "Tibetisch", + "ca": "tibetà", + "da": "tibetansk", + "eo": "tibeta lingvo", + "es": "tibetano", + "fi": "tiibetin kieli", + "gl": "Lingua tibetana", + "hu": "tibeti", + "id": "Bahasa Tibet", + "it": "tibetano", + "ja": "チベット語", + "nb_NO": "tibetansk", + "nl": "Tibetaans", + "pl": "język tybetański", + "pt": "Língua tibetana", + "pt_BR": "Língua tibetana", + "sv": "tibetanska" + }, + "searchTerms": { + "*": [ + "bo" + ] + } + }, + { + "if": "school:language=bi", + "then": { + "en": "Bislama", + "ca": "bislama", + "de": "Bislama", + "eo": "bislama lingvo", + "es": "Bislama", + "fi": "Bislama", + "fr": "bichelamar", + "gl": "Bislama", + "hu": "biszlama", + "id": "Bahasa Bislama", + "it": "bislama", + "ja": "ビスラマ語", + "nb_NO": "bislama", + "nl": "Bislama", + "pl": "język bislama", + "pt": "Língua bislamá", + "ru": "бислама", + "sv": "bislama" + }, + "priorityIf": "_country~((^|;)vu($|;))", + "searchTerms": { + "*": [ + "bi" + ] + } + }, + { + "if": "school:language=cdo", + "then": { + "en": "Min Dong", + "ca": "min dong", + "de": "Min Dong", + "eo": "min-donga lingvo", + "es": "min dong", + "fi": "mindong", + "fr": "mindong", + "gl": "Lingua ming dong", + "id": "Bahasa Min Timur", + "it": "min dong", + "ja": "閩東語", + "nb_NO": "Mindong", + "nl": "Mindong", + "pl": "Język mindong", + "pt": "Língua min oriental", + "pt_BR": "Min Dong", + "ru": "Восточноминьский язык", + "sv": "mindong", + "zh_Hans": "闽东语", + "zh_Hant": "閩東語" + }, + "searchTerms": { + "*": [ + "cdo" + ] + } + }, + { + "if": "school:language=sw", + "then": { + "da": "Swahili", + "de": "Swahili", + "en": "Swahili", + "nl": "Swahili", + "ja": "スワヒリ語", + "es": "suajili", + "ca": "suahili", + "eo": "svahila lingvo", + "fi": "swahili", + "fr": "swahili", + "gl": "Lingua suahili", + "hu": "szuahéli", + "id": "Bahasa Swahili", + "it": "swahili", + "nb_NO": "swahili", + "pl": "suahili", + "pt": "Língua suaíli", + "pt_BR": "língua suaíli", + "ru": "cуахили", + "sl": "Svahili", + "sv": "swahili", + "zh_Hant": "史瓦希利語" + }, + "priorityIf": "_country~((^|;)ke($|;))|((^|;)rw($|;))|((^|;)tz($|;))|((^|;)ug($|;))", + "searchTerms": { + "*": [ + "sw" + ] + } + }, + { + "if": "school:language=gom", + "then": { + "de": "Goa-Konkani", + "en": "Goan Konkani", + "fr": "konkani de Goa", + "ja": "ゴア・コンカニ語", + "nl": "Goa-Konkani" + }, + "searchTerms": { + "*": [ + "gom" + ] + } + }, + { + "if": "school:language=mfe", + "then": { + "de": "Morisyen", + "en": "Mauritian Creole", + "eo": "maŭricia kreola lingvo", + "es": "criollo mauriciano", + "fi": "Morisyen", + "fr": "créole mauricien", + "it": "creolo mauriziano", + "ja": "モーリシャス・クレオール語", + "nl": "Mauritiaans Creools", + "pl": "język kreolski Mauritiusa", + "pt": "crioulo de Maurício", + "ru": "Маврикийский креольский язык", + "hu": "mauritiusi kreol" + }, + "searchTerms": { + "*": [ + "mfe" + ] + } + }, + { + "if": "school:language=zh", + "then": { + "gl": "lingua chinesa", + "nb_NO": "kinesisk", + "pl": "język chiński", + "pt": "língua chinesa", + "pt_BR": "língua chinesa", + "ru": "китайский язык", + "sl": "Kitajščina", + "sv": "kinesiska", + "zh_Hans": "中文", + "zh_Hant": "漢語", + "ca": "xinès", + "en": "Chinese", + "es": "chino", + "hu": "kínai", + "it": "cinese", + "id": "Tionghoa", + "ja": "中国語", + "de": "Chinesisch", + "nl": "Chinese talen", + "da": "kinesisk", + "eo": "ĉina lingvo", + "fi": "kiina", + "fr": "langues chinoises" + }, + "priorityIf": "_country~((^|;)cn($|;))", + "searchTerms": { + "*": [ + "zh" + ] + } + }, + { + "if": "school:language=sdc", + "then": { + "it": "(lingua) sassarese", + "hu": "sassari", + "en": "Sassarese", + "ca": "sasserès", + "de": "Sassaresisch", + "fr": "sassarais", + "ja": "サッサリ・サルデーニャ語", + "nl": "Sassarees", + "pl": "Dialekt sassarski", + "ru": "сассарский язык", + "sl": "Sasarščina", + "gl": "Lingua sassaresa", + "id": "Bahasa Sassari", + "zh_Hans": "萨萨里语", + "zh_Hant": "薩薩里語", + "es": "sasarés" + }, + "searchTerms": { + "*": [ + "sdc" + ] + } + }, + { + "if": "school:language=pdt", + "then": { + "ca": "plautdietsch", + "de": "Plautdietsch", + "en": "Plautdietsch", + "eo": "plaŭtdiĉa lingvo", + "es": "Plautdietsch", + "fr": "bas allemand mennonite", + "id": "Bahasa Plautdietsch", + "it": "lingua plautdietsch", + "ja": "メノナイト低地ドイツ語", + "nb_NO": "plautdietsch", + "nl": "Plautdietsch", + "pl": "plautdietsch", + "pt": "Plautdietsch", + "ru": "Немецко-платский диалект", + "sv": "plautdietsch" + }, + "searchTerms": { + "*": [ + "pdt" + ] + } + }, + { + "if": "school:language=sty", + "then": { + "de": "Sibirisches Tatarisch", + "en": "Siberian Tatar", + "eo": "siberia tatara lingvo", + "es": "Idioma sibír", + "fr": "tatar de Sibérie", + "ja": "シビール語", + "pl": "język syberyskotatarski", + "pt": "Língua tártara da Sibéria", + "ru": "cибирско-татарский язык", + "zh_Hans": "西伯利亚鞑靼语", + "zh_Hant": "西伯利亞韃靼語", + "ca": "tàtar siberià" + }, + "searchTerms": { + "*": [ + "sty" + ] + } + }, + { + "if": "school:language=rmc", + "then": { + "de": "Karpathen-Romani", + "en": "Carpathian Romani", + "fr": "romani des Carpates", + "it": "lingua carpato-romanì", + "ja": "中央方言群", + "nl": "Carpathian Romani", + "ru": "Карпатские диалекты цыганского языка", + "gl": "Romaní dos Cárpatos" + }, + "searchTerms": { + "*": [ + "rmc" + ] + } + }, + { + "if": "school:language=nys", + "then": { + "de": "Noongar", + "en": "Noongar", + "fr": "nyungan", + "ja": "ニュンガル語", + "nl": "Nyunga", + "sv": "nyunga" + }, + "searchTerms": { + "*": [ + "nys" + ] + } + }, + { + "if": "school:language=gsw-fr", + "then": { + "eo": "alzaca lingvo", + "es": "alsaciano", + "fi": "Elsassi", + "gl": "Lingua alsaciana", + "hu": "elzászi", + "id": "Bahasa Elsass", + "it": "dialetto alsaziano", + "ja": "アルザス語", + "nb_NO": "elsassisk", + "nl": "Elzassisch", + "pl": "gwary alzackie", + "pt": "Língua alsaciana", + "pt_BR": "Língua alsaciana", + "ru": "эльзасский диалект", + "sv": "elsassiska", + "fr": "alsacien", + "ca": "alsacià", + "de": "Elsässisch", + "en": "Alsatian" + }, + "searchTerms": { + "*": [ + "gsw-fr" + ] + } + }, + { + "if": "school:language=zun", + "then": { + "en": "Zuni", + "fi": "Zuni", + "nl": "Zuni", + "de": "Zuñi", + "ca": "llengua zuni", + "es": "zuñi", + "fr": "zuni", + "hu": "zuni", + "it": "zuni", + "ja": "ズニ語", + "pl": "Język zuni", + "pt": "Língua zuni", + "pt_BR": "Língua zuni", + "ru": "зуни", + "sv": "zuni", + "zh_Hans": "苏尼语", + "zh_Hant": "蘇尼語" + }, + "searchTerms": { + "*": [ + "zun" + ] + } + }, + { + "if": "school:language=sms", + "then": { + "ca": "sami skolt", + "de": "Skoltsamisch", + "en": "Skolt Sami", + "eo": "skolt-samea lingvo", + "es": "sami skolt", + "fi": "koltansaame", + "fr": "same skolt", + "gl": "Lingua saami de Skolt", + "hu": "kolta számi", + "it": "lingua sami skolt", + "ja": "スコルト・サーミ語", + "nb_NO": "skoltesamisk", + "nl": "Skolt-Samisch", + "pl": "język skolt", + "pt": "kíngua sami de Skolt", + "pt_BR": "Língua sami de Skolt", + "ru": "колтта-саамский язык", + "sv": "skoltsamiska", + "zh_Hans": "斯科尔特萨米语", + "zh_Hant": "斯科爾特薩米語" + }, + "searchTerms": { + "*": [ + "sms" + ] + } + }, + { + "if": "school:language=pis", + "then": { + "de": "Pijin", + "en": "Pijin", + "fi": "Pijin", + "fr": "pijin", + "it": "lingua pijin", + "ja": "ピジン語", + "pl": "Język neosalomoński", + "pt": "Língua pijin", + "ru": "Пиджин Соломоновых Островов", + "sv": "Pijin", + "es": "Pidgin salomonense", + "eo": "piĵina lingvo" + }, + "searchTerms": { + "*": [ + "pis" + ] + } + }, + { + "if": "school:language=nr", + "then": { + "en": "Southern Ndebele", + "nl": "Zuid-Ndebele", + "ca": "ndebele meridional", + "de": "Süd-Ndebele", + "eo": "Suda Ndebela lingvo", + "es": "ndebele del Sur", + "fi": "Etelä-ndebelen kieli", + "fr": "nrebele", + "gl": "Lingua ndebele", + "hu": "déli ndebele", + "it": "ndebele del sud", + "ja": "南ンデベレ語", + "nb_NO": "sørndebele", + "pl": "język ndebele południowy", + "pt": "língua ndebele", + "pt_BR": "língua ndebele", + "ru": "южный ндебеле", + "sv": "sydndebele", + "zh_Hans": "南恩德贝莱语", + "zh_Hant": "南恩德貝萊語" + }, + "priorityIf": "_country~((^|;)za($|;))", + "searchTerms": { + "*": [ + "nr" + ] + } + }, + { + "if": "school:language=umu", + "then": { + "de": "Munsee", + "en": "Munsee", + "es": "Munsee", + "nb_NO": "Munsee", + "nl": "Munsee", + "ca": "munsee", + "fr": "munsee", + "gl": "Lingua munsee", + "it": "lingua munsee", + "ja": "マンシー語", + "pt": "Língua munsee", + "ru": "Мунси", + "sv": "munsee" + }, + "searchTerms": { + "*": [ + "umu" + ] + } + }, + { + "if": "school:language=gaa", + "then": { + "ca": "ga", + "eo": "gaa lingvo", + "es": "Idioma ga", + "fi": "Gan kieli", + "it": "lingua ga", + "ja": "ガ語", + "pl": "Język ga", + "zh_Hant": "加語", + "sv": "ga (språk)", + "de": "Ga", + "en": "Ga", + "fr": "ga", + "ru": "Га", + "nl": "Ga" + }, + "searchTerms": { + "*": [ + "gaa" + ] + } + }, + { + "if": "school:language=fon", + "then": { + "de": "Fon", + "en": "Fon", + "nl": "Fon", + "ru": "фон", + "it": "fon", + "ca": "fon", + "nb_NO": "fon", + "sv": "fon", + "eo": "fonua lingvo", + "es": "idioma fon", + "fi": "Fonin kieli", + "fr": "fon-gbe", + "gl": "Lingua fon", + "id": "Bahasa Fon", + "ja": "フォン語", + "pl": "język fon", + "pt": "Língua fon", + "zh_Hant": "豐語" + }, + "searchTerms": { + "*": [ + "fon" + ] + } + }, + { + "if": "school:language=loz", + "then": { + "en": "Lozi", + "ca": "lozi", + "da": "Lozi", + "de": "Lozi", + "es": "Idioma lozi", + "fi": "Lozi", + "fr": "lozi", + "gl": "Lingua lozi", + "it": "lingua lozi", + "ja": "ロジ語", + "nb_NO": "Lozi", + "nl": "Lozi", + "pl": "Język lozi", + "pt": "Língua lozi", + "ru": "Лози (язык)", + "sv": "lozi", + "zh_Hans": "洛兹语", + "zh_Hant": "洛茲語", + "eo": "lozia lingvo" + }, + "searchTerms": { + "*": [ + "loz" + ] + } + }, + { + "if": "school:language=crs", + "then": { + "ca": "crioll de les Seychelles", + "de": "Seychellenkreol", + "en": "Seychellois Creole", + "eo": "sejŝela lingvo", + "es": "criollo seychelense", + "fi": "Seychellien kreoli", + "fr": "créole seychellois", + "gl": "Crioulo das Seychelles", + "it": "creolo delle Seychelles", + "ja": "セーシェル・クレオール語", + "nb_NO": "seychellisk kreol", + "nl": "Seychellois Creole", + "pl": "Język kreolski seszelski", + "pt": "Crioulo de Seychelles", + "ru": "сейшельский креольский язык", + "id": "Bahasa Kreol Seychelles", + "hu": "seychelle-i kreol" + }, + "searchTerms": { + "*": [ + "crs" + ] + } + }, + { + "if": "school:language=tru", + "then": { + "nl": "Turoyo", + "ca": "turoio", + "de": "Turoyo", + "en": "Turoyo", + "es": "turoyo", + "fr": "turoyo", + "ja": "トゥロヨ語", + "pl": "Turoyo", + "pt": "Língua turoyo", + "ru": "Туройо", + "sv": "turoyo" + }, + "searchTerms": { + "*": [ + "tru" + ] + } + }, + { + "if": "school:language=agq", + "then": { + "de": "Aghem", + "en": "Aghem", + "fr": "aghem", + "gl": "Lingua aghem", + "ja": "アゲム語", + "nl": "Aghem", + "ca": "aghem", + "es": "aghem" + }, + "searchTerms": { + "*": [ + "agq" + ] + } + }, + { + "if": "school:language=ary", + "then": { + "ca": "àrab marroquí", + "da": "Marokkansk arabisk", + "de": "Marokkanisch-Arabisch", + "en": "Moroccan Arabic", + "eo": "maroka araba lingvo", + "es": "árabe marroquí", + "fi": "Marokonarabia", + "fr": "arabe marocain", + "gl": "árabe marroquí", + "id": "Bahasa Arab Maroko", + "it": "arabo marocchino", + "ja": "アラビア語モロッコ方言", + "nb_NO": "marokkansk-arabisk", + "nl": "Marokkaans Arabisch", + "pl": "marokańska odmiana języka arabskiego", + "pt": "Árabe marroquino", + "ru": "Марокканский диалект арабского языка", + "sv": "marockansk arabiska", + "zh_Hant": "摩洛哥阿拉伯語" + }, + "searchTerms": { + "*": [ + "ary" + ] + } + }, + { + "if": "school:language=atj", + "then": { + "ca": "atikamekw", + "de": "Atikamekw", + "en": "Atikamekw", + "es": "atikamekw", + "fi": "Atikamekw", + "fr": "atikamekw", + "gl": "atikamekw", + "it": "lingua atikamekw", + "ja": "アティカメク語", + "nb_NO": "atikamekw", + "nl": "Atikamekw", + "pt": "Língua atikamekw", + "ru": "aтикамек", + "zh_Hans": "阿提卡米克语", + "zh_Hant": "阿提卡米克語" + }, + "searchTerms": { + "*": [ + "atj" + ] + } + }, + { + "if": "school:language=alt", + "then": { + "en": "Altai", + "ca": "altai meridional", + "de": "Südaltaisch", + "eo": "sudaltaja lingvo", + "fr": "altaï méridional", + "gl": "Lingua altai meridional", + "it": "lingua altai meridionale", + "ja": "南アルタイ語", + "nl": "Zuid-Altajs", + "ru": "aлтайский язык", + "zh_Hant": "南阿爾泰語" + }, + "searchTerms": { + "*": [ + "alt" + ] + } + }, + { + "if": "school:language=ta", + "then": { + "nb_NO": "tamilsk", + "pl": "język tamilski", + "pt": "Língua tâmil", + "pt_BR": "língua tâmil", + "sl": "Tamilščina", + "sv": "tamil", + "zh_Hans": "泰米尔语", + "zh_Hant": "坦米爾語", + "en": "Tamil", + "nl": "Tamil", + "es": "tamil", + "ca": "tàmil", + "eo": "tamila lingvo", + "ru": "тамильский язык", + "da": "Tamil", + "de": "Tamil", + "fi": "tamil", + "fr": "tamoul", + "gl": "Lingua támil", + "hu": "tamil", + "id": "Bahasa Tamil", + "it": "tamil", + "ja": "タミル語" + }, + "priorityIf": "_country~((^|;)lk($|;))|((^|;)sg($|;))", + "searchTerms": { + "*": [ + "ta" + ] + } + }, + { + "if": "school:language=ps", + "then": { + "hu": "pastu", + "it": "pashtu", + "ja": "パシュトー語", + "nb_NO": "pashto", + "nl": "Pasjtoe", + "pl": "język paszto", + "pt": "pastó", + "pt_BR": "pastó", + "ru": "пушту", + "sl": "paštunščina", + "sv": "pashto", + "zh_Hans": "普什图语", + "ca": "paixtu", + "es": "pastún", + "id": "Pashtun", + "en": "Pashto", + "da": "Pashto", + "de": "Paschtu", + "eo": "paŝtuna lingvo", + "fi": "paštun kieli", + "fr": "pachto", + "gl": "Lingua paxta" + }, + "priorityIf": "_country~((^|;)af($|;))", + "searchTerms": { + "*": [ + "ps" + ] + } + }, + { + "if": "school:language=nqo", + "then": { + "en": "N'Ko", + "fr": "n'ko", + "gl": "Lingua n'ko", + "ja": "ンコ語", + "nl": "N’Ko", + "pl": "Język n’ko", + "sv": "N'ko", + "zh_Hans": "康柏语", + "zh_Hant": "康柏語", + "ru": "Нко (язык)" + }, + "searchTerms": { + "*": [ + "nqo" + ] + } + }, + { + "if": "school:language=ro", + "then": { + "eo": "rumana lingvo", + "fi": "romania", + "fr": "roumain", + "gl": "lingua romanesa", + "id": "Bahasa Rumania", + "it": "romeno", + "ja": "ルーマニア語", + "nb_NO": "rumensk", + "nl": "Roemeens", + "pl": "język rumuński", + "pt": "Língua romena", + "pt_BR": "língua romena", + "ru": "румынский язык", + "sl": "Romunščina", + "de": "Rumänisch", + "en": "Romanian", + "ca": "romanès", + "es": "rumano", + "hu": "román", + "da": "rumænsk", + "sv": "rumänska", + "zh_Hant": "羅馬尼亞語" + }, + "priorityIf": "_country~((^|;)md($|;))|((^|;)ro($|;))", + "searchTerms": { + "*": [ + "ro" + ] + } + }, + { + "if": "school:language=cbk-zam", + "then": { + "ca": "chavacano", + "de": "Chabacano", + "en": "Chavacano", + "eo": "Ĉabakana lingvo", + "fr": "chavacano", + "gl": "Chavacano", + "it": "zamboangueño", + "ja": "チャバカノ語", + "nb_NO": "chavacano", + "nl": "Chavacano", + "pl": "Język chavacano", + "pt": "chavacano", + "ru": "Чабакано", + "sv": "chavacano", + "es": "criollo chabacano", + "hu": "chabacano" + }, + "searchTerms": { + "*": [ + "cbk-zam" + ] + } + }, + { + "if": "school:language=ovd", + "then": { + "ca": "dialecte dalecarlià", + "de": "Älvdalisch", + "en": "Elfdalian", + "es": "idioma dalecarliano", + "fr": "dalécarlien", + "gl": "Lingua dalecarliana", + "it": "övdaliano", + "ja": "エルヴダーレン語", + "nb_NO": "älvdalsk", + "nl": "Elfdaals", + "pl": "Elfdalski", + "pt": "Älvdalsmål", + "sv": "älvdalska", + "ru": "эльвдальский диалект", + "fi": "älvdalska", + "da": "elvdalsk" + }, + "searchTerms": { + "*": [ + "ovd" + ] + } + }, + { + "if": "school:language=vmf", + "then": { + "de": "mainfränkische Dialekte", + "en": "Main-Franconian", + "es": "Fráncico del Meno", + "fr": "franconien du Main", + "it": "lingua francone del Meno", + "ja": "マインフランク語", + "nl": "Mainfrankisch", + "ru": "Майнфранкские диалекты" + }, + "searchTerms": { + "*": [ + "vmf" + ] + } + }, + { + "if": "school:language=bto", + "then": { + "en": "Rinconada Bikol", + "fi": "Iriganbikol", + "fr": "bikol rinconada", + "ja": "イリガ・ビコール語", + "pt": "Língua rinconada bikol" + }, + "searchTerms": { + "*": [ + "bto" + ] + } + }, + { + "if": "school:language=bcc", + "then": { + "en": "Southern Balochi", + "fr": "baloutche du Sud", + "ja": "南バローチー語", + "ru": "южный белуджский", + "zh_Hans": "南俾路支语", + "zh_Hant": "南俾路支語" + }, + "searchTerms": { + "*": [ + "bcc" + ] + } + }, + { + "if": "school:language=crl", + "then": { + "en": "Northern East Cree", + "fr": "cri de l’Est, dialecte du Nord" + }, + "searchTerms": { + "*": [ + "crl" + ] + } + }, + { + "if": "school:language=lrc", + "then": { + "de": "Nördliches Luri", + "en": "Northern Luri", + "es": "luri septentrional", + "fr": "lori du Nord", + "it": "luri dal nord", + "ja": "北ロル語", + "nl": "Noordelijk Luri", + "pt": "luri setentrional", + "gl": "lingua luri setentrional" + }, + "searchTerms": { + "*": [ + "lrc" + ] + } + }, + { + "if": "school:language=akl", + "then": { + "ca": "aklanon", + "de": "Akeanon", + "en": "Aklan", + "fi": "Aklanon", + "fr": "aklanon", + "gl": "Lingua aklanon", + "it": "lingua Aklan", + "ja": "アクラノン語", + "pl": "Język aklanon", + "pt": "Língua aklan", + "es": "aclano", + "da": "aklansk" + }, + "searchTerms": { + "*": [ + "akl" + ] + } + }, + { + "if": "school:language=bpy", + "then": { + "pl": "Język bisznuprija-manipuri", + "pt": "Bishnupriya Manipuri", + "ru": "Бишнуприя-манипури", + "sv": "bishnupriya manipuri", + "zh_Hans": "比什奴普莱利亚-曼尼浦尔语", + "zh_Hant": "比什奴普萊利亞-曼尼浦爾語", + "ca": "Bishnupriya manipuri", + "de": "Bishnupriya Manipuri", + "en": "Bishnupriya Manipuri", + "eo": "Biŝnuprija Manipuri lingvo", + "es": "Bishnupriya manipurí", + "fi": "Bishnupriya Manipuri", + "fr": "manipourî de Bishnupriyay", + "gl": "Lingua bishnupriya manipuri", + "id": "Bahasa Bishnupriya Manipuri", + "it": "Bishnupriya Manipuri", + "ja": "ビシュヌプリヤ・マニプリ語", + "nb_NO": "bishnupriya manipuri", + "nl": "Bishnupriya Manipuri" + }, + "searchTerms": { + "*": [ + "bpy" + ] + } + }, + { + "if": "school:language=mic", + "then": { + "en": "Mi'kmaq", + "es": "micmac", + "nl": "Mi'kmaq", + "de": "Micmac-Sprache", + "eo": "mikmaka lingvo", + "fi": "Micmacin kieli", + "fr": "micmac", + "gl": "Lingua micmac", + "id": "Bahasa Mi'kmaq", + "it": "lingua micmac", + "ja": "ミクマク語", + "pl": "Język mikmak", + "ru": "микмак" + }, + "searchTerms": { + "*": [ + "mic" + ] + } + }, + { + "if": "school:language=sk", + "then": { + "zh_Hant": "斯洛伐克語", + "en": "Slovak", + "hu": "szlovák", + "it": "slovacco", + "ca": "eslovac", + "da": "slovakisk", + "de": "Slowakisch", + "eo": "slovaka lingvo", + "es": "eslovaco", + "fi": "slovakki", + "fr": "slovaque", + "gl": "lingua eslovaca", + "id": "Bahasa Slowakia", + "ja": "スロバキア語", + "nb_NO": "slovakisk", + "nl": "Slowaaks", + "pl": "język słowacki", + "pt": "eslovaco", + "pt_BR": "língua eslovaca", + "ru": "словацкий язык", + "sl": "Slovaščina", + "sv": "slovakiska" + }, + "priorityIf": "_country~((^|;)sk($|;))", + "searchTerms": { + "*": [ + "sk" + ] + } + }, + { + "if": "school:language=sl", + "then": { + "en": "Slovene", + "ca": "eslovè", + "da": "slovensk", + "de": "Slowenisch", + "eo": "slovena lingvo", + "es": "esloveno", + "fi": "sloveeni", + "fr": "slovène", + "gl": "lingua eslovena", + "hu": "szlovén", + "id": "Bahasa Slovenia", + "it": "sloveno", + "ja": "スロベニア語", + "nb_NO": "slovensk", + "nl": "Sloveens", + "pl": "język słoweński", + "pt": "língua eslovena", + "pt_BR": "língua eslovena", + "ru": "словенский язык", + "sl": "slovenščina", + "sv": "slovenska", + "zh_Hant": "斯洛維尼亞語" + }, + "priorityIf": "_country~((^|;)si($|;))", + "searchTerms": { + "*": [ + "sl" + ] + } + }, + { + "if": "school:language=ryu", + "then": { + "eo": "okinava lingvo", + "es": "okinawense", + "fi": "Okinawan kieli", + "fr": "okinawanais", + "gl": "Lingua okinawana", + "id": "Bahasa Okinawa", + "it": "lingua di Okinawa", + "ja": "沖縄方言", + "nb_NO": "Okinawa", + "nl": "Okinawaans", + "pl": "Język okinawski", + "pt": "okinawano", + "ru": "Окинавский язык", + "sv": "okinawianska", + "zh_Hant": "沖繩語", + "hu": "okinavai", + "ca": "llengua d'Okinawa", + "en": "Okinawan" + }, + "searchTerms": { + "*": [ + "ryu" + ] + } + }, + { + "if": "school:language=yai", + "then": { + "de": "Jaghnobi", + "en": "Yaghnobi", + "eo": "jagnoba lingvo", + "es": "yagnobi", + "fi": "Jagnobin kieli", + "fr": "yaghnobi", + "gl": "Lingua iagnobí", + "id": "Bahasa Yaghnobi", + "it": "yaghnobī́", + "ja": "ヤグノビ語", + "nb_NO": "Yaghnobi", + "nl": "Yaghnobi", + "pl": "Język jagnobijski", + "pt": "Língua yaghnobi", + "ru": "Ягнобский язык", + "sv": "yaghnobi" + }, + "searchTerms": { + "*": [ + "yai" + ] + } + }, + { + "if": "school:language=efi", + "then": { + "ca": "efik", + "de": "Efik", + "en": "Efik", + "eo": "efika lingvo", + "es": "Idioma efik", + "fi": "Efik", + "fr": "efik", + "id": "Bahasa Efik", + "it": "lingua Efik", + "ja": "エフィク語", + "nb_NO": "Efik", + "nl": "Efik", + "pt": "Língua efik" + }, + "searchTerms": { + "*": [ + "efi" + ] + } + }, + { + "if": "school:language=te", + "then": { + "nb_NO": "telugu", + "pl": "język telugu", + "pt": "língua telugu", + "pt_BR": "Língua telugu", + "ru": "телугу", + "sv": "telugu", + "zh_Hant": "泰盧固語", + "en": "Telugu", + "de": "Telugu", + "nl": "Telugu", + "fr": "télougou", + "ca": "telugu", + "da": "Telugu", + "eo": "telugua lingvo", + "es": "télugu", + "fi": "telugu", + "gl": "Lingua telugu", + "hu": "telugu", + "id": "Bahasa Telugu", + "it": "telugu", + "ja": "テルグ語" + }, + "searchTerms": { + "*": [ + "te" + ] + } + }, + { + "if": "school:language=yi", + "then": { + "en": "Yiddish", + "es": "yidis", + "fr": "yiddish", + "ca": "ídix", + "da": "jiddisch", + "de": "Jiddisch", + "eo": "jida lingvo", + "fi": "jiddiš", + "gl": "Lingua yiddish", + "hu": "jiddis", + "id": "Bahasa Yiddi", + "it": "yiddish", + "ja": "イディッシュ語", + "nb_NO": "jiddisch", + "nl": "Jiddisch", + "pl": "jidysz", + "pt": "língua iídiche", + "ru": "идиш", + "sl": "Jidiš", + "sv": "jiddisch", + "zh_Hant": "意第緒語", + "pt_BR": "língua iídiche" + }, + "searchTerms": { + "*": [ + "yi" + ] + } + }, + { + "if": "school:language=tg", + "then": { + "da": "tadsjikisk", + "eo": "taĝika lingvo", + "es": "tayiko", + "fi": "tadžikki", + "gl": "Lingua taxica", + "id": "Bahasa Tajik", + "it": "tagico", + "ja": "タジク語", + "nb_NO": "tadsjikisk", + "nl": "Tadzjieks", + "pl": "język tadżycki", + "pt": "Língua tadjique", + "pt_BR": "Língua tadjique", + "ru": "таджикский язык", + "sv": "tadzjikiska", + "hu": "tádzsik", + "ca": "tadjik", + "en": "Tajik", + "fr": "tadjik", + "de": "Tadschikisch" + }, + "priorityIf": "_country~((^|;)tj($|;))", + "searchTerms": { + "*": [ + "tg" + ] + } + }, + { + "if": "school:language=bat-smg", + "then": { + "ca": "samogitià", + "da": "Žemaitisk", + "de": "Schemaitisch", + "en": "Samogitian", + "eo": "Ĵemajtia dialekto", + "es": "Idioma samogitiano", + "fi": "Samogiitti", + "fr": "samogitien", + "gl": "Samoxiciano", + "id": "Dialek Samogitia", + "it": "samogitico", + "ja": "サモギティア語", + "nb_NO": "samogitisk", + "nl": "Samogitisch", + "pl": "język żmudzki", + "pt": "Samogiciano", + "ru": "жемайтское наречие", + "sv": "žemaitiska", + "zh_Hans": "萨莫吉提亚语", + "zh_Hant": "薩莫吉提亞語", + "hu": "szamogit" + }, + "searchTerms": { + "*": [ + "bat-smg" + ] + } + }, + { + "if": "school:language=nod", + "then": { + "de": "Lanna", + "ca": "tailandès septentrional", + "en": "Northern Thai", + "eo": "nord-taja lingvo", + "es": "idioma tailandés septentrional", + "fr": "thaï du Nord", + "id": "Bahasa Thai Utara", + "it": "thailandese settentrionale", + "ja": "北タイ語", + "nl": "Noordelijk Thai", + "pl": "Język północnotajski", + "ru": "Юан (язык)", + "zh_Hans": "北部泰语", + "zh_Hant": "北部泰語" + }, + "searchTerms": { + "*": [ + "nod" + ] + } + }, + { + "if": "school:language=lag", + "then": { + "fi": "Lango", + "de": "Langi", + "nl": "Langi", + "en": "Rangi", + "nb_NO": "Rangi", + "fr": "langi", + "ja": "ランギ語", + "pl": "Język langi", + "eo": "rangia lingvo" + }, + "searchTerms": { + "*": [ + "lag" + ] + } + }, + { + "if": "school:language=krj", + "then": { + "de": "Kinaray-a", + "en": "Kinaray-a", + "fi": "Kinaray-a", + "fr": "kinaray-a", + "id": "bahasa Karay-a", + "it": "kinaray-a", + "ja": "キナライア語", + "nb_NO": "Kinaray-a", + "nl": "Kinaray-a", + "pt": "língua Karai-a", + "es": "harayo", + "pl": "język Karaya", + "ru": "Карайский язык", + "da": "harajansk" + }, + "searchTerms": { + "*": [ + "krj" + ] + } + }, + { + "if": "school:language=yap", + "then": { + "en": "Yapese", + "de": "Yapesisch", + "fi": "Yapin kieli", + "fr": "yap", + "it": "yapese", + "ja": "ヤップ語", + "nb_NO": "Yapesisk", + "nl": "Yapees", + "pl": "Język yap", + "pt": "Língua yap", + "ru": "Япский язык" + }, + "searchTerms": { + "*": [ + "yap" + ] + } + }, + { + "if": "school:language=ydg", + "then": { + "de": "Yidgha", + "en": "Yidgha", + "fr": "yidgha", + "ja": "イドガ語", + "pl": "Język yidgański", + "ru": "Йидга", + "pt": "Língua yidgha" + }, + "searchTerms": { + "*": [ + "ydg" + ] + } + }, + { + "if": "school:language=vi", + "then": { + "pt": "vietnamita", + "en": "Vietnamese", + "ca": "vietnamita", + "es": "vietnamita", + "fr": "vietnamien", + "hu": "vietnámi", + "id": "Vietnam", + "it": "vietnamita", + "de": "Vietnamesisch", + "da": "vietnamesisk", + "eo": "vjetnama lingvo", + "fi": "vietnam", + "gl": "Lingua vietnamita", + "ja": "ベトナム語", + "nb_NO": "vietnamesisk", + "nl": "Vietnamees", + "pl": "język wietnamski", + "pt_BR": "Língua vietnamita", + "ru": "вьетнамский язык", + "sl": "Vietnamščina", + "sv": "vietnamesiska", + "zh_Hant": "越南語" + }, + "priorityIf": "_country~((^|;)vn($|;))", + "searchTerms": { + "*": [ + "vi" + ] + } + }, + { + "if": "school:language=it", + "then": { + "ca": "italià", + "da": "italiensk", + "eo": "itala lingvo", + "fi": "italia", + "gl": "lingua italiana", + "nb_NO": "italiensk", + "pl": "język włoski", + "pt_BR": "língua italiana", + "ru": "итальянский язык", + "sl": "italijanščina", + "sv": "italienska", + "zh_Hans": "意大利语", + "zh_Hant": "義大利語", + "en": "Italian", + "ja": "イタリア語", + "es": "italiano", + "hu": "olasz", + "id": "Italia", + "it": "italiano", + "fr": "italien", + "de": "Italienisch", + "nl": "Italiaans", + "pt": "italiano" + }, + "priorityIf": "_country~((^|;)ch($|;))|((^|;)it($|;))|((^|;)sm($|;))|((^|;)va($|;))", + "searchTerms": { + "*": [ + "it" + ] + } + }, + { + "if": "school:language=bzg", + "then": { + "en": "Babuza", + "nl": "Babuza", + "ca": "babuza", + "es": "babuza", + "fr": "babuza", + "it": "lingua babuza", + "ja": "バブサ語", + "zh_Hans": "巴布萨语", + "zh_Hant": "巴布薩語", + "id": "Bahasa Babuza" + }, + "searchTerms": { + "*": [ + "bzg" + ] + } + }, + { + "if": "school:language=pyu", + "then": { + "en": "Puyuma", + "ca": "puyuma", + "eo": "pujuma lingvo", + "id": "Bahasa Puyuma", + "it": "lingua puyuma", + "ja": "プユマ語", + "nl": "Pyuma", + "ru": "Пуюма", + "zh_Hans": "卑南语", + "zh_Hant": "卑南語", + "fr": "pouyouma" + }, + "searchTerms": { + "*": [ + "pyu" + ] + } + }, + { + "if": "school:language=guc", + "then": { + "ca": "wayuunaiki", + "de": "Wayuu", + "en": "Wayuu", + "eo": "vajua lingvo", + "es": "Idioma wayú", + "fr": "wayuu", + "gl": "Lingua wayuu", + "it": "lingua wayuu", + "ja": "ワユ語", + "nl": "Wayuu", + "pl": "Język wayuu", + "pt": "Língua wayuu", + "ru": "Гуахиро" + }, + "searchTerms": { + "*": [ + "guc" + ] + } + }, + { + "if": "school:language=ood", + "then": { + "ca": "o'odham", + "en": "O'odham", + "es": "o'odham", + "fr": "o'odham", + "gl": "Lingua o'odham", + "it": "lingua o'odham", + "ja": "パパゴ語", + "nb_NO": "O'odham", + "nl": "O'odham", + "pl": "Język o'odham", + "ru": "оодхам", + "sv": "o'odham" + }, + "searchTerms": { + "*": [ + "ood" + ] + } + }, + { + "if": "school:language=bdr", + "then": { + "de": "West Coast Bajau", + "en": "West Coast Bajau", + "fr": "bajau de la côte occidentale" + }, + "searchTerms": { + "*": [ + "bdr" + ] + } + }, + { + "if": "school:language=btm", + "then": { + "en": "Mandailing", + "fr": "batak mandailing", + "id": "Bahasa Mandailing", + "ja": "バタク・マンダイリン語", + "pl": "język batak mandailing", + "zh_Hans": "曼代灵语", + "zh_Hant": "曼代靈語" + }, + "searchTerms": { + "*": [ + "btm" + ] + } + }, + { + "if": "school:language=gcf", + "then": { + "en": "Guadeloupean Creole", + "fi": "Guadeloupen kreoli", + "fr": "créole guadeloupéen-martiniquais", + "nl": "Guadeloups Creools", + "pt": "Crioulo de Guadalupe", + "sv": "Guadeloupisk kreol", + "ca": "crioll de Guadalupe" + }, + "searchTerms": { + "*": [ + "gcf" + ] + } + }, + { + "if": "school:language=srq", + "then": { + "ca": "Sirionó", + "en": "Sirionó", + "es": "sirionó", + "fr": "sirionó", + "ja": "シリオノ語", + "nb_NO": "sirionó", + "nl": "Sirionó", + "pt": "Língua sirionó", + "ru": "сирионо" + }, + "searchTerms": { + "*": [ + "srq" + ] + } + }, + { + "if": "school:language=ins", + "then": { + "en": "Indian Sign Language", + "eo": "barata signolingvo", + "fr": "langue des signes indo-pakistanaise", + "it": "lingua dei segni indiana", + "ja": "インド・パキスタン手話", + "nl": "Indiase Gebarentaal", + "pt": "língua de sinais indiana", + "ru": "Индо-пакистанский жестовый язык", + "sv": "Indiskt teckenspråk", + "id": "Bahasa Isyarat India-Pakistan" + }, + "searchTerms": { + "*": [ + "ins" + ] + } + }, + { + "if": "school:language=rki", + "then": { + "en": "Arakanese", + "fr": "arakanais", + "id": "Bahasa Arakan", + "ja": "ラカイン語", + "pl": "Język arakański", + "pt": "Língua arracanesa", + "ru": "Араканский язык", + "zh_Hans": "阿拉干语", + "zh_Hant": "阿拉幹語" + }, + "searchTerms": { + "*": [ + "rki" + ] + } + }, + { + "if": "school:language=wls", + "then": { + "it": "wallisiano", + "ja": "ウォリス語", + "nl": "Wallisiaans", + "pl": "Język uvea wschodni", + "pt": "Língua wallisiana", + "ru": "Уоллисский язык", + "sv": "Walliska", + "ca": "wallisià", + "de": "Wallisianisch", + "en": "Wallisian", + "es": "walisiano", + "fi": "Uvean kieli", + "fr": "wallisien" + }, + "searchTerms": { + "*": [ + "wls" + ] + } + }, + { + "if": "school:language=sje", + "then": { + "ca": "sami de Pite", + "de": "Pitesamisch", + "en": "Pite Sami", + "eo": "pite-samea lingvo", + "es": "sami de Pite", + "fi": "piitimensaame", + "fr": "same de Pite", + "gl": "Lingua saami de Pite", + "it": "lingua sami di Pite", + "ja": "ピーテ・サーミ語", + "nb_NO": "pitesamisk", + "nl": "Pite Sami", + "pl": "język pite", + "pt": "língua sami de Pite", + "ru": "пите-саамский язык", + "sv": "pitesamiska", + "zh_Hans": "皮特萨米语", + "zh_Hant": "皮特薩米語", + "hu": "pitei számi" + }, + "searchTerms": { + "*": [ + "sje" + ] + } + }, + { + "if": "school:language=smj", + "then": { + "ca": "sami de Lule", + "de": "Lulesamisch", + "en": "Lule Sami", + "eo": "lule-samea lingvo", + "es": "sami de Lule", + "fi": "luulajansaame", + "fr": "same de Lule", + "gl": "Lingua saami de Lule", + "hu": "lulei számi", + "it": "lingua sami di Lule", + "ja": "ルレ・サーミ語", + "nb_NO": "lulesamisk", + "nl": "Lule-Samisch", + "pl": "język lule", + "pt": "língua sami de Lule", + "pt_BR": "Língua lapônica de Lule", + "ru": "луле-саамский язык", + "sv": "lulesamiska", + "zh_Hans": "吕勒萨米语", + "zh_Hant": "呂勒薩米語" + }, + "searchTerms": { + "*": [ + "smj" + ] + } + }, + { + "if": "school:language=kum", + "then": { + "en": "Kumyk", + "ca": "kumyk", + "de": "Kumykisch", + "eo": "kumika lingvo", + "es": "Idioma cumuco", + "fi": "Kumykin kieli", + "fr": "koumyk", + "id": "Bahasa Kumyk", + "it": "cumucco", + "ja": "クムク語", + "nb_NO": "kumykisk", + "nl": "Koemuks", + "pt": "Língua kumyk", + "pt_BR": "Língua kumyk", + "ru": "кумыкский язык", + "sv": "kumykiska" + }, + "searchTerms": { + "*": [ + "kum" + ] + } + }, + { + "if": "school:language=nui", + "then": { + "en": "Kombe", + "ca": "llengua combe", + "de": "Ngumbi", + "es": "kombe", + "fr": "Langue kombe", + "gl": "Lingua kombe", + "ja": "コンベ語" + }, + "searchTerms": { + "*": [ + "nui" + ] + } + }, + { + "if": "school:language=zh-min-nan", + "then": { + "en": "Southern Min", + "fr": "minnan", + "zh_Hant": "閩南語", + "da": "Minnan", + "fi": "Minnan", + "de": "Min Nan", + "eo": "minnana lingvo", + "es": "chino min nan", + "gl": "lingua min nam", + "id": "Min Selatan", + "it": "min nan", + "ja": "閩南語", + "nb_NO": "minnan", + "nl": "Minnanyu", + "pl": "język minnański", + "pt": "Min Nan", + "pt_BR": "Min nan", + "ru": "южноминьский язык", + "sv": "minnan", + "ca": "min nan" + }, + "searchTerms": { + "*": [ + "zh-min-nan" + ] + } + }, + { + "if": "school:language=pl", + "then": { + "de": "Polnisch", + "en": "Polish", + "pl": "język polski", + "es": "polaco", + "fr": "polonais", + "ca": "polonès", + "da": "polsk", + "eo": "pola lingvo", + "fi": "puola", + "gl": "lingua polaca", + "hu": "lengyel", + "id": "Polandia", + "it": "polacco", + "ja": "ポーランド語", + "zh_Hans": "波兰语", + "zh_Hant": "波蘭語", + "nb_NO": "polsk", + "nl": "Pools", + "pt": "polaco", + "pt_BR": "língua polonesa", + "ru": "польский язык", + "sl": "poljščina", + "sv": "polska" + }, + "priorityIf": "_country~((^|;)pl($|;))", + "searchTerms": { + "*": [ + "pl" + ] + } + }, + { + "if": "school:language=cpx", + "then": { + "nb_NO": "Puxian", + "de": "Pu-Xian", + "en": "Pu-Xian Min", + "fr": "puxian", + "ja": "莆仙語", + "pl": "Język puxian", + "pt": "Língua putian", + "ru": "Пусяньский язык" + }, + "searchTerms": { + "*": [ + "cpx" + ] + } + }, + { + "if": "school:language=khg", + "then": { + "en": "Khams Tibetan", + "fr": "tibétain khamké", + "ja": "カム・チベット語", + "pl": "Język kham", + "ru": "камский тибетский язык", + "pt": "Tibetano khams", + "hu": "khami tibeti" + }, + "searchTerms": { + "*": [ + "khg" + ] + } + }, + { + "if": "school:language=fkv", + "then": { + "en": "Kven", + "ca": "kven", + "da": "kvensk", + "de": "Kvenisch", + "eo": "kvena lingvo", + "es": "kven", + "fi": "kveeni", + "fr": "kvène", + "gl": "Lingua kven", + "id": "Bahasa Kven", + "it": "kven", + "ja": "クヴェン語", + "nb_NO": "kvensk", + "nl": "Kveens", + "pl": "Język kweński", + "pt": "kven", + "pt_BR": "língua kven", + "ru": "квенский язык", + "sv": "kvänska", + "zh_Hant": "克文語" + }, + "searchTerms": { + "*": [ + "fkv" + ] + } + }, + { + "if": "school:language=fuf", + "then": { + "en": "Pular", + "fr": "pular", + "ja": "プラー語" + }, + "searchTerms": { + "*": [ + "fuf" + ] + } + }, + { + "if": "school:language=jax", + "then": { + "ru": "Джамби", + "en": "Jambi Malay", + "fr": "malais jambi", + "id": "Bahasa Melayu Jambi", + "ja": "ジャンビ・マレー語", + "pl": "Język jambi" + }, + "searchTerms": { + "*": [ + "jax" + ] + } + }, + { + "if": "school:language=dtp", + "then": { + "fr": "dusun", + "de": "Dusun", + "en": "Kadazandusun", + "id": "Bahasa Kadazandusun", + "ja": "中央ドゥスン語", + "nl": "Dusun", + "pl": "język dusun", + "pt": "Língua dusun", + "ru": "дусунский язык" + }, + "searchTerms": { + "*": [ + "dtp" + ] + } + }, + { + "if": "school:language=zgh", + "then": { + "ca": "amazic estàndard marroquí", + "de": "marokkanisches Tamazight", + "en": "Standard Moroccan Berber", + "eo": "norma maroka tamaziĥta lingvo", + "es": "Amazig estándar marroquí", + "fi": "Vakioitu tamazight", + "fr": "amazighe standard marocain", + "ja": "標準モロッコ・タマジクト語", + "nl": "Standaardtamazight", + "zh_Hans": "标准摩洛哥柏柏尔语", + "zh_Hant": "標準摩洛哥柏柏語", + "ru": "Стандартный марокканский берберский язык" + }, + "searchTerms": { + "*": [ + "zgh" + ] + } + }, + { + "if": "school:language=bgn", + "then": { + "en": "Western Balochi", + "fr": "baloutche de l'Ouest", + "it": "beluci occidentale", + "ja": "西バローチー語", + "nl": "West-Beloetsji", + "ru": "западный белуджский язык" + }, + "searchTerms": { + "*": [ + "bgn" + ] + } + }, + { + "if": "school:language=yav", + "then": { + "en": "Yangben", + "fi": "Yangben", + "fr": "yangben", + "ja": "ヤンベン語", + "nl": "Yangben" + }, + "searchTerms": { + "*": [ + "yav" + ] + } + }, + { + "if": "school:language=sv", + "then": { + "pt": "língua sueca", + "pt_BR": "língua sueca", + "ru": "шведский язык", + "sl": "švedščina", + "zh_Hant": "瑞典語", + "en": "Swedish", + "ca": "suec", + "es": "sueco", + "fr": "suédois", + "ja": "スウェーデン語", + "da": "svensk", + "sv": "svenska", + "hu": "svéd", + "id": "Swedia", + "it": "svedese", + "de": "Schwedisch", + "eo": "sveda lingvo", + "fi": "ruotsi", + "gl": "lingua sueca", + "nb_NO": "svensk", + "nl": "Zweeds", + "pl": "język szwedzki" + }, + "priorityIf": "_country~((^|;)fi($|;))|((^|;)se($|;))", + "searchTerms": { + "*": [ + "sv" + ] + } + }, + { + "if": "school:language=azb", + "then": { + "ca": "Àzeri del sud", + "de": "Südaserbaidschanisch", + "en": "South Azerbaijani", + "eo": "sud-azerbajĝana lingvo", + "fr": "azéri du Sud", + "ja": "南アゼルバイジャン語", + "nl": "Zuid-Azerbeidzjaans", + "ru": "южно-азербайджанский язык", + "sv": "sydazerbajdzjanska", + "zh_Hans": "南阿塞拜疆语", + "zh_Hant": "南阿塞拜疆語" + }, + "searchTerms": { + "*": [ + "azb" + ] + } + }, + { + "if": "school:language=xnb", + "then": { + "ca": "kanakanabu", + "en": "Kanakanavu", + "fi": "Kanakanabu", + "fr": "kanakanabu", + "it": "kanakanabu", + "ja": "カナカナブ語", + "nl": "Kanakanabu", + "pl": "język kanakanabu", + "pt": "Língua kanakanavu", + "ru": "Канаканабский язык", + "zh_Hans": "卡那卡那富语", + "zh_Hant": "卡那卡那富語", + "id": "Bahasa Kanakanavu" + }, + "searchTerms": { + "*": [ + "xnb" + ] + } + }, + { + "if": "school:language=fa-af", + "then": { + "en": "Dari", + "fr": "dari", + "it": "dari", + "ja": "ダリー語", + "ru": "дари", + "nl": "Dari", + "de": "Dari", + "pl": "Dari", + "ca": "darí", + "da": "dari", + "eo": "daria lingvo", + "es": "dari", + "fi": "darin kieli", + "gl": "Lingua dari", + "hu": "dari", + "id": "Bahasa Persia Afgani", + "nb_NO": "dari", + "pt": "Língua dari", + "pt_BR": "Língua dari", + "sv": "dari", + "zh_Hans": "达利语", + "zh_Hant": "達利語" + }, + "searchTerms": { + "*": [ + "fa-af" + ] + } + }, + { + "if": "school:language=qu", + "then": { + "ru": "кечуа", + "da": "quechua", + "eo": "keĉua lingvaro", + "es": "lenguas quechuas", + "fi": "ketšua", + "fr": "quechua", + "gl": "linguas quechuas", + "hu": "kecsua", + "id": "Bahasa Quechua", + "ja": "ケチュア語", + "nb_NO": "quechua", + "pl": "język keczua", + "pt": "quíchua", + "pt_BR": "quíchua", + "sl": "kečuanščina", + "sv": "quechua", + "ca": "quítxua", + "de": "Quechua", + "en": "Quechua", + "nl": "Quechua", + "it": "quechua", + "zh_Hans": "克丘亚语", + "zh_Hant": "奇楚瓦語" + }, + "priorityIf": "_country~((^|;)bo($|;))|((^|;)pe($|;))", + "searchTerms": { + "*": [ + "qu" + ] + } + }, + { + "if": "school:language=sei", + "then": { + "en": "Seri", + "nl": "Seri", + "de": "Seri", + "ca": "seri", + "es": "seri", + "fr": "seri", + "id": "Bahasa Seri", + "it": "seri", + "ja": "セリ語", + "pl": "Język seri", + "pt": "Língua seri", + "ru": "Сери", + "sv": "seri", + "zh_Hant": "塞裏語" + }, + "searchTerms": { + "*": [ + "sei" + ] + } + }, + { + "if": "school:language=sq", + "then": { + "en": "Albanian", + "ca": "albanès", + "hu": "albán", + "it": "albanese", + "nl": "Albanees", + "es": "albanés", + "fr": "albanais", + "da": "albansk", + "de": "Albanisch", + "eo": "albana lingvo", + "fi": "albania", + "gl": "Lingua albanesa", + "id": "Bahasa Albania", + "ja": "アルバニア語", + "nb_NO": "albansk", + "pl": "język albański", + "pt": "língua albanesa", + "pt_BR": "língua albanesa", + "ru": "албанский язык", + "sl": "albanščina", + "sv": "albanska", + "zh_Hans": "阿尔巴尼亚语", + "zh_Hant": "阿爾巴尼亞語" + }, + "priorityIf": "_country~((^|;)al($|;))|((^|;)mk($|;))", + "searchTerms": { + "*": [ + "sq" + ] + } + }, + { + "if": "school:language=uk", + "then": { + "sl": "Ukrajinščina", + "sv": "ukrainska", + "zh_Hant": "烏克蘭語", + "zh_Hans": "乌克兰语", + "da": "ukrainsk", + "de": "Ukrainisch", + "eo": "ukraina lingvo", + "es": "ucraniano", + "fi": "ukraina", + "fr": "ukrainien", + "gl": "lingua ucraína", + "id": "Bahasa Ukraina", + "ja": "ウクライナ語", + "nb_NO": "ukrainsk", + "nl": "Oekraïens", + "pl": "język ukraiński", + "pt": "ucraniano", + "pt_BR": "língua ucraniana", + "ru": "украинский язык", + "en": "Ukrainian", + "ca": "ucraïnès", + "hu": "ukrán", + "it": "ucraino" + }, + "priorityIf": "_country~((^|;)ua($|;))", + "searchTerms": { + "*": [ + "uk" + ] + } + }, + { + "if": "school:language=uz", + "then": { + "fr": "ouzbek", + "en": "Uzbek", + "hu": "üzbég", + "ca": "uzbek", + "da": "usbekisk", + "de": "Usbekisch", + "eo": "uzbeka lingvo", + "es": "uzbeko", + "fi": "uzbekki", + "gl": "Lingua usbeka", + "id": "Bahasa Uzbek", + "it": "uzbeco", + "ja": "ウズベク語", + "nb_NO": "usbekisk", + "nl": "Oezbeeks", + "pl": "język uzbecki", + "pt": "Língua uzbeque", + "pt_BR": "língua uzbeque", + "ru": "узбекский язык", + "sv": "uzbekiska", + "zh_Hans": "乌孜别克语", + "zh_Hant": "烏孜別克語" + }, + "priorityIf": "_country~((^|;)af($|;))|((^|;)uz($|;))", + "searchTerms": { + "*": [ + "uz" + ] + } + }, + { + "if": "school:language=ka", + "then": { + "da": "georgisk", + "eo": "kartvela lingvo", + "es": "georgiano", + "fi": "georgia", + "gl": "lingua xeorxiana", + "id": "Bahasa Georgia", + "ja": "ジョージア語", + "nb_NO": "georgisk", + "nl": "Georgisch", + "pl": "język gruziński", + "pt": "língua georgiana", + "pt_BR": "língua georgiana", + "ru": "грузинский язык", + "sl": "Gruzinščina", + "sv": "georgiska", + "zh_Hans": "格鲁吉亚语", + "zh_Hant": "喬治亞語", + "de": "Georgisch", + "en": "Georgian", + "fr": "géorgien", + "ca": "georgià", + "hu": "grúz", + "it": "georgiano" + }, + "priorityIf": "_country~((^|;)ge($|;))", + "searchTerms": { + "*": [ + "ka" + ] + } + }, + { + "if": "school:language=pt", + "then": { + "eo": "portugala lingvo", + "es": "portugués", + "fi": "portugali", + "fr": "portugais", + "gl": "lingua portuguesa", + "ja": "ポルトガル語", + "nb_NO": "portugisisk", + "pl": "język portugalski", + "pt_BR": "português", + "ru": "португальский язык", + "sl": "portugalščina", + "sv": "portugisiska", + "zh_Hans": "葡萄牙语", + "zh_Hant": "葡萄牙語", + "en": "Portuguese", + "hu": "portugál", + "id": "Portugis", + "it": "portoghese", + "nl": "Portugees", + "pt": "português", + "ca": "portuguès", + "da": "portugisisk", + "de": "Portugiesisch" + }, + "priorityIf": "_country~((^|;)ao($|;))|((^|;)br($|;))|((^|;)cv($|;))|((^|;)gq($|;))|((^|;)gw($|;))|((^|;)mz($|;))|((^|;)pt($|;))|((^|;)st($|;))|((^|;)tl($|;))", + "searchTerms": { + "*": [ + "pt" + ] + } + }, + { + "if": "school:language=hy", + "then": { + "de": "Armenisch", + "en": "Armenian", + "es": "armenio", + "fr": "arménien", + "ca": "armeni", + "da": "armensk", + "eo": "armena lingvo", + "fi": "armenia", + "gl": "lingua armenia", + "hu": "örmény", + "id": "Bahasa Armenia", + "it": "armeno", + "ja": "アルメニア語", + "nb_NO": "armensk", + "nl": "Armeens", + "pl": "język ormiański", + "pt": "língua arménia", + "pt_BR": "língua armênia", + "ru": "армянский язык", + "sl": "armenščina", + "sv": "armeniska", + "zh_Hant": "亞美尼亞語" + }, + "priorityIf": "_country~((^|;)am($|;))", + "searchTerms": { + "*": [ + "hy" + ] + } + }, + { + "if": "school:language=nl", + "then": { + "fi": "hollanti", + "gl": "lingua neerlandesa", + "ja": "オランダ語", + "nb_NO": "nederlandsk", + "pl": "język niderlandzki", + "pt": "neerlandês", + "pt_BR": "neerlandês", + "ru": "нидерландский язык", + "sl": "Nizozemščina", + "sv": "nederländska", + "zh_Hans": "荷兰语", + "zh_Hant": "荷蘭語", + "en": "Dutch", + "de": "Niederländisch", + "nl": "Nederlands", + "ca": "neerlandès", + "es": "neerlandés", + "fr": "néerlandais", + "hu": "holland", + "id": "Belanda", + "it": "olandese", + "da": "nederlandsk", + "eo": "nederlanda lingvo" + }, + "priorityIf": "_country~((^|;)be($|;))|((^|;)nl($|;))|((^|;)sr($|;))", + "searchTerms": { + "*": [ + "nl" + ] + } + }, + { + "if": "school:language=rm", + "then": { + "da": "Rætoromansk", + "de": "Bündnerromanisch", + "eo": "romanĉa lingvo", + "es": "romanche", + "fi": "retoromaani", + "fr": "romanche", + "gl": "lingua romanche", + "hu": "romans", + "id": "Bahasa Romansh", + "it": "romancio", + "ja": "ロマンシュ語", + "nb_NO": "retoromansk", + "nl": "Reto-Romaans", + "pl": "Język romansz", + "pt": "romanche", + "pt_BR": "língua romanche", + "ru": "романшский язык", + "sl": "Retoromanščina", + "sv": "rätoromanska", + "en": "Romansh", + "ca": "romanx" + }, + "priorityIf": "_country~((^|;)ch($|;))", + "searchTerms": { + "*": [ + "rm" + ] + } + }, + { + "if": "school:language=aln", + "then": { + "en": "Gheg Albanian", + "ca": "gheg", + "da": "gegisk", + "de": "Gegisch", + "eo": "geg-albana lingvo", + "es": "Albanés guego", + "fr": "guègue", + "it": "lingua albanese ghega", + "ja": "ゲグ方言", + "nb_NO": "Gegisk", + "nl": "Gegisch", + "pl": "Dialekt gegijski języka albańskiego", + "ru": "гегский диалект албанского языка", + "sv": "gegiska", + "zh_Hans": "盖格方言", + "zh_Hant": "蓋格方言", + "hu": "geg albán" + }, + "searchTerms": { + "*": [ + "aln" + ] + } + }, + { + "if": "school:language=mr", + "then": { + "fr": "marathi", + "ca": "marathi", + "da": "marathi", + "de": "Marathi", + "en": "Marathi", + "eo": "marata lingvo", + "es": "maratí", + "fi": "marathi", + "gl": "Lingua marathi", + "hu": "maráthi", + "id": "Bahasa Marathi", + "it": "marathi", + "ja": "マラーティー語", + "nb_NO": "marathi", + "nl": "Marathi", + "pl": "język marathi", + "pt": "marata", + "pt_BR": "Língua marata", + "ru": "маратхи", + "sv": "marathi", + "zh_Hans": "马拉地语", + "zh_Hant": "馬拉提語" + }, + "searchTerms": { + "*": [ + "mr" + ] + } + }, + { + "if": "school:language=mg", + "then": { + "ca": "malgaix", + "da": "Malagassisk", + "de": "Malagasy", + "en": "Malagasy", + "eo": "malagasa lingvo", + "es": "malgache", + "fi": "malagassi", + "fr": "malgache", + "gl": "Lingua malgaxe", + "hu": "malgas", + "id": "Bahasa Malagasi", + "it": "malgascio", + "ja": "マダガスカル語", + "nb_NO": "gassisk", + "nl": "Malagasi", + "pl": "język malgaski", + "pt": "Língua malgaxe", + "pt_BR": "Língua malgaxe", + "ru": "малагасийский язык", + "sv": "malagassiska" + }, + "priorityIf": "_country~((^|;)mg($|;))", + "searchTerms": { + "*": [ + "mg" + ] + } + }, + { + "if": "school:language=sh", + "then": { + "nb_NO": "serbokroatisk", + "nl": "Servo-Kroatisch", + "pl": "język serbsko-chorwacki", + "pt": "Língua servo-croata", + "pt_BR": "Língua servo-croata", + "ru": "сербохорватский язык", + "sl": "srbohrvaščina", + "sv": "serbokroatiska", + "zh_Hans": "塞尔维亚-克罗地亚语", + "zh_Hant": "塞爾維亞-克羅地亞語", + "ca": "serbocroat", + "da": "serbokroatisk", + "de": "Serbokroatisch", + "en": "Serbo-Croatian", + "eo": "serbokroata lingvo", + "es": "serbocroata", + "fi": "serbokroaatti", + "fr": "serbo-croate", + "gl": "Lingua serbocroata", + "hu": "szerbhorvát", + "id": "Bahasa Serbo-Kroasia", + "it": "serbo-croato", + "ja": "セルビア・クロアチア語" + }, + "searchTerms": { + "*": [ + "sh" + ] + } + }, + { + "if": "school:language=zu", + "then": { + "en": "Zulu", + "nb_NO": "zulu", + "nl": "Zoeloe", + "ca": "zulu", + "da": "zulu", + "de": "isiZulu", + "eo": "zulua lingvo", + "es": "zulú", + "fi": "zulu", + "fr": "zoulou", + "gl": "Lingua zulú", + "hu": "zulu", + "id": "Bahasa Zulu", + "it": "zulu", + "ja": "ズールー語", + "pl": "język zulu", + "pt": "língua zulu", + "pt_BR": "língua zulu", + "ru": "зулу", + "sv": "zulu", + "zh_Hant": "祖魯語" + }, + "priorityIf": "_country~((^|;)za($|;))", + "searchTerms": { + "*": [ + "zu" + ] + } + }, + { + "if": "school:language=is", + "then": { + "es": "islandés", + "ca": "islandès", + "da": "islandsk", + "de": "Isländisch", + "en": "Icelandic", + "eo": "islanda lingvo", + "fi": "islanti", + "fr": "islandais", + "gl": "lingua islandesa", + "hu": "izlandi", + "id": "Bahasa Islan", + "it": "islandese", + "ja": "アイスランド語", + "nb_NO": "islandsk", + "nl": "IJslands", + "pl": "język islandzki", + "pt": "islandês", + "pt_BR": "língua islandesa", + "ru": "исландский язык", + "sl": "Islandščina", + "sv": "isländska", + "zh_Hans": "冰岛语", + "zh_Hant": "冰島語" + }, + "priorityIf": "_country~((^|;)is($|;))", + "searchTerms": { + "*": [ + "is" + ] + } + }, + { + "if": "school:language=lb", + "then": { + "de": "Luxemburgisch", + "fr": "luxembourgeois", + "en": "Luxembourgish", + "ca": "luxemburguès", + "da": "Letzeburgsk", + "eo": "luksemburga lingvo", + "es": "luxemburgués", + "fi": "luxemburg", + "gl": "Lingua luxemburguesa", + "hu": "luxemburgi", + "id": "Bahasa Luksemburg", + "it": "lussemburghese", + "ja": "ルクセンブルク語", + "nb_NO": "luxembourgsk", + "nl": "Luxemburgs", + "pl": "język luksemburski", + "pt": "língua luxemburguesa", + "pt_BR": "língua luxemburguesa", + "ru": "люксембургский язык", + "sl": "Luksemburščina", + "sv": "luxemburgiska" + }, + "priorityIf": "_country~((^|;)lu($|;))", + "searchTerms": { + "*": [ + "lb" + ] + } + }, + { + "if": "school:language=tk", + "then": { + "ca": "turcman", + "da": "turkmensk", + "de": "Turkmenisch", + "en": "Turkmen", + "eo": "turkmena lingvo", + "es": "turcomano", + "fi": "turkmeeni", + "fr": "turkmène", + "gl": "Lingua turcomá", + "hu": "türkmén", + "id": "Bahasa Turkmen", + "it": "turkmeno", + "ja": "トルクメン語", + "nb_NO": "turkmensk", + "nl": "Turkmeens", + "pl": "język turkmeński", + "pt": "Língua turcomena", + "pt_BR": "Língua turcomena", + "ru": "туркменский язык", + "sl": "Turkmenščina", + "sv": "turkmeniska" + }, + "priorityIf": "_country~((^|;)af($|;))|((^|;)tm($|;))", + "searchTerms": { + "*": [ + "tk" + ] + } + }, + { + "if": "school:language=th", + "then": { + "en": "Thai", + "hu": "thai", + "it": "thailandese", + "id": "Thai", + "nl": "Thai", + "de": "Thailändisch", + "fr": "thaï", + "ca": "tailandès", + "da": "thai", + "eo": "taja lingvo", + "es": "tailandés", + "fi": "thain kieli", + "gl": "lingua tailandesa", + "ja": "タイ語", + "nb_NO": "thai", + "pl": "język tajski", + "pt": "tailandês", + "pt_BR": "tailandês", + "ru": "тайский язык", + "sl": "tajščina", + "sv": "thai", + "zh_Hant": "泰語" + }, + "priorityIf": "_country~((^|;)th($|;))", + "searchTerms": { + "*": [ + "th" + ] + } + }, + { + "if": "school:language=ja", + "then": { + "zh_Hans": "日语", + "zh_Hant": "日語", + "id": "bahasa Jepang", + "nb_NO": "japansk", + "nl": "Japans", + "pl": "język japoński", + "pt": "japonês", + "pt_BR": "língua japonesa", + "ru": "японский язык", + "sl": "Japonščina", + "sv": "japanska", + "en": "Japanese", + "ca": "japonès", + "da": "japansk", + "de": "Japanisch", + "eo": "japana lingvo", + "es": "japonés", + "fi": "japani", + "fr": "japonais", + "gl": "lingua xaponesa", + "hu": "japán", + "it": "giapponese", + "ja": "日本語" + }, + "priorityIf": "_country~((^|;)jp($|;))|((^|;)pw($|;))", + "searchTerms": { + "*": [ + "ja" + ] + } + }, + { + "if": "school:language=lv", + "then": { + "da": "lettisk", + "de": "Lettisch", + "eo": "latva lingvo", + "fi": "latvia", + "gl": "lingua letona", + "hu": "lett", + "id": "Bahasa Latvi", + "it": "lettone", + "ja": "ラトビア語", + "nb_NO": "latvisk", + "nl": "Lets", + "pl": "język łotewski", + "pt": "língua letã", + "pt_BR": "língua letã", + "ca": "letó", + "en": "Latvian", + "es": "letón", + "fr": "letton", + "ru": "латышский язык", + "sl": "Latvijščina", + "sv": "lettiska", + "zh_Hant": "拉脫維亞語" + }, + "priorityIf": "_country~((^|;)lv($|;))", + "searchTerms": { + "*": [ + "lv" + ] + } + }, + { + "if": "school:language=rmy", + "then": { + "ja": "ロマ語", + "en": "Romani", + "nl": "Romani", + "ca": "romaní", + "da": "Romani", + "pt": "Romani", + "de": "Romani", + "pt_BR": "Romani", + "eo": "cigana lingvo", + "es": "romaní", + "fi": "romanikieli", + "fr": "romani", + "gl": "lingua romaní", + "hu": "cigány", + "id": "Bahasa Romani", + "it": "romaní", + "nb_NO": "romanes", + "pl": "język romski", + "ru": "цыганский язык", + "sl": "romščina", + "sv": "romani" + }, + "searchTerms": { + "*": [ + "rmy" + ] + } + }, + { + "if": "school:language=km", + "then": { + "nb_NO": "khmer", + "pl": "język khmerski", + "pt": "Língua khmer", + "pt_BR": "Língua khmer", + "ru": "кхмерский язык", + "sv": "khmer", + "de": "Khmer", + "en": "Khmer", + "nl": "Khmer", + "it": "khmer", + "fr": "khmer", + "ca": "khmer", + "da": "Khmer", + "eo": "kmera lingvo", + "es": "camboyano", + "fi": "khmer", + "gl": "Lingua khmer", + "hu": "khmer", + "id": "Bahasa Khmer", + "ja": "クメール語" + }, + "priorityIf": "_country~((^|;)kh($|;))", + "searchTerms": { + "*": [ + "km" + ] + } + }, + { + "if": "school:language=lo", + "then": { + "en": "Lao", + "de": "Laotisch", + "da": "Lao", + "ca": "laosià", + "eo": "laosa lingvo", + "es": "lao", + "fi": "lao", + "fr": "lao", + "gl": "Lingua laosiana", + "hu": "lao", + "id": "Bahasa Laos", + "it": "lao", + "ja": "ラーオ語", + "nb_NO": "laotisk", + "nl": "Laotiaans", + "pl": "Język laotański", + "pt": "Língua laociana", + "pt_BR": "Língua laociana", + "ru": "лаосский язык", + "sv": "lao", + "zh_Hans": "老挝语", + "zh_Hant": "老撾語" + }, + "priorityIf": "_country~((^|;)la($|;))", + "searchTerms": { + "*": [ + "lo" + ] + } + }, + { + "if": "school:language=so", + "then": { + "zh_Hans": "索马里语", + "zh_Hant": "索馬利亞語", + "ca": "somali", + "da": "somali", + "de": "Somali", + "en": "Somali", + "eo": "somala lingvo", + "es": "somalí", + "fi": "somalin kieli", + "fr": "somali", + "gl": "Lingua somalí", + "hu": "szomáli", + "id": "Bahasa Somali", + "it": "somalo", + "ja": "ソマリ語", + "nb_NO": "somali", + "nl": "Somalisch", + "pl": "język somalijski", + "pt": "Língua somali", + "pt_BR": "Língua somali", + "ru": "сомалийский язык", + "sv": "somaliska" + }, + "priorityIf": "_country~((^|;)so($|;))", + "searchTerms": { + "*": [ + "so" + ] + } + }, + { + "if": "school:language=sma", + "then": { + "ca": "sami meridional", + "da": "Sydsamisk", + "de": "Südsamisch", + "en": "Southern Sami", + "eo": "sud-samea lingvo", + "es": "sami meridional", + "fi": "eteläsaame", + "fr": "same du Sud", + "gl": "Lingua saami meridional", + "hu": "déli számi", + "id": "Bahasa Sami Selatan", + "it": "sami meridionale", + "ja": "南部サーミ語", + "nb_NO": "sørsamisk", + "nl": "Zuid-Samisch", + "pl": "język południowolapoński", + "pt": "língua sami meridional", + "pt_BR": "Língua sami meridional", + "ru": "южносаамский язык", + "sv": "sydsamiska", + "zh_Hans": "南萨米语", + "zh_Hant": "南薩米語" + }, + "searchTerms": { + "*": [ + "sma" + ] + } + }, + { + "if": "school:language=moe", + "then": { + "de": "Innu-Sprache", + "en": "Innu-aimun", + "eo": "inua lingvo", + "es": "innu", + "fr": "innu-aimun", + "id": "Bahasa Innu", + "it": "innu-aimun", + "nl": "Innu language", + "ru": "Монтанье-наскапи" + }, + "searchTerms": { + "*": [ + "moe" + ] + } + }, + { + "if": "school:language=sr", + "then": { + "da": "serbisk", + "eo": "serba lingvo", + "fi": "serbia", + "gl": "Lingua serbia", + "id": "Bahasa Serbia", + "ja": "セルビア語", + "nb_NO": "serbisk", + "nl": "Servisch", + "pl": "język serbski", + "pt": "língua sérvia", + "pt_BR": "língua sérvia", + "ru": "сербский язык", + "sl": "Srbščina", + "sv": "serbiska", + "de": "Serbisch", + "en": "Serbian", + "ca": "serbi", + "es": "serbio", + "fr": "serbe", + "hu": "szerb", + "it": "serbo", + "zh_Hant": "塞爾維亞語" + }, + "priorityIf": "_country~((^|;)ba($|;))|((^|;)rs($|;))", + "searchTerms": { + "*": [ + "sr" + ] + } + }, + { + "if": "school:language=lt", + "then": { + "hu": "litván", + "id": "Bahasa Lituavi", + "it": "lituano", + "ja": "リトアニア語", + "nb_NO": "litauisk", + "nl": "Litouws", + "pl": "język litewski", + "pt": "língua lituana", + "pt_BR": "língua lituana", + "ru": "литовский язык", + "sl": "Litovščina", + "sv": "litauiska", + "zh_Hans": "立陶宛语", + "zh_Hant": "立陶宛語", + "ca": "lituà", + "da": "litauisk", + "de": "Litauisch", + "en": "Lithuanian", + "eo": "litova lingvo", + "es": "lituano", + "fi": "liettua", + "fr": "lituanien", + "gl": "lingua lituana" + }, + "priorityIf": "_country~((^|;)lt($|;))", + "searchTerms": { + "*": [ + "lt" + ] + } + }, + { + "if": "school:language=hu", + "then": { + "nb_NO": "ungarsk", + "nl": "Hongaars", + "pl": "język węgierski", + "pt": "húngaro", + "pt_BR": "língua húngara", + "ru": "венгерский язык", + "sl": "madžarščina", + "sv": "ungerska", + "zh_Hant": "匈牙利語", + "en": "Hungarian", + "fr": "hongrois", + "ca": "hongarès", + "da": "ungarsk", + "de": "Ungarisch", + "eo": "hungara lingvo", + "es": "húngaro", + "fi": "unkari", + "gl": "lingua húngara", + "hu": "magyar", + "id": "Hongaria", + "it": "ungherese", + "ja": "ハンガリー語" + }, + "priorityIf": "_country~((^|;)hu($|;))", + "searchTerms": { + "*": [ + "hu" + ] + } + }, + { + "if": "school:language=my", + "then": { + "gl": "birmano", + "hu": "burmai", + "id": "Bahasa Myanmar", + "it": "birmano", + "ja": "ビルマ語", + "nb_NO": "burmesisk", + "nl": "Birmaans", + "pl": "język birmański", + "pt": "birmanês", + "pt_BR": "Língua birmanesa", + "ru": "бирманский язык", + "sv": "burmesiska", + "de": "Birmanisch", + "en": "Burmese", + "fr": "birman", + "ca": "birmà", + "da": "burmesisk", + "eo": "birma lingvo", + "es": "birmano", + "fi": "burma" + }, + "priorityIf": "_country~((^|;)mm($|;))", + "searchTerms": { + "*": [ + "my" + ] + } + }, + { + "if": "school:language=ms", + "then": { + "en": "Malay", + "ca": "malai", + "da": "Malajisk", + "de": "Malaiisch", + "eo": "malaja lingvo", + "es": "malayo", + "fi": "malaji", + "fr": "malais", + "gl": "lingua malaia", + "hu": "maláj", + "id": "Bahasa Melayu", + "it": "malese", + "ja": "マレー語", + "nb_NO": "malayisk", + "nl": "Maleis", + "pl": "język malajski", + "pt": "malaio", + "pt_BR": "língua malaia", + "ru": "малайский язык", + "sv": "malajiska", + "zh_Hans": "马来语", + "zh_Hant": "馬來語" + }, + "priorityIf": "_country~((^|;)bn($|;))|((^|;)my($|;))|((^|;)sg($|;))", + "searchTerms": { + "*": [ + "ms" + ] + } + }, + { + "if": "school:language=xh", + "then": { + "es": "xhosa", + "it": "xhosa", + "nb_NO": "xhosa", + "ca": "xosa", + "da": "isiXhosa", + "de": "IsiXhosa", + "eo": "kosa lingvo", + "fi": "Xhosan kieli", + "gl": "Lingua xhosa", + "hu": "xhosza", + "id": "Bahasa Xhosa", + "ja": "コサ語", + "pl": "język xhosa", + "pt": "língua xhosa", + "pt_BR": "língua xhosa", + "sv": "xhosa", + "zh_Hant": "科薩語", + "en": "Xhosa", + "nl": "Xhosa", + "ru": "коса", + "fr": "xhosa" + }, + "priorityIf": "_country~((^|;)za($|;))|((^|;)zw($|;))", + "searchTerms": { + "*": [ + "xh" + ] + } + }, + { + "if": "school:language=udm", + "then": { + "en": "Udmurt", + "ca": "udmurt", + "da": "Udmurtisk", + "de": "Udmurtisch", + "eo": "udmurta lingvo", + "es": "udmurto", + "fi": "udmurtin kieli", + "fr": "oudmourte", + "gl": "Lingua udmurta", + "hu": "udmurt", + "id": "Bahasa Udmurt", + "it": "udmurto", + "ja": "ウドムルト語", + "nb_NO": "udmurtisk", + "nl": "Oedmoerts", + "pl": "język udmurcki", + "pt": "Língua udmurte", + "pt_BR": "Língua udmurte", + "ru": "удмуртский язык", + "sv": "udmurtiska" + }, + "searchTerms": { + "*": [ + "udm" + ] + } + }, + { + "if": "school:language=rue", + "then": { + "da": "Rusinsk", + "de": "Russinisch", + "eo": "rusina lingvo", + "es": "rusino", + "fi": "ruteeni", + "fr": "rusyn", + "hu": "ruszin", + "id": "Bahasa Rusyn", + "it": "ruteno", + "ja": "ルシン語", + "nb_NO": "rusinsk", + "pl": "Język rusiński", + "pt": "Língua rusyn", + "pt_BR": "Língua rusyn", + "sl": "Rusinščina", + "sv": "rusinska", + "ca": "rutè modern", + "en": "Rusyn", + "nl": "Roetheens", + "ru": "русинский язык", + "gl": "Lingua rutena" + }, + "searchTerms": { + "*": [ + "rue" + ] + } + }, + { + "if": "school:language=stq", + "then": { + "en": "Saterland Frisian", + "ca": "frisó oriental", + "da": "Saterfrisisk", + "de": "Saterfriesisch", + "eo": "saterfrisa lingvo", + "es": "frisón del Saterland", + "fi": "itäfriisi", + "fr": "frison saterlandais", + "gl": "Lingua frisoa oriental", + "it": "lingua frisone del Saterland", + "ja": "東フリジア語", + "nb_NO": "saterfrisisk", + "nl": "Saterfries", + "pl": "Język fryzyjski saterlandzki", + "pt": "frisão oriental", + "ru": "Затерландский фризский язык", + "sv": "saterfrisiska", + "zh_Hans": "萨特弗里斯兰语", + "zh_Hant": "薩特菲士蘭語", + "id": "Bahasa Frisia Saterland" + }, + "searchTerms": { + "*": [ + "stq" + ] + } + }, + { + "if": "school:language=ky", + "then": { + "da": "kirgisisk", + "eo": "kirgiza lingvo", + "es": "kirguís", + "fi": "kirgiisi", + "fr": "kirghize", + "gl": "kirguiz", + "hu": "kirgiz", + "id": "Bahasa Kirgiz", + "it": "kirghiso", + "ja": "キルギス語", + "nb_NO": "kirgisisk", + "nl": "Kirgizisch", + "pl": "język kirgiski", + "pt": "quirguiz", + "pt_BR": "Língua quirguiz", + "ru": "киргизский язык", + "sv": "kirgiziska", + "zh_Hans": "柯尔克孜语", + "zh_Hant": "吉爾吉斯語", + "de": "Kirgisisch", + "en": "Kyrgyz", + "ca": "kirguís" + }, + "priorityIf": "_country~((^|;)kg($|;))", + "searchTerms": { + "*": [ + "ky" + ] + } + }, + { + "if": "school:language=mt", + "then": { + "en": "Maltese", + "hu": "máltai", + "it": "maltese", + "pt": "Maltês", + "es": "maltés", + "fr": "maltais", + "ca": "maltès", + "da": "maltesisk", + "de": "Maltesisch", + "eo": "malta lingvo", + "fi": "malta", + "gl": "Lingua maltesa", + "id": "Bahasa Malta", + "ja": "マルタ語", + "nb_NO": "maltesisk", + "nl": "Maltees", + "pl": "język maltański", + "pt_BR": "língua maltesa", + "ru": "мальтийский язык", + "sl": "Malteščina", + "sv": "maltesiska" + }, + "priorityIf": "_country~((^|;)mt($|;))", + "searchTerms": { + "*": [ + "mt" + ] + } + }, + { + "if": "school:language=mk", + "then": { + "pl": "język macedoński", + "en": "Macedonian", + "es": "macedonio", + "fr": "macédonien", + "hu": "macedón", + "it": "macedone", + "de": "Mazedonisch", + "nl": "Macedonisch", + "ru": "македонский язык", + "ca": "macedònic", + "da": "makedonsk", + "eo": "makedona lingvo", + "fi": "makedonia", + "gl": "Lingua macedonia", + "id": "Bahasa Makedonia", + "ja": "マケドニア語", + "nb_NO": "makedonsk", + "pt": "língua macedônia", + "pt_BR": "Língua macedônia", + "sl": "makedonščina", + "sv": "makedonska", + "zh_Hans": "马其顿语", + "zh_Hant": "馬其頓語" + }, + "priorityIf": "_country~((^|;)mk($|;))", + "searchTerms": { + "*": [ + "mk" + ] + } + }, + { + "if": "school:language=za", + "then": { + "de": "Zhuang", + "en": "Zhuang", + "nl": "Zhuang", + "ca": "llengües zhuang", + "da": "zhuang", + "eo": "ĝuanga lingvo", + "es": "chuang", + "fi": "Zhuangin kieli", + "fr": "zhuang", + "gl": "Linguas zhuang", + "hu": "csuang", + "id": "Rumpun bahasa Zhuang", + "it": "zhuang", + "ja": "チワン語", + "nb_NO": "zhuang", + "pl": "język zhuang", + "pt": "Língua zhuang", + "ru": "чжуанский язык", + "sv": "zhuang", + "zh_Hant": "壯語" + }, + "searchTerms": { + "*": [ + "za" + ] + } + }, + { + "if": "school:language=ug", + "then": { + "ca": "uigur", + "en": "Uyghur", + "zh_Hant": "維吾爾語", + "hu": "ujgur", + "de": "Uigurisch", + "eo": "ujgura lingvo", + "es": "uigur", + "fi": "uiguuri", + "fr": "ouïghour", + "gl": "Lingua uigur", + "id": "Uighur", + "it": "uiguro", + "ja": "ウイグル語", + "nb_NO": "uigurisk", + "nl": "Oeigoers", + "pl": "język ujgurski", + "pt": "Língua uigur", + "pt_BR": "Língua uigur", + "ru": "уйгурский язык", + "sv": "uiguriska" + }, + "searchTerms": { + "*": [ + "ug" + ] + } + }, + { + "if": "school:language=ko", + "then": { + "fi": "korea", + "gl": "lingua coreana", + "hu": "koreai", + "it": "coreano", + "nb_NO": "koreansk", + "nl": "Koreaans", + "pl": "język koreański", + "pt": "coreano", + "pt_BR": "coreano", + "ru": "корейский язык", + "sl": "Korejščina", + "sv": "koreanska", + "zh_Hans": "朝鲜语", + "zh_Hant": "韓語", + "en": "Korean", + "id": "Korea", + "ja": "朝鮮語", + "ca": "coreà", + "de": "Koreanisch", + "es": "coreano", + "fr": "coréen", + "da": "koreansk", + "eo": "korea lingvo" + }, + "priorityIf": "_country~((^|;)kp($|;))|((^|;)kr($|;))", + "searchTerms": { + "*": [ + "ko" + ] + } + }, + { + "if": "school:language=si", + "then": { + "zh_Hant": "僧伽羅語", + "en": "Sinhala", + "id": "Sinhala", + "ca": "singalès", + "it": "singalese", + "de": "Singhalesisch", + "da": "singalesisk", + "eo": "sinhala lingvo", + "es": "cingalés", + "fi": "Sinhali", + "fr": "cingalais", + "gl": "Lingua cingalesa", + "hu": "szingaléz", + "ja": "シンハラ語", + "nb_NO": "singalesisk", + "nl": "Singalees", + "pl": "język syngaleski", + "pt": "Língua cingalesa", + "pt_BR": "Língua cingalesa", + "ru": "сингальский язык", + "sl": "Singalščina", + "sv": "singalesiska" + }, + "priorityIf": "_country~((^|;)lk($|;))", + "searchTerms": { + "*": [ + "si" + ] + } + }, + { + "if": "school:language=kk", + "then": { + "nb_NO": "kasakhisk", + "nl": "Kazachs", + "pl": "język kazachski", + "pt": "língua cazaque", + "pt_BR": "língua cazaque", + "ru": "казахский язык", + "sl": "kazaščina", + "sv": "kazakiska", + "zh_Hans": "哈萨克语", + "zh_Hant": "哈薩克語", + "hu": "kazah", + "ca": "kazakh", + "da": "kasakhisk", + "de": "Kasachisch", + "en": "Kazakh", + "eo": "kazaĥa lingvo", + "es": "kazajo", + "fi": "kazakki", + "fr": "kazakh", + "gl": "Lingua casaca", + "id": "Bahasa Kazak", + "it": "kazako", + "ja": "カザフ語" + }, + "priorityIf": "_country~((^|;)kz($|;))", + "searchTerms": { + "*": [ + "kk" + ] + } + }, + { + "if": "school:language=na", + "then": { + "ca": "nauruà", + "de": "Nauruisch", + "en": "Nauruan", + "eo": "naura lingvo", + "es": "nauruano", + "fi": "Naurun kieli", + "fr": "nauruan", + "gl": "Lingua nauruana", + "id": "Bahasa Nauru", + "it": "nauruano", + "ja": "ナウル語", + "nb_NO": "naurisk", + "nl": "Nauruaans", + "pl": "Język naurański", + "pt": "Língua nauruana", + "pt_BR": "Língua nauruana", + "ru": "науруанский язык", + "sv": "nauruanska", + "hu": "naurui" + }, + "priorityIf": "_country~((^|;)nr($|;))", + "searchTerms": { + "*": [ + "na" + ] + } + }, + { + "if": "school:language=nv", + "then": { + "de": "Navajo", + "en": "Navajo", + "es": "navajo", + "nl": "Navajo", + "ca": "navajo", + "da": "navajo", + "eo": "navaha lingvo", + "fi": "navajo", + "fr": "navajo", + "gl": "Lingua navajo", + "hu": "navahó", + "id": "Bahasa Navajo", + "it": "lingua navajo", + "ja": "ナバホ語", + "nb_NO": "navajo", + "pl": "język nawaho", + "pt": "Língua navaja", + "pt_BR": "Língua navaja", + "ru": "навахо", + "sv": "navajo" + }, + "searchTerms": { + "*": [ + "nv" + ] + } + }, + { + "if": "school:language=fit", + "then": { + "ca": "meänkieli", + "da": "Tornedalsfinsk", + "de": "Meänkieli", + "en": "Meänkieli", + "eo": "tornival-finna lingvo", + "es": "meänkieli", + "fi": "meänkieli", + "fr": "meänkieli", + "gl": "meänkieli", + "it": "lingua meänkieli", + "ja": "メアンキエリ", + "nb_NO": "tornedalsfinsk", + "nl": "Meänkieli", + "pl": "Meänkieli", + "pt": "Língua meänkieli", + "pt_BR": "Língua meänkieli", + "ru": "Меянкиели", + "sv": "meänkieli", + "zh_Hans": "梅安语", + "zh_Hant": "梅安語", + "hu": "meänkieli" + }, + "searchTerms": { + "*": [ + "fit" + ] + } + }, + { + "if": "school:language=xmf", + "then": { + "en": "Mingrelian", + "ca": "mingrelià", + "de": "Mingrelisch", + "eo": "Mingrela kartvela lingvo", + "es": "megreliano", + "fi": "mingreli", + "fr": "mingrélien", + "gl": "Lingua mingreliana", + "id": "Bahasa Mingrelia", + "it": "mengrelio", + "ja": "メグレル語", + "nb_NO": "Mingrelsk", + "nl": "Mingreels", + "pl": "język megrelski", + "pt": "Língua mingreliana", + "pt_BR": "Língua mingreliana", + "ru": "мегрельский язык", + "sv": "megreliska", + "hu": "mingrél" + }, + "searchTerms": { + "*": [ + "xmf" + ] + } + }, + { + "if": "school:language=aa", + "then": { + "pt": "Língua afar", + "pt_BR": "língua afar", + "ru": "афарский язык", + "sv": "afar", + "es": "idioma afar", + "fi": "afarin kieli", + "de": "Afar", + "nl": "Afar", + "en": "Afar", + "ca": "llengua àfar", + "eo": "afara lingvo", + "fr": "afar", + "gl": "Lingua afar", + "hu": "afar", + "id": "Bahasa Afar", + "it": "afar", + "ja": "アファル語", + "nb_NO": "afar", + "pl": "Język afar" + }, + "searchTerms": { + "*": [ + "aa" + ] + } + }, + { + "if": "school:language=anp", + "then": { + "de": "Angika", + "en": "Angika", + "es": "Idioma angika", + "fi": "Angika", + "fr": "angika", + "gl": "Lingua angika", + "it": "lingua angika", + "ja": "アンギカ語", + "nl": "Angika", + "pt": "Língua angika", + "ru": "Ангика", + "zh_Hans": "昂加语", + "zh_Hant": "昂加語" + }, + "searchTerms": { + "*": [ + "anp" + ] + } + }, + { + "if": "school:language=rup", + "then": { + "en": "Aromanian", + "fr": "aroumain", + "ca": "aromanès", + "da": "Aromunsk", + "de": "Aromunisch", + "eo": "arumana lingvo", + "es": "arumano", + "fi": "aromania", + "gl": "Lingua arromanesa", + "hu": "aromán", + "id": "Bahasa Arumania", + "it": "arumeno", + "ja": "アルーマニア語", + "nb_NO": "arumensk", + "nl": "Aroemeens", + "pl": "Język arumuński", + "pt": "Língua arromena", + "sv": "arumänska", + "ru": "арумынский язык" + }, + "searchTerms": { + "*": [ + "rup" + ] + } + }, + { + "if": "school:language=vec", + "then": { + "nb_NO": "venetiansk", + "nl": "Venetiaans", + "pl": "język wenecki", + "pt": "Língua vêneta", + "ru": "современный венетский язык", + "sl": "Beneščina", + "sv": "venetianska", + "hu": "velencei", + "ca": "vènet", + "de": "Venetisch", + "en": "Venetian", + "eo": "venecia lingvo", + "es": "véneto", + "fi": "venetsia", + "fr": "vénitien", + "gl": "Lingua véneta", + "id": "Bahasa Venesia", + "it": "veneto", + "ja": "ヴェネト語" + }, + "searchTerms": { + "*": [ + "vec" + ] + } + }, + { + "if": "school:language=vep", + "then": { + "en": "Veps", + "ca": "vepse", + "da": "Vepsisk", + "de": "Wepsisch", + "eo": "vepsa lingvo", + "es": "vepsio", + "fi": "vepsä", + "fr": "vepse", + "gl": "Lingua vepsa", + "id": "Bahasa Veps", + "it": "vepso", + "ja": "ヴェプス語", + "nb_NO": "vepsisk", + "nl": "Wepsisch", + "pl": "język wepski", + "pt": "Língua vepes", + "pt_BR": "Língua vepes", + "ru": "вепсский язык", + "sv": "vepsiska", + "zh_Hans": "维普斯语", + "zh_Hant": "維普斯語", + "hu": "vepsze" + }, + "searchTerms": { + "*": [ + "vep" + ] + } + }, + { + "if": "school:language=bh", + "then": { + "fi": "Bhodžpurin kieli", + "fr": "bhodjpouri", + "gl": "Lingua bhojpuri", + "id": "Bahasa Bhojpuri", + "it": "bhojpuri", + "ja": "ボージュプリー語", + "nb_NO": "Bhojpuri", + "nl": "Bhojpuri", + "pl": "język bhodźpuri", + "pt": "Língua bhojpuri", + "ru": "бходжпури", + "sv": "bhojpuri", + "zh_Hans": "博杰普尔语", + "zh_Hant": "博杰普爾語", + "ca": "bhojpuri", + "da": "Bhojpuri", + "de": "Bhojpuri", + "en": "Bhojpuri", + "eo": "bhojpura lingvo", + "es": "Idioma bopurí" + }, + "searchTerms": { + "*": [ + "bh" + ] + } + }, + { + "if": "school:language=shy", + "then": { + "ca": "shaui", + "de": "Schawiya", + "en": "Shawiya", + "es": "chaoui", + "fi": "Tašawit", + "fr": "chaoui", + "it": "tashawit", + "ja": "シャウィーア語", + "pl": "język chaouia", + "pt": "Língua chaouis", + "ru": "Шавия" + }, + "searchTerms": { + "*": [ + "shy" + ] + } + }, + { + "if": "school:language=hz", + "then": { + "en": "Herero", + "es": "herero", + "nb_NO": "herero", + "nl": "Herero", + "ru": "Гереро", + "ca": "herero", + "de": "Otjiherero", + "eo": "herera lingvo", + "fi": "Hereron kieli", + "fr": "héréro", + "gl": "Lingua herero", + "hu": "herero", + "id": "Bahasa Herero", + "it": "herero", + "ja": "ヘレロ語", + "pl": "Język herero", + "pt": "hereró", + "pt_BR": "Língua hereró", + "sv": "herero" + }, + "searchTerms": { + "*": [ + "hz" + ] + } + }, + { + "if": "school:language=mnw", + "then": { + "zh_Hans": "孟语", + "zh_Hant": "孟語", + "nb_NO": "mon", + "nl": "Mon", + "en": "Mon", + "ca": "mon", + "de": "Mon", + "eo": "Mon (lingvo)", + "es": "mon", + "fr": "môn", + "gl": "Lingua mon", + "id": "Bahasa Mon", + "it": "lingua mon", + "ja": "モン語", + "pl": "Język mon", + "pt": "Língua mon", + "ru": "монский язык" + }, + "searchTerms": { + "*": [ + "mnw" + ] + } + }, + { + "if": "school:language=mzn", + "then": { + "en": "Mazanderani", + "nb_NO": "Mazandarani", + "ca": "mazanderani", + "da": "Mazenisk", + "de": "Masanderanisch", + "eo": "mazandarana lingvo", + "es": "mazandaraní", + "fi": "Mazandaranin kieli", + "fr": "mazandarani", + "gl": "Lingua mazanderani", + "id": "Bahasa Mazandaran", + "it": "mazanderani", + "ja": "マーザンダラーン語", + "nl": "Mazanderani", + "pl": "język mazanderański", + "pt": "Língua mazandarani", + "pt_BR": "Língua mazandarani", + "ru": "мазандеранский язык", + "sv": "mazenderani", + "hu": "mázandaráni" + }, + "searchTerms": { + "*": [ + "mzn" + ] + } + }, + { + "if": "school:language=oc", + "then": { + "en": "Occitan", + "hu": "okcitán", + "ca": "occità", + "da": "occitansk", + "de": "Okzitanisch", + "eo": "okcitana lingvo", + "es": "occitano", + "fi": "oksitaani", + "fr": "occitan", + "gl": "lingua occitana", + "id": "Oksitan", + "it": "occitano", + "ja": "オック語", + "nb_NO": "oksitansk", + "nl": "Occitaans", + "pl": "język oksytański", + "pt": "língua occitana", + "pt_BR": "Língua occitana", + "ru": "окситанский язык", + "sl": "Okcitanščina", + "sv": "occitanska" + }, + "searchTerms": { + "*": [ + "oc" + ] + } + }, + { + "if": "school:language=id", + "then": { + "en": "Indonesian", + "es": "indonesio", + "fr": "indonésien", + "hu": "indonéz", + "id": "Indonesia", + "it": "indonesiano", + "ca": "indonesi", + "da": "indonesisk", + "de": "Indonesisch", + "eo": "indonezia lingvo", + "fi": "indonesia", + "gl": "lingua indonesia", + "ja": "インドネシア語", + "nb_NO": "indonesisk", + "nl": "Indonesisch", + "pl": "język indonezyjski", + "pt": "língua indonésia", + "pt_BR": "língua indonésia", + "ru": "индонезийский язык", + "sl": "indonezijščina", + "sv": "indonesiska", + "zh_Hans": "印度尼西亚语", + "zh_Hant": "印尼語" + }, + "priorityIf": "_country~((^|;)id($|;))", + "searchTerms": { + "*": [ + "id" + ] + } + }, + { + "if": "school:language=ve", + "then": { + "hu": "venda", + "id": "Bahasa Venda", + "it": "venda", + "ja": "ヴェンダ語", + "nb_NO": "venda", + "nl": "Venda", + "pl": "Język venda", + "pt": "língua venda", + "pt_BR": "língua venda", + "ru": "венда", + "sv": "venda", + "zh_Hans": "文达语", + "en": "Venda", + "ca": "venda", + "de": "Tshivenda", + "eo": "venda lingvo", + "es": "venda", + "fi": "Vendan kieli", + "fr": "venda", + "gl": "Lingua venda" + }, + "priorityIf": "_country~((^|;)za($|;))|((^|;)zw($|;))", + "searchTerms": { + "*": [ + "ve" + ] + } + }, + { + "if": "school:language=min", + "then": { + "ca": "minangkabau", + "de": "Minangkabauisch", + "en": "Minangkabau", + "eo": "minankabaŭa lingvo", + "es": "minangkabau", + "fi": "Minangkabaun kieli", + "fr": "minangkabau", + "gl": "Lingua minangkabau", + "id": "Minangkabau", + "it": "minangkabau", + "ja": "ミナンカバウ語", + "nb_NO": "Minangkabau", + "nl": "Minangkabaus", + "pl": "Język minangkabau", + "pt": "Língua minangkabau", + "pt_BR": "Língua minangkabau", + "ru": "минангкабау", + "sv": "minangkabau", + "zh_Hans": "米南佳保语", + "zh_Hant": "米南佳保語" + }, + "searchTerms": { + "*": [ + "min" + ] + } + }, + { + "if": "school:language=mwl", + "then": { + "es": "mirandés", + "ca": "mirandès", + "de": "Mirandés", + "en": "Mirandese", + "eo": "miranda lingvo", + "fi": "Mirandeesi", + "fr": "mirandais", + "gl": "lingua mirandesa", + "hu": "mirandai", + "id": "Bahasa Miranda", + "it": "mirandese", + "ja": "ミランダ語", + "nb_NO": "mirandesisk", + "nl": "Mirandees", + "pl": "język mirandyjski", + "pt": "mirandês", + "pt_BR": "mirandês", + "ru": "мирандский язык", + "sv": "mirandesiska" + }, + "searchTerms": { + "*": [ + "mwl" + ] + } + }, + { + "if": "school:language=pdc", + "then": { + "hu": "pennsylvaniai német", + "de": "Pennsylvania Dutch", + "ca": "alemany pennsilvanià", + "en": "Pennsylvania German", + "eo": "pensilvangermana dialekto", + "es": "alemán de Pensilvania", + "fi": "Pennsylvaniansaksa", + "fr": "allemand de Pennsylvanie", + "gl": "Alemán de Pensilvania", + "id": "Bahasa Jerman Pennsylvania", + "it": "tedesco della Pennsylvania", + "ja": "ペンシルベニアドイツ語", + "nb_NO": "pennsylvaniatysk", + "nl": "Pennsylvania-Duits", + "pl": "język niemiecki w Pensylwanii", + "pt": "Alemão da Pensilvânia", + "ru": "пенсильванско-немецкий диалект", + "sl": "Pensilvanska nemščina", + "sv": "Pennsylvaniatyska" + }, + "searchTerms": { + "*": [ + "pdc" + ] + } + }, + { + "if": "school:language=pfl", + "then": { + "de": "Pfälzisch", + "ca": "Pfälzisch", + "en": "Palatinate German", + "eo": "Palatinata germana dialektaro", + "es": "alemán palatino", + "fi": "pfaltsi", + "fr": "palatin", + "gl": "Alemán do Palatinado", + "it": "tedesco palatino", + "ja": "プファルツ語", + "nl": "Paltsisch", + "pl": "Gwary palatynackie", + "ru": "Пфальцский диалект", + "sv": "pfalziska", + "hu": "pfalzi" + }, + "searchTerms": { + "*": [ + "pfl" + ] + } + }, + { + "if": "school:language=nn", + "then": { + "ru": "нюнорск", + "sv": "nynorska", + "ca": "nynorsk", + "da": "nynorsk", + "de": "Nynorsk", + "en": "Nynorsk", + "eo": "Nynorsk", + "es": "nynorsk", + "fi": "uusnorja", + "fr": "nynorsk", + "gl": "nynorsk", + "hu": "nynorsk", + "id": "Nynorsk", + "it": "nynorsk", + "ja": "ニーノシュク", + "nb_NO": "nynorsk", + "nl": "Nynorsk", + "pl": "norweski (nynorsk)", + "pt": "novo norueguês", + "pt_BR": "novo norueguês", + "zh_Hant": "新挪威語" + }, + "priorityIf": "_country~((^|;)no($|;))", + "searchTerms": { + "*": [ + "nn" + ] + } + }, + { + "if": "school:language=nb", + "then": { + "ru": "букмол", + "sl": "Bokmål", + "sv": "bokmål", + "ca": "bokmål", + "da": "bokmål", + "de": "Bokmål", + "en": "Bokmål", + "eo": "Bokmål", + "es": "bokmål", + "fi": "kirjanorja", + "fr": "bokmål", + "gl": "bokmål", + "hu": "norvég (bokmål)", + "id": "Bokmål", + "it": "bokmål", + "ja": "ブークモール", + "nb_NO": "bokmål", + "nl": "Bokmål", + "pl": "norweski (bokmål)", + "pt": "bokmål", + "pt_BR": "Bokmål" + }, + "priorityIf": "_country~((^|;)no($|;))", + "searchTerms": { + "*": [ + "nb" + ] + } + }, + { + "if": "school:language=kw", + "then": { + "en": "Cornish", + "ca": "còrnic", + "da": "Kornisk", + "de": "Kornisch", + "eo": "kornvala lingvo", + "es": "córnico", + "fi": "Korni", + "fr": "cornique", + "gl": "Lingua córnica", + "hu": "korni", + "id": "Bahasa Kernowek", + "it": "cornico", + "ja": "コーンウォール語", + "nb_NO": "kornisk", + "nl": "Cornisch", + "pl": "język kornijski", + "pt": "córnico", + "ru": "корнский язык", + "sl": "Kornijščina", + "sv": "korniska", + "zh_Hans": "康沃尔语", + "zh_Hant": "康瓦爾語" + }, + "searchTerms": { + "*": [ + "kw" + ] + } + }, + { + "if": "school:language=sco", + "then": { + "ru": "шотландский язык", + "de": "Scots", + "en": "Scots", + "pt": "Scots", + "pt_BR": "Scots", + "sl": "Scots", + "es": "escocés", + "nl": "Schots", + "gl": "Lingua escocesa", + "ca": "escocès", + "eo": "skota lingvo", + "fi": "Skotin kieli", + "fr": "scots", + "hu": "scots", + "id": "Bahasa Scots", + "it": "lingua scots", + "ja": "スコットランド語", + "nb_NO": "skotsk", + "pl": "język scots", + "sv": "lågskotska", + "zh_Hans": "低地苏格兰语", + "zh_Hant": "低地蘇格蘭語", + "da": "skotsk" + }, + "searchTerms": { + "*": [ + "sco" + ] + } + }, + { + "if": "school:language=mdf", + "then": { + "hu": "moksa", + "id": "Bahasa Moksha", + "it": "mokša", + "ja": "モクシャ語", + "nb_NO": "moksja", + "nl": "Moksja", + "pl": "Język moksza", + "pt": "Língua moksha", + "pt_BR": "Língua moksha", + "ru": "мокшанский язык", + "sv": "moksja", + "en": "Moksha", + "ca": "mokxa", + "de": "Mokschanisch", + "eo": "mokŝa lingvo", + "es": "moksha", + "fi": "mokša", + "fr": "moksa", + "gl": "Lingua moksha" + }, + "searchTerms": { + "*": [ + "mdf" + ] + } + }, + { + "if": "school:language=sd", + "then": { + "ru": "синдхи", + "ca": "sindhi", + "da": "sindhi", + "en": "Sindhi", + "eo": "sinda lingvo", + "es": "sindhi", + "fi": "sindhi", + "fr": "sindhi", + "gl": "Lingua sindhi", + "hu": "szindhi", + "id": "Bahasa Sindhi", + "it": "sindhi", + "ja": "シンド語", + "nb_NO": "sindhi", + "nl": "Sindhi", + "pl": "sindhi", + "pt": "língua sindi", + "pt_BR": "Língua sindi", + "sv": "sindhi", + "de": "Sindhi" + }, + "searchTerms": { + "*": [ + "sd" + ] + } + }, + { + "if": "school:language=tt", + "then": { + "en": "Tatar", + "ca": "tàtar", + "da": "tatarisk", + "de": "Tatarisch", + "eo": "tatara lingvo", + "es": "tártaro", + "fi": "tataari", + "fr": "tatar", + "gl": "Lingua tártara", + "hu": "tatár", + "id": "Bahasa Tatar", + "it": "tataro", + "ja": "タタール語", + "nb_NO": "tatarisk", + "nl": "Tataars", + "pl": "język tatarski", + "pt": "Língua tártara", + "pt_BR": "Língua tártara", + "ru": "татарский язык", + "sl": "Tatarščina", + "sv": "tatariska" + }, + "searchTerms": { + "*": [ + "tt" + ] + } + }, + { + "if": "school:language=szl", + "then": { + "da": "Schlesisk", + "de": "Schlesisch", + "fr": "silésien", + "en": "Silesian", + "nl": "Silezisch", + "ca": "silesià", + "eo": "silezia-pola lingvo", + "es": "silesio", + "fi": "sleesia", + "gl": "Lingua silesiana", + "id": "bahasa Silesia", + "it": "slesiano", + "ja": "シレジア語", + "nb_NO": "schlesisk", + "pl": "etnolekt śląski", + "pt": "silesiano", + "ru": "силезский язык", + "sl": "Šlezijščina", + "sv": "schlesiska", + "hu": "sziléziai" + }, + "searchTerms": { + "*": [ + "szl" + ] + } + }, + { + "if": "school:language=kaa", + "then": { + "zh_Hant": "卡拉卡爾帕克語", + "en": "Karakalpak", + "ca": "karakalpak", + "de": "Karakalpakisch", + "eo": "karakalpaka lingvo", + "es": "Idioma karakalpako", + "fi": "karapalkki", + "fr": "karakalpak", + "gl": "Lingua karakalpak", + "hu": "karakalpak", + "id": "Bahasa Karakalpak", + "it": "karakalpako", + "ja": "カラカルパク語", + "nl": "Karakalpaks", + "pl": "Język karakałpacki", + "pt": "Língua caracalpaque", + "ru": "каракалпакский язык", + "sv": "karakalpakiska" + }, + "searchTerms": { + "*": [ + "kaa" + ] + } + }, + { + "if": "school:language=jv", + "then": { + "id": "Jawa", + "en": "Javanese", + "fr": "javanais", + "ca": "javanès", + "da": "Javanesisk", + "de": "Javanisch", + "eo": "java lingvo", + "es": "javanés", + "fi": "Jaavan kieli", + "gl": "Lingua xavanesa", + "hu": "jávai", + "it": "giavanese", + "ja": "ジャワ語", + "nb_NO": "javanesisk", + "nl": "Javaans", + "pl": "język jawajski", + "pt": "Língua javanesa", + "pt_BR": "Língua javanesa", + "ru": "яванский язык", + "sv": "javanesiska", + "zh_Hans": "爪哇语", + "zh_Hant": "爪哇語" + }, + "priorityIf": "_country~((^|;)id($|;))", + "searchTerms": { + "*": [ + "jv" + ] + } + }, + { + "if": "school:language=tl", + "then": { + "nb_NO": "tagalog", + "nl": "Tagalog", + "pl": "język tagalski", + "pt": "língua tagalo", + "pt_BR": "Língua tagalo", + "ru": "тагальский язык", + "sv": "tagalog", + "zh_Hant": "他加祿語", + "da": "tagalisk", + "de": "Tagalog", + "en": "Tagalog", + "it": "tagalog", + "ca": "tagal", + "eo": "tagaloga lingvo", + "es": "tagalo", + "fi": "tagalog", + "fr": "tagalog", + "gl": "Lingua tagala", + "hu": "tagalog", + "id": "Bahasa Tagalog", + "ja": "タガログ語" + }, + "searchTerms": { + "*": [ + "tl" + ] + } + }, + { + "if": "school:language=to", + "then": { + "ca": "tongalès", + "de": "Tongaisch", + "en": "Tongan", + "es": "tongano", + "fi": "Tongan kieli", + "fr": "tongien", + "gl": "Lingua tongana", + "hu": "tongai", + "id": "Bahasa Tonga", + "it": "tongano", + "ja": "トンガ語", + "nb_NO": "Tongansk", + "nl": "Tongaans", + "pl": "Język tonga", + "pt": "Língua tonganesa", + "ru": "тонганский язык", + "sv": "tonganska", + "eo": "Tonga lingvo" + }, + "priorityIf": "_country~((^|;)to($|;))", + "searchTerms": { + "*": [ + "to" + ] + } + }, + { + "if": "school:language=myv", + "then": { + "ca": "erzya", + "de": "Ersjanisch", + "en": "Erzya", + "eo": "erzja lingvo", + "es": "erzya", + "fi": "ersä", + "fr": "erzya", + "gl": "Lingua erzya", + "hu": "erza", + "id": "Bahasa Erzya", + "it": "erza", + "ja": "エルジャ語", + "nb_NO": "erzia", + "nl": "Erzja", + "pl": "język erzja", + "pt": "Língua erzya", + "pt_BR": "Língua erzya", + "ru": "эрзянский язык", + "sl": "Erzjanščina", + "sv": "erzya" + }, + "searchTerms": { + "*": [ + "myv" + ] + } + }, + { + "if": "school:language=lez", + "then": { + "ca": "lesguià", + "de": "Lesgisch", + "en": "Lezgian", + "eo": "lezga lingvo", + "es": "Idioma lezgui", + "fi": "lezgi", + "fr": "lezghien", + "gl": "Lingua lezguia", + "hu": "lezg", + "id": "Bahasa Lezgia", + "it": "lesgo", + "ja": "レズギ語", + "nb_NO": "lezgisk", + "nl": "Lezgisch", + "pl": "język lezgiński", + "pt": "Língua lezgui", + "pt_BR": "Língua lezgui", + "ru": "лезгинский язык", + "sl": "Lezginščina", + "sv": "lezginska", + "zh_Hans": "列兹金语", + "zh_Hant": "列茲金語" + }, + "searchTerms": { + "*": [ + "lez" + ] + } + }, + { + "if": "school:language=cho", + "then": { + "de": "Choctaw", + "en": "Choctaw", + "nl": "Choctaw", + "ca": "choctaw", + "eo": "Ĉakta lingvo", + "es": "idioma choctaw", + "fi": "Choctawin kieli", + "fr": "choctaw", + "gl": "Lingua choctaw", + "hu": "csaktó", + "id": "Bahasa Choctaw", + "it": "lingua choctaw", + "ja": "チョクトー語", + "nb_NO": "choctaw", + "pl": "Język czoktaw", + "pt": "Língua choctaw", + "ru": "Чоктавский язык", + "sv": "choctaw", + "zh_Hans": "乔克托语" + }, + "searchTerms": { + "*": [ + "cho" + ] + } + }, + { + "if": "school:language=kl", + "then": { + "de": "Grönländisch", + "en": "Greenlandic", + "ca": "grenlandès", + "da": "grønlandsk", + "eo": "gronlanda lingvo", + "es": "groenlandés", + "fi": "grönlannin kieli", + "fr": "groenlandais", + "gl": "Lingua grenlandesa", + "hu": "grönlandi", + "id": "Bahasa Kalaallisut", + "it": "groenlandese", + "ja": "グリーンランド語", + "nb_NO": "grønlandsk", + "nl": "Groenlands", + "pl": "język grenlandzki", + "pt": "gronelandês", + "ru": "гренландский язык", + "sl": "Grenlandščina", + "sv": "grönländska", + "zh_Hans": "格陵兰语", + "zh_Hant": "格陵蘭語" + }, + "searchTerms": { + "*": [ + "kl" + ] + } + }, + { + "if": "school:language=pms", + "then": { + "en": "Piedmontese", + "ca": "piemontès", + "de": "Piemontesisch", + "eo": "piemonta lingvo", + "es": "piamontés", + "fi": "Piemonten kieli", + "fr": "piémontais", + "gl": "Lingua piemontesa", + "id": "Bahasa Piemonte", + "it": "lingua piemontese", + "ja": "ピエモンテ語", + "nb_NO": "piemontesisk", + "nl": "Piëmontees", + "pl": "język piemoncki", + "pt": "Língua piemontesa", + "pt_BR": "Língua piemontesa", + "ru": "пьемонтский язык", + "sv": "piemontesiska", + "zh_Hans": "皮埃蒙特语", + "zh_Hant": "皮埃蒙特語", + "hu": "piemonti" + }, + "searchTerms": { + "*": [ + "pms" + ] + } + }, + { + "if": "school:language=crh", + "then": { + "gl": "Lingua tártara de Crimea", + "hu": "krími tatár", + "id": "Bahasa Tatar Krimea", + "it": "tataro di Crimea", + "ja": "クリミア・タタール語", + "nb_NO": "krimtatarisk", + "nl": "Krim-Tataars", + "pl": "język krymskotatarski", + "pt": "tártaro da Crimeia", + "pt_BR": "Língua tártara da Crimeia", + "ru": "крымскотатарский язык", + "sl": "Krimska tatarščina", + "sv": "krimtatariska", + "zh_Hans": "克里米亚鞑靼语", + "zh_Hant": "克里米亞韃靼語", + "ca": "tàtar de Crimea", + "da": "Krimtatarisk", + "de": "Krimtatarisch", + "en": "Crimean Tatar", + "eo": "krime-tatara lingvo", + "es": "tártaro de Crimea", + "fi": "krimintataari", + "fr": "tatar de Crimée" + }, + "searchTerms": { + "*": [ + "crh" + ] + } + }, + { + "if": "school:language=smn", + "then": { + "en": "Inari Sami", + "ca": "sami d'Inari", + "de": "Inarisamisch", + "eo": "anar-samea lingvo", + "es": "sami inari", + "fi": "inarinsaame", + "fr": "same d'Inari", + "gl": "Lingua saami de Inari", + "hu": "inari számi", + "it": "sami di Inari", + "ja": "イナリ・サーミ語", + "nb_NO": "enaresamisk", + "nl": "Inari-Samisch", + "pl": "Język inari", + "pt": "lapônico de Inari", + "ru": "инари-саамский язык", + "sv": "enaresamiska", + "zh_Hans": "伊纳里萨米语", + "zh_Hant": "伊納里薩米語" + }, + "searchTerms": { + "*": [ + "smn" + ] + } + }, + { + "if": "school:language=ksh", + "then": { + "it": "lingua ripuaria", + "ja": "リプアーリ語", + "nl": "Ripuarisch", + "pl": "gwary rypuaryjskie", + "pt": "Língua ripuária", + "ru": "рипуарские диалекты", + "de": "Ripuarisch", + "ca": "ripuarisch", + "en": "Ripuarian", + "eo": "ripuara dialektaro", + "es": "fráncico ripuario", + "fr": "francique ripuaire", + "gl": "Fráncico ripuario" + }, + "searchTerms": { + "*": [ + "ksh" + ] + } + }, + { + "if": "school:language=ny", + "then": { + "en": "Chewa", + "nl": "Nyanja", + "ca": "nyanja", + "da": "nyanja", + "de": "Chichewa", + "eo": "njanĝa lingvo", + "es": "chichewa", + "fi": "njandžan kieli", + "fr": "chewa", + "gl": "lingua chichewa", + "hu": "cseva", + "id": "Bahasa Chichewa", + "it": "chewa", + "ja": "チェワ語", + "nb_NO": "chewa", + "pl": "język cziczewa", + "pt": "língua nianja", + "ru": "ньянджа", + "sv": "chichewa" + }, + "priorityIf": "_country~((^|;)mw($|;))|((^|;)zw($|;))", + "searchTerms": { + "*": [ + "ny" + ] + } + }, + { + "if": "school:language=mn", + "then": { + "zh_Hant": "蒙古語", + "en": "Mongolian", + "ca": "mongol", + "da": "Mongolsk", + "de": "Mongolisch", + "eo": "mongola lingvo", + "es": "mongol", + "fi": "mongoli", + "fr": "mongol", + "gl": "Lingua mongol", + "hu": "mongol", + "id": "Bahasa Mongol", + "it": "mongolo", + "ja": "モンゴル語", + "nb_NO": "mongolsk", + "nl": "Mongools", + "pl": "język mongolski", + "pt": "Língua mongol", + "pt_BR": "Língua mongol", + "ru": "монгольский язык", + "sv": "mongoliska" + }, + "priorityIf": "_country~((^|;)mn($|;))", + "searchTerms": { + "*": [ + "mn" + ] + } + }, + { + "if": "school:language=ks", + "then": { + "pl": "język kaszmirski", + "pt": "língua caxemira", + "pt_BR": "Língua caxemira", + "ru": "кашмирский язык", + "sl": "Kašmirščina", + "sv": "kashmiri", + "zh_Hans": "克什米尔语", + "zh_Hant": "喀什米爾語", + "en": "Kashmiri", + "de": "Kashmiri", + "ca": "caixmiri", + "da": "Kashmirisk", + "eo": "kaŝmira lingvo", + "es": "cachemir", + "fi": "Kašmirin kieli", + "fr": "cachemiri", + "gl": "Lingua caxemiresa", + "hu": "kasmíri", + "id": "Bahasa Kashmiri", + "it": "kashmiri", + "ja": "カシミール語", + "nb_NO": "kasjmiri", + "nl": "Kasjmiri" + }, + "searchTerms": { + "*": [ + "ks" + ] + } + }, + { + "if": "school:language=ig", + "then": { + "ca": "igbo", + "da": "Igbo", + "de": "Igbo", + "en": "Igbo", + "eo": "igba lingvo", + "es": "idioma igbo", + "fi": "igbon kieli", + "fr": "igbo", + "gl": "Lingua ibo", + "hu": "igbo", + "id": "Bahasa Igbo", + "it": "igbo", + "ja": "イボ語", + "nb_NO": "ibo", + "nl": "Igbo", + "pl": "język igbo", + "pt": "Língua igbo", + "ru": "игбо", + "sv": "igbo", + "zh_Hant": "伊博語" + }, + "searchTerms": { + "*": [ + "ig" + ] + } + }, + { + "if": "school:language=rw", + "then": { + "da": "Kinyarwanda", + "de": "Kinyarwanda", + "en": "Kinyarwanda", + "nl": "Kinyarwanda", + "ca": "kinyarwanda", + "eo": "ruanda lingvo", + "es": "kiñaruanda", + "fi": "ruandan kieli", + "fr": "kinyarwanda", + "gl": "Lingua ruanda", + "hu": "kinyarvanda", + "id": "Bahasa Kinyarwanda", + "it": "kinyarwanda", + "ja": "ルワンダ語", + "nb_NO": "kinyarwanda", + "pl": "język ruanda", + "pt": "Língua kinyarwanda", + "ru": "руанда", + "sv": "rwanda", + "zh_Hant": "盧安達語" + }, + "priorityIf": "_country~((^|;)rw($|;))", + "searchTerms": { + "*": [ + "rw" + ] + } + }, + { + "if": "school:language=nds", + "then": { + "es": "bajo alemán", + "de": "Niederdeutsch", + "en": "Low German", + "nl": "Nederduits", + "ca": "baix alemany", + "da": "plattysk", + "eo": "platgermana lingvo", + "fi": "alasaksa", + "fr": "bas allemand", + "gl": "Lingua baixo alemá", + "hu": "alnémet", + "id": "Bahasa Sachsen Hilir", + "it": "lingue basso-tedesche", + "ja": "低地ドイツ語", + "nb_NO": "nedertysk", + "pl": "język dolnoniemiecki", + "pt": "Baixo-alemão", + "ru": "нижненемецкий язык", + "sl": "Nizka nemščina", + "sv": "lågtyska", + "zh_Hant": "低地德語" + }, + "searchTerms": { + "*": [ + "nds" + ] + } + }, + { + "if": "school:language=ng", + "then": { + "en": "Ndonga", + "fi": "Ndonga", + "nl": "Ndonga", + "pt": "Ndonga", + "eo": "ndonga lingvo", + "es": "ndonga", + "fr": "ndonga", + "gl": "Lingua ndonga", + "hu": "ndonga", + "it": "ndonga", + "ja": "ンドンガ語", + "pl": "Język ndonga", + "sv": "ndonga", + "ru": "Ндонга", + "de": "Ndonga" + }, + "searchTerms": { + "*": [ + "ng" + ] + } + }, + { + "if": "school:language=skr", + "then": { + "de": "Saraiki", + "en": "Saraiki", + "fi": "Saraiki", + "nb_NO": "Saraiki", + "ca": "seraiki", + "es": "saraiki", + "fr": "saraiki", + "gl": "Lingua saraiki", + "id": "Bahasa Saraiki", + "it": "lingua saraiki", + "ja": "サライキ語", + "pl": "Język saraiki", + "pt": "Língua seraiki", + "ru": "Сирайки", + "sv": "saraiki" + }, + "searchTerms": { + "*": [ + "skr" + ] + } + }, + { + "if": "school:language=se", + "then": { + "ca": "sami septentrional", + "da": "nordsamisk", + "de": "Nordsamisch", + "en": "Northern Sami", + "eo": "nord-samea lingvo", + "es": "sami septentrional", + "fi": "pohjoissaame", + "fr": "same du Nord", + "gl": "Lingua saami setentrional", + "hu": "északi számi", + "it": "sami settentrionale", + "ja": "北部サーミ語", + "nb_NO": "nordsamisk", + "nl": "Noord-Samisch", + "pl": "język północnosaamski", + "pt": "língua sami setentrional", + "pt_BR": "Língua lapônica setentrional", + "ru": "северносаамский язык", + "sv": "nordsamiska", + "zh_Hans": "北萨米语", + "zh_Hant": "北薩米語" + }, + "searchTerms": { + "*": [ + "se" + ] + } + }, + { + "if": "school:language=ik", + "then": { + "ca": "inupiaq", + "de": "Inupiaq", + "en": "Inupiaq", + "eo": "inupiaka lingvo", + "es": "Idioma iñupiaq", + "fi": "Inupiatun", + "gl": "Lingua inupiaq", + "hu": "inupiak", + "id": "Bahasa Inupiaq", + "it": "inupiaq", + "ja": "イヌピアック語", + "nb_NO": "Inupiak", + "nl": "Inupiak", + "pl": "Język inupiak", + "pt": "Língua inupiat", + "ru": "аляскинско-инуитские языки", + "sv": "iñupiaq", + "fr": "inupiaq" + }, + "searchTerms": { + "*": [ + "ik" + ] + } + }, + { + "if": "school:language=kjh", + "then": { + "ca": "khakàs", + "de": "Chakassisch", + "en": "Khakas", + "eo": "Ĥakasa lingvo", + "es": "Idioma jakasio", + "fi": "Hakassin kieli", + "fr": "khakasse", + "id": "Bahasa Khakas", + "it": "chakassa", + "ja": "ハカス語", + "nb_NO": "khakasisk", + "nl": "Chakas", + "pl": "Język chakaski", + "pt": "Língua khakas", + "ru": "хакасский язык", + "sv": "khakasiska", + "zh_Hans": "哈卡斯语", + "zh_Hant": "哈卡斯语", + "gl": "Lingua khakas" + }, + "searchTerms": { + "*": [ + "kjh" + ] + } + }, + { + "if": "school:language=ne", + "then": { + "hu": "nepáli", + "id": "Bahasa Nepali", + "it": "nepalese", + "ja": "ネパール語", + "nb_NO": "nepali", + "nl": "Nepalees", + "pl": "język nepalski", + "pt": "língua nepali", + "ru": "непальский язык", + "sl": "nepalščina", + "sv": "nepali", + "zh_Hant": "尼泊爾語", + "en": "Nepali", + "ca": "nepalès", + "da": "nepalesisk", + "de": "Nepali", + "eo": "nepala lingvo", + "es": "nepalí", + "fi": "nepalin kieli", + "fr": "népalais", + "gl": "Lingua nepalesa" + }, + "priorityIf": "_country~((^|;)np($|;))", + "searchTerms": { + "*": [ + "ne" + ] + } + }, + { + "if": "school:language=nap", + "then": { + "en": "Neapolitan", + "ca": "napolità", + "fr": "napolitain", + "es": "napolitano", + "da": "Napolitansk", + "de": "Neapolitanisch", + "eo": "napola lingvo", + "fi": "napoli", + "gl": "Lingua napolitana", + "hu": "nápolyi", + "id": "Bahasa Napolitan", + "it": "lingua napoletana", + "ja": "ナポリ語", + "nb_NO": "napolitansk", + "nl": "Napolitaans", + "pl": "język neapolitański", + "pt": "napolitano", + "ru": "неаполитанский язык", + "sv": "neapolitanska", + "zh_Hans": "那不勒斯语", + "zh_Hant": "那不勒斯語" + }, + "searchTerms": { + "*": [ + "nap" + ] + } + }, + { + "if": "school:language=lg", + "then": { + "en": "Luganda", + "nl": "Luganda", + "de": "Luganda", + "ca": "ganda", + "da": "Luganda", + "eo": "ganda lingvo", + "es": "luganda", + "fi": "Gandan kieli", + "fr": "luganda", + "gl": "Lingua luganda", + "hu": "ganda", + "id": "Bahasa Luganda", + "it": "luganda", + "ja": "ルガンダ語", + "nb_NO": "Luganda", + "pl": "Język luganda", + "pt": "Língua luganda", + "ru": "Луганда", + "sv": "luganda", + "zh_Hant": "烏干達語" + }, + "searchTerms": { + "*": [ + "lg" + ] + } + }, + { + "if": "school:language=ht", + "then": { + "ca": "crioll haitià", + "de": "Haitianisch", + "en": "Haitian Creole", + "eo": "haitia kreola lingvo", + "es": "criollo haitiano", + "fi": "haiti", + "fr": "créole haïtien", + "gl": "Crioulo haitiano", + "hu": "haiti kreol", + "id": "Bahasa Kreol Haiti", + "it": "creolo haitiano", + "ja": "ハイチ語", + "nb_NO": "haitisk", + "nl": "Haïtiaans Creools", + "pl": "język kreolski haitański", + "pt": "crioulo haitiano", + "pt_BR": "Língua crioula haitiana", + "ru": "гаитянский креольский язык", + "sv": "haitisk kreol", + "zh_Hans": "海地克里奥尔语", + "zh_Hant": "海地克里奧爾語", + "da": "haitisk" + }, + "priorityIf": "_country~((^|;)ht($|;))", + "searchTerms": { + "*": [ + "ht" + ] + } + }, + { + "if": "school:language=os", + "then": { + "nb_NO": "ossetisk", + "nl": "Ossetisch", + "pl": "język osetyjski", + "pt": "Língua osseta", + "ru": "осетинский язык", + "sl": "Osetinščina", + "sv": "ossetiska", + "zh_Hans": "奥塞梯语", + "zh_Hant": "奧塞提亞語", + "en": "Ossetian", + "fr": "ossète", + "ca": "osseta", + "da": "Ossetisk", + "de": "Ossetisch", + "eo": "oseta lingvo", + "es": "osetio", + "fi": "osseetti", + "gl": "Lingua oseta", + "hu": "oszét", + "id": "Bahasa Ossetia", + "it": "osseto", + "ja": "オセット語" + }, + "searchTerms": { + "*": [ + "os" + ] + } + }, + { + "if": "school:language=new", + "then": { + "en": "Newar", + "ca": "newar de Katmandú", + "de": "Newari", + "eo": "nevara lingvo", + "es": "Newari", + "fi": "Newari", + "fr": "newari", + "gl": "Lingua newari", + "hu": "névári", + "id": "Bahasa Nepal", + "it": "nepal bhasa", + "ja": "ネパール・バサ語", + "nb_NO": "Nepal bhasa", + "nl": "Newaars", + "pl": "Język newarski", + "pt": "Língua bhasa", + "ru": "неварский язык", + "sv": "newari" + }, + "searchTerms": { + "*": [ + "new" + ] + } + }, + { + "if": "school:language=su", + "then": { + "id": "Sunda", + "pt": "Sunda", + "ca": "sunda", + "da": "Sunda", + "en": "Sundanese", + "eo": "sunda lingvo", + "es": "sundanés", + "fi": "sunda", + "fr": "soundanais", + "gl": "Sunda", + "hu": "szundai", + "it": "sunda", + "ja": "スンダ語", + "nl": "Soendanees", + "pl": "język sundajski", + "pt_BR": "Sunda", + "ru": "сунданский язык", + "sl": "Sunda", + "sv": "sunda", + "nb_NO": "sundanesisk", + "de": "Sundanesisch" + }, + "searchTerms": { + "*": [ + "su" + ] + } + }, + { + "if": "school:language=iu", + "then": { + "de": "Inuktitut", + "en": "Inuktitut", + "ca": "inuktitut", + "da": "Inuktitut", + "eo": "inuktituta lingvo", + "es": "lenguas inuit", + "fi": "Inuktitut", + "fr": "inuktitut", + "gl": "Lingua inuktitut", + "hu": "inuktitut", + "id": "Bahasa Inuktitut", + "it": "inuktitut", + "ja": "イヌクティトゥット語", + "nb_NO": "inuktitut", + "nl": "Inuktitut", + "pl": "inuktitut", + "pt": "Língua inuktitut", + "pt_BR": "Língua inuktitut", + "ru": "инуктитут", + "sv": "inuktitut", + "zh_Hans": "伊努克提图特语", + "zh_Hant": "伊努克提圖特語" + }, + "searchTerms": { + "*": [ + "iu" + ] + } + }, + { + "if": "school:language=ki", + "then": { + "es": "kikuyu", + "en": "Gikuyu", + "nl": "Gikuyu", + "de": "Kikuyu", + "ru": "Кикуйю", + "ca": "gikuyu", + "eo": "kikuja lingvo", + "fi": "Kikujun kieli", + "fr": "kikuyu", + "gl": "Lingua kikuyu", + "hu": "kikuju", + "id": "Bahasa Kikuyu", + "it": "gikuyu", + "ja": "キクユ語", + "nb_NO": "kikuyu", + "pl": "język kikuju", + "pt": "Língua kikuyu", + "pt_BR": "Língua kikuyu", + "sv": "kikuyu", + "zh_Hans": "基库尤语", + "zh_Hant": "基庫尤語" + }, + "searchTerms": { + "*": [ + "ki" + ] + } + }, + { + "if": "school:language=kn", + "then": { + "ca": "kannada", + "da": "kannada", + "de": "Kannada", + "en": "Kannada", + "eo": "kanara lingvo", + "es": "canarés", + "fi": "kannada", + "fr": "kannada", + "gl": "Lingua kanaresa", + "hu": "kannada", + "id": "Bahasa Kannada", + "it": "kannada", + "ja": "カンナダ語", + "nb_NO": "kannada", + "nl": "Kannada", + "pl": "język kannada", + "pt": "Língua canaresa", + "ru": "каннада", + "sv": "kannada", + "zh_Hans": "卡纳达语", + "zh_Hant": "康納達語" + }, + "searchTerms": { + "*": [ + "kn" + ] + } + }, + { + "if": "school:language=inh", + "then": { + "ca": "ingúix", + "en": "Ingush", + "da": "Ingusjisk", + "de": "Inguschisch", + "eo": "inguŝa lingvo", + "es": "ingusetio", + "fi": "Inguušin kieli", + "fr": "ingouche", + "gl": "Lingua ingusetia", + "id": "Bahasa Ingush", + "it": "lingua inguscia", + "ja": "イングーシ語", + "nb_NO": "ingusjisk", + "nl": "Ingoesjetisch", + "pl": "Język inguski", + "pt": "Língua inguche", + "ru": "ингушский язык", + "sv": "ingusjiska", + "hu": "ingus" + }, + "searchTerms": { + "*": [ + "inh" + ] + } + }, + { + "if": "school:language=pcd", + "then": { + "en": "Picard", + "ca": "picard", + "da": "Pikardisk", + "de": "Picardisch", + "eo": "pikarda franca dialekto", + "es": "picardo", + "fi": "Picardin kieli", + "fr": "picard", + "gl": "Lingua picarda", + "hu": "pikárd", + "id": "Bahasa Picard", + "it": "piccardo", + "ja": "ピカルディ語", + "nb_NO": "pikardisk", + "nl": "Picardisch", + "pl": "język pikardyjski", + "pt": "picardo", + "ru": "пикардский язык", + "sv": "pikardiska" + }, + "searchTerms": { + "*": [ + "pcd" + ] + } + }, + { + "if": "school:language=sc", + "then": { + "pt": "Língua sarda", + "ru": "сардинский язык", + "sl": "Sardinščina", + "sv": "sardiska", + "zh_Hans": "撒丁语", + "zh_Hant": "薩丁尼亞語", + "en": "Sardinian", + "ca": "sard", + "da": "Sardisk", + "de": "Sardisch", + "eo": "sarda lingvo", + "es": "sardo", + "fi": "sardi", + "fr": "sarde", + "gl": "Lingua sarda", + "hu": "szárd", + "id": "Bahasa Sardinia", + "it": "sardo", + "ja": "サルデーニャ語", + "nb_NO": "sardisk", + "nl": "Sardijns", + "pl": "Język sardyński" + }, + "searchTerms": { + "*": [ + "sc" + ] + } + }, + { + "if": "school:language=srn", + "then": { + "pt": "Sranan", + "ca": "sranan tongo", + "da": "Sranan tongo", + "de": "Sranantongo", + "en": "Sranan Tongo", + "eo": "srana lingvo", + "es": "sranan tongo", + "fi": "Sranantongo", + "fr": "sranan", + "gl": "Sranan tongo", + "hu": "sranan", + "id": "Bahasa Sranantongo", + "it": "sranan tongo", + "ja": "スラナン語", + "nb_NO": "sranan", + "nl": "Sranantongo", + "pl": "sranan tongo", + "ru": "cранан-тонго", + "sl": "Surinamščina", + "sv": "sranan", + "zh_Hans": "苏里南语", + "zh_Hant": "蘇利南語" + }, + "searchTerms": { + "*": [ + "srn" + ] + } + }, + { + "if": "school:language=rn", + "then": { + "ca": "rundi", + "de": "Kirundi", + "en": "Kirundi", + "eo": "burunda lingvo", + "es": "kirundi", + "fi": "Kirundi", + "fr": "kirundi", + "gl": "Lingua kirundi", + "hu": "kirundi", + "id": "Bahasa Kirundi", + "it": "kirundi", + "ja": "ルンディ語", + "nb_NO": "kirundi", + "nl": "Kirundi", + "pl": "język rundi", + "pt": "Língua kirundi", + "ru": "рунди", + "sv": "kirundi" + }, + "priorityIf": "_country~((^|;)bi($|;))", + "searchTerms": { + "*": [ + "rn" + ] + } + }, + { + "if": "school:language=ho", + "then": { + "da": "Hiri motu", + "de": "Hiri Motu", + "en": "Hiri Motu", + "eo": "hirimotua lingvo", + "es": "Hiri motu", + "fi": "Hiri motu", + "fr": "hiri motu", + "gl": "Hiri Motu", + "hu": "hiri motu", + "id": "Bahasa Hiri Motu", + "it": "hiri motu", + "ja": "ヒリモツ語", + "nb_NO": "hiri motu", + "nl": "Hiri Motu", + "pl": "Hiri motu", + "pt": "Língua hiri motu", + "ru": "хири-моту", + "sv": "hiri motu", + "ca": "Hiri Motu" + }, + "priorityIf": "_country~((^|;)pg($|;))", + "searchTerms": { + "*": [ + "ho" + ] + } + }, + { + "if": "school:language=sg", + "then": { + "de": "Sango", + "en": "Sango", + "nl": "Sango", + "ca": "sango", + "da": "Sango", + "eo": "sangoa lingvo", + "es": "idioma sango", + "fi": "Sango", + "fr": "sango", + "gl": "Lingua sango", + "hu": "szango", + "id": "Bahasa Sango", + "it": "sango", + "ja": "サンゴ語", + "nb_NO": "sango", + "pl": "Język sango", + "pt": "Língua sango", + "pt_BR": "Língua sango", + "ru": "санго", + "sv": "sango", + "zh_Hans": "桑戈语", + "zh_Hant": "桑戈語" + }, + "priorityIf": "_country~((^|;)cf($|;))", + "searchTerms": { + "*": [ + "sg" + ] + } + }, + { + "if": "school:language=pap", + "then": { + "en": "Papiamento", + "fr": "papiamento", + "ca": "papiament", + "de": "Papiamentu", + "eo": "Papiamento", + "es": "papiamento", + "fi": "Papiamentu", + "gl": "Papiamento", + "hu": "papiamentu", + "id": "Bahasa Papiamento", + "it": "lingua papiamento", + "ja": "パピアメント語", + "nb_NO": "papiamento", + "nl": "Papiaments", + "pl": "Język papiamento", + "pt": "papiamento", + "ru": "папьяменто", + "sv": "papiamento", + "zh_Hans": "帕皮阿门托语", + "zh_Hant": "帕皮阿門托語", + "da": "papiamento" + }, + "searchTerms": { + "*": [ + "pap" + ] + } + }, + { + "if": "school:language=kbd", + "then": { + "ca": "kabardí", + "de": "Kabardinisch", + "en": "Kabardian", + "eo": "kabarda lingvo", + "es": "Idioma cabardiano", + "fi": "Kabardin kieli", + "fr": "kabarde", + "gl": "Lingua kabardina", + "hu": "kabard", + "it": "cabardo", + "ja": "カバルド語", + "nb_NO": "kabardisk", + "nl": "Kabardijns", + "pl": "Język kabardyjski", + "pt": "Língua cabardiana", + "ru": "кабардино-черкесский язык", + "sv": "kabardinska" + }, + "searchTerms": { + "*": [ + "kbd" + ] + } + }, + { + "if": "school:language=or", + "then": { + "hu": "orija", + "it": "oriya", + "ja": "オリヤー語", + "nb_NO": "oriya", + "pl": "język orija", + "pt": "língua oriá", + "ru": "ория", + "sv": "oriya", + "zh_Hant": "奧里亞語", + "en": "Odia", + "nl": "Odia", + "id": "Oriya", + "ca": "oriya", + "da": "oriya", + "de": "Oriya", + "eo": "odia lingvo", + "es": "oriya", + "fi": "orija", + "fr": "oriya", + "gl": "Lingua oriya" + }, + "searchTerms": { + "*": [ + "or" + ] + } + }, + { + "if": "school:language=arn", + "then": { + "en": "Mapudungun", + "ca": "mapudungun", + "da": "Mapudungun", + "de": "Mapudungun", + "eo": "mapuĉa lingvo", + "es": "mapuche", + "fr": "mapudungun", + "gl": "Lingua mapuche", + "it": "mapudungun", + "ja": "マプチェ語", + "nb_NO": "Mapudungun", + "nl": "Mapudungun", + "pl": "Język mapudungun", + "pt": "mapudungun", + "ru": "мапуче", + "sl": "Mapudungun", + "sv": "mapudungun", + "id": "Bahasa Mapuche", + "fi": "mapudungun" + }, + "searchTerms": { + "*": [ + "arn" + ] + } + }, + { + "if": "school:language=om", + "then": { + "de": "Oromo", + "en": "Oromo", + "nl": "Oromo", + "fr": "oromo", + "ca": "oromo", + "da": "Oromo", + "eo": "oroma lingvo", + "es": "oromo", + "fi": "oromon kieli", + "gl": "Lingua oromo", + "hu": "oromó", + "id": "Bahasa Oromo", + "it": "lingua oromonica", + "ja": "オロモ語", + "nb_NO": "oromo", + "pl": "Język oromo", + "pt": "Língua oromo", + "ru": "оромо", + "sv": "oromo" + }, + "searchTerms": { + "*": [ + "om" + ] + } + }, + { + "if": "school:language=sat", + "then": { + "ru": "Сантали", + "ca": "santali", + "da": "Santali", + "de": "Santali", + "en": "Santali", + "eo": "santala lingvo", + "es": "idioma santalí", + "fi": "Santalin kieli", + "fr": "santâlî", + "gl": "lingua santali", + "id": "Bahasa Santali", + "it": "santali", + "ja": "サンタル語", + "nb_NO": "Santali", + "nl": "Santali", + "pl": "język santali", + "pt": "língua santali", + "sv": "santhali", + "zh_Hant": "桑塔利語" + }, + "searchTerms": { + "*": [ + "sat" + ] + } + }, + { + "if": "school:language=ii", + "then": { + "nl": "Yi", + "ru": "Носу", + "ca": "yi", + "de": "Nuosu-Sprache", + "en": "Nuosu", + "eo": "Siĉuana jia lingvo", + "es": "Idioma nuosu", + "fi": "Sichuanin-yi", + "fr": "nuosu", + "gl": "Lingua nuosu", + "hu": "szecsuani ji", + "it": "lingua Nuosu", + "ja": "四川彝語", + "pl": "język nuosu", + "pt": "Língua Nuosu" + }, + "searchTerms": { + "*": [ + "ii" + ] + } + }, + { + "if": "school:language=kbp", + "then": { + "de": "Kabiyé", + "en": "Kabiye", + "ca": "kabiye", + "da": "Kabiye", + "eo": "Kabijea", + "es": "kabiyé", + "fr": "kabiyé", + "gl": "Lingua kabiye", + "id": "Bahasa Kabiye", + "ja": "カビエ語", + "nl": "Kabiye", + "pl": "Kabiyé", + "pt": "Língua kabiyé", + "ru": "Кабийе" + }, + "searchTerms": { + "*": [ + "kbp" + ] + } + }, + { + "if": "school:language=kab", + "then": { + "ca": "cabil", + "da": "Kabylsk", + "de": "Kabylisch", + "en": "Kabyle", + "eo": "kabila lingvo", + "es": "cabilio", + "fi": "Kabyyli", + "fr": "kabyle", + "gl": "Lingua cabilia", + "hu": "kabil", + "it": "cabilo", + "ja": "カビル語", + "nb_NO": "Kabylsk", + "nl": "Kabylisch", + "pl": "Język kabylski", + "pt": "Língua cabila", + "pt_BR": "Língua cabila", + "ru": "кабильский язык", + "sv": "kabyliska", + "zh_Hant": "卡拜爾語" + }, + "searchTerms": { + "*": [ + "kab" + ] + } + }, + { + "if": "school:language=kg", + "then": { + "nb_NO": "Kongo", + "nl": "Kongo", + "en": "Kongo", + "de": "Kikongo", + "pt": "Kikongo", + "ca": "llengües kongo", + "da": "Kikongo", + "eo": "konga lingvo", + "es": "kikongo", + "fi": "Kongon kieli", + "fr": "kikongo", + "gl": "Lingua congo", + "hu": "kikongo", + "id": "Bahasa Kongo", + "it": "kongo", + "ja": "コンゴ語", + "pl": "Język kongo", + "ru": "конго", + "sv": "kikongo" + }, + "searchTerms": { + "*": [ + "kg" + ] + } + }, + { + "if": "school:language=krc", + "then": { + "ca": "karatxai-balkar", + "de": "Karatschai-Balkarisch", + "en": "Karachay-Balkar", + "eo": "karaĉaja-balkara lingvo", + "es": "idioma karachayo-bálkaro", + "fi": "Karatšai-balkaarin kieli", + "fr": "karatchaï-balkar", + "gl": "Lingua carachaio-bálcara", + "hu": "karacsáj-balkár", + "id": "Bahasa Karachai-Balkar", + "it": "caraciai-balcaro", + "ja": "カラチャイ・バルカル語", + "nb_NO": "karatsjajbalkarsk", + "nl": "Karatsjai-Balkarisch", + "pl": "Język karaczajsko-bałkarski", + "pt": "Língua carachaio-bálcara", + "ru": "карачаево-балкарский язык", + "sv": "karatjajbalkariska" + }, + "searchTerms": { + "*": [ + "krc" + ] + } + }, + { + "if": "school:language=tum", + "then": { + "sv": "tumbuka", + "ca": "tumbuka", + "de": "Tumbuka", + "en": "Tumbuka", + "eo": "tumbuka lingvo", + "es": "Idioma tumbuka", + "fi": "Tumbuka", + "fr": "tumbuka", + "gl": "Lingua tumbuka", + "hu": "tumbuka", + "it": "tumbuka", + "ja": "トゥンブカ語", + "nl": "Tumbuka", + "pl": "Język tumbuka", + "pt": "Língua tumbuka", + "ru": "Тумбука" + }, + "searchTerms": { + "*": [ + "tum" + ] + } + }, + { + "if": "school:language=tsg", + "then": { + "en": "Tausug", + "fi": "Tausug", + "fr": "tausug", + "id": "Bahasa Suluk", + "ja": "タウスグ語", + "nb_NO": "Tausug (språk)", + "pl": "język tausug", + "pt": "Língua tausug", + "es": "idioma joloano" + }, + "searchTerms": { + "*": [ + "tsg" + ] + } + }, + { + "if": "school:language=shi", + "then": { + "ca": "chelja", + "de": "Taschelhit", + "en": "Shilha", + "eo": "ŝelha lingvo", + "es": "chilha", + "fi": "Tašelhit", + "gl": "Lingua shilha", + "it": "tashelhit", + "ja": "シルハ語", + "nl": "Chleuh", + "pl": "Język tashelhiyt", + "pt": "Tachelhit", + "ru": "Шильхские языки", + "sv": "tachelhit", + "zh_Hans": "施卢赫语", + "zh_Hant": "施盧赫語", + "fr": "chleuh" + }, + "searchTerms": { + "*": [ + "shi" + ] + } + }, + { + "if": "school:language=sn", + "then": { + "ca": "xona", + "en": "Shona", + "de": "Shona", + "nl": "Shona", + "eo": "Ŝona lingvo", + "es": "shona", + "fi": "Šonan kieli", + "fr": "shona", + "gl": "Lingua shona", + "hu": "sona", + "id": "Bahasa Shona", + "it": "shona", + "ja": "ショナ語", + "nb_NO": "shona", + "pl": "Język shona", + "pt": "Língua chona", + "ru": "шона", + "sv": "shona", + "zh_Hant": "修納語" + }, + "priorityIf": "_country~((^|;)zw($|;))", + "searchTerms": { + "*": [ + "sn" + ] + } + }, + { + "if": "school:language=tpi", + "then": { + "ca": "tok pisin", + "da": "Tok pisin", + "de": "Tok Pisin", + "en": "Tok Pisin", + "eo": "Tok-Pisino", + "es": "tok pisin", + "fi": "tok-pisin", + "fr": "tok pisin", + "gl": "Tok pisin", + "hu": "tok piszin", + "id": "Bahasa Tok Pisin", + "it": "tok pisin", + "ja": "トク・ピシン", + "nb_NO": "tok pisin", + "nl": "Tok Pisin", + "pl": "tok pisin", + "pt": "Tok Pisin", + "ru": "ток-писин", + "sv": "tok pisin" + }, + "searchTerms": { + "*": [ + "tpi" + ] + } + }, + { + "if": "school:language=rif", + "then": { + "ca": "rifeny", + "de": "Tarifit", + "en": "Tarifit", + "es": "rifeño", + "fi": "Tarifit", + "fr": "rifain", + "gl": "Lingua rifeña", + "it": "tarifit", + "ja": "リーフ語", + "nl": "Riffijns", + "pl": "Język tarifit", + "pt": "Língua rifenha", + "ru": "Рифский язык", + "zh_Hans": "里夫语", + "zh_Hant": "里夫語" + }, + "searchTerms": { + "*": [ + "rif" + ] + } + }, + { + "if": "school:language=tyv", + "then": { + "ca": "tuvinià", + "de": "Tuwinisch", + "en": "Tuvan", + "eo": "tuva lingvo", + "es": "idioma tuvano", + "fi": "Tuvan kieli", + "fr": "touvain", + "gl": "Lingua tuvaniana", + "hu": "tuvai", + "id": "Bahasa Tuva", + "it": "tuvano", + "ja": "トゥヴァ語", + "nb_NO": "tuvinsk", + "nl": "Toevaans", + "pl": "Język tuwiński", + "pt": "Língua tuviniana", + "pt_BR": "Língua tuviniana", + "ru": "тувинский язык", + "sv": "tuvinska" + }, + "searchTerms": { + "*": [ + "tyv" + ] + } + }, + { + "if": "school:language=ti", + "then": { + "sl": "Tigrajščina", + "sv": "tigrinska", + "de": "Tigrinya", + "en": "Tigrinya", + "nl": "Tigrinya", + "ca": "tigrinya", + "da": "Tigrinsk", + "eo": "tigraja lingvo", + "es": "idioma tigriña", + "fi": "tigrinja", + "fr": "tigrigna", + "gl": "Lingua tigriña", + "hu": "tigrinya", + "id": "Bahasa Tigrinya", + "it": "tigrino", + "ja": "ティグリニャ語", + "nb_NO": "tigrinja", + "pl": "Język tigrinia", + "pt": "Língua tigrínia", + "ru": "тигринья" + }, + "priorityIf": "_country~((^|;)er($|;))", + "searchTerms": { + "*": [ + "ti" + ] + } + }, + { + "if": "school:language=tet", + "then": { + "en": "Tetum", + "nl": "Tetun", + "de": "Tetum", + "ca": "tetum", + "da": "Tetum", + "eo": "tetuna lingvo", + "es": "Idioma tetun", + "fi": "Tetumin kieli", + "fr": "tétoum", + "gl": "Tetún", + "hu": "tetum", + "id": "Tetum", + "it": "tetum", + "ja": "テトゥン語", + "nb_NO": "tetum", + "pl": "język tetum", + "pt": "língua tétum", + "ru": "тетум", + "sv": "tetum" + }, + "searchTerms": { + "*": [ + "tet" + ] + } + }, + { + "if": "school:language=scn", + "then": { + "en": "Sicilian", + "fr": "sicilien", + "de": "Sizilianisch", + "nl": "Siciliaans", + "ca": "sicilià", + "eo": "sicilia lingvo", + "es": "siciliano", + "fi": "sisilia", + "gl": "Lingua siciliana", + "hu": "szicíliai", + "id": "Bahasa Sisilia", + "it": "siciliano", + "ja": "シチリア語", + "nb_NO": "siciliansk", + "pl": "Język sycylijski", + "pt": "Língua siciliana", + "pt_BR": "Língua siciliana", + "ru": "сицилийский язык", + "sv": "sicilianska", + "da": "siciliansk" + }, + "searchTerms": { + "*": [ + "scn" + ] + } + }, + { + "if": "school:language=lmo", + "then": { + "en": "Lombard", + "ca": "llombard", + "es": "lombardo", + "fr": "lombard", + "pl": "Język lombardzki", + "da": "Lombardisk", + "de": "Lombardisch", + "eo": "lombarda lingvo", + "fi": "Lombardin kieli", + "gl": "Lingua lombarda", + "id": "Bahasa Lombard", + "it": "lingua lombarda", + "ja": "ロンバルド語", + "nb_NO": "lombardisk", + "nl": "Lombardisch", + "pt": "Língua lombarda", + "ru": "ломбардский язык", + "sv": "lombardiska", + "hu": "lombard" + }, + "searchTerms": { + "*": [ + "lmo" + ] + } + }, + { + "if": "school:language=ilo", + "then": { + "en": "Ilocano", + "pt": "Ilocano", + "ca": "ilocano", + "de": "Ilokano", + "eo": "iloka lingvo", + "fi": "Iloko", + "fr": "ilocano", + "gl": "Lingua ilocana", + "hu": "ilokano", + "id": "Bahasa Iloko", + "it": "ilocano", + "ja": "イロカノ語", + "nb_NO": "ilokano", + "nl": "Ilokano", + "pl": "język iloko", + "ru": "Илоканский язык", + "sv": "ilokano", + "es": "ilocano", + "da": "ilokansk" + }, + "searchTerms": { + "*": [ + "ilo" + ] + } + }, + { + "if": "school:language=sm", + "then": { + "en": "Samoan", + "hu": "szamoai", + "it": "samoano", + "ca": "samoà", + "de": "Samoanisch", + "eo": "samoa lingvo", + "es": "samoano", + "fi": "samoan kieli", + "fr": "samoan", + "gl": "Lingua samoana", + "id": "Bahasa Samoa", + "ja": "サモア語", + "nb_NO": "samoansk", + "nl": "Samoaans", + "pl": "język samoański", + "pt": "Língua samoana", + "ru": "самоанский язык", + "sv": "samoanska" + }, + "priorityIf": "_country~((^|;)ws($|;))", + "searchTerms": { + "*": [ + "sm" + ] + } + }, + { + "if": "school:language=ss", + "then": { + "ca": "swazi", + "de": "Siswati", + "en": "Swazi", + "eo": "svazia lingvo", + "es": "suazi", + "fi": "Swazin kieli", + "fr": "swati", + "gl": "Lingua suazi", + "hu": "szvázi", + "id": "Bahasa Swati", + "it": "swati", + "ja": "スワジ語", + "nb_NO": "swazi", + "nl": "Swazi", + "pl": "Język suazi", + "pt": "língua suázi", + "pt_BR": "língua suázi", + "ru": "свати", + "sv": "siswati", + "zh_Hans": "斯威士语", + "zh_Hant": "史瓦濟語" + }, + "priorityIf": "_country~((^|;)sz($|;))|((^|;)za($|;))", + "searchTerms": { + "*": [ + "ss" + ] + } + }, + { + "if": "school:language=mni", + "then": { + "de": "Meitei", + "en": "Meitei", + "nl": "Meitei", + "ca": "manipuri", + "eo": "manipura lingvo", + "es": "meitei", + "fi": "Manipurin kieli", + "fr": "meitei", + "id": "Bahasa Manipuri", + "it": "manipuri", + "ja": "マニプリ語", + "nb_NO": "Meitei-lon", + "pl": "Język manipuri", + "pt": "Língua manipuri", + "ru": "манипури", + "sv": "meitei", + "zh_Hans": "曼尼普尔语", + "zh_Hant": "曼尼普爾語", + "gl": "Lingua meitei" + }, + "searchTerms": { + "*": [ + "mni" + ] + } + }, + { + "if": "school:language=kv", + "then": { + "de": "Komi", + "en": "Komi", + "ca": "komi", + "da": "komi", + "eo": "komia lingvo", + "es": "komi", + "fi": "komin kieli", + "fr": "komi", + "gl": "lingua komi", + "hu": "komi", + "id": "Bahasa Komi", + "it": "comi", + "ja": "コミ語", + "nb_NO": "syrjensk", + "nl": "Zurjeens", + "pl": "język komi", + "pt": "língua komi", + "ru": "коми язык", + "sv": "komi" + }, + "searchTerms": { + "*": [ + "kv" + ] + } + }, + { + "if": "school:language=ku", + "then": { + "ca": "kurd", + "da": "kurdisk", + "de": "Kurdisch", + "en": "Kurdish", + "eo": "kurda lingvo", + "es": "kurdo", + "fi": "kurdi", + "fr": "kurde", + "hu": "kurd", + "id": "Bahasa Kurdi", + "it": "curdo", + "ja": "クルド語", + "nl": "Koerdisch", + "pl": "język kurdyjski", + "pt": "língua curda", + "pt_BR": "língua curda", + "ru": "курдские языки", + "sl": "Kurdski jeziki", + "sv": "kurdiska", + "zh_Hant": "庫德語", + "gl": "lingua kurda", + "nb_NO": "kurdisk", + "zh_Hans": "库尔德语" + }, + "priorityIf": "_country~((^|;)iq($|;))", + "searchTerms": { + "*": [ + "ku" + ] + } + }, + { + "if": "school:language=lad", + "then": { + "ca": "judeocastellà", + "da": "Ladino", + "en": "Judaeo-Spanish", + "eo": "judhispana lingvo", + "es": "judeoespañol", + "fi": "Ladinon kieli", + "fr": "judéo-espagnol", + "gl": "Lingua xudeu-española", + "hu": "ladino", + "id": "Bahasa Ladino", + "it": "giudeo-spagnolo", + "ja": "ラディーノ語", + "nb_NO": "jødespansk", + "nl": "Ladino", + "pl": "ladino", + "pt": "judeu-espanhol", + "pt_BR": "Judeu-espanhol", + "ru": "сефардский язык", + "sv": "ladino", + "de": "Sephardisch" + }, + "searchTerms": { + "*": [ + "lad" + ] + } + }, + { + "if": "school:language=ts", + "then": { + "zh_Hans": "聪加语", + "zh_Hant": "聰加語", + "en": "Tsonga", + "ca": "tsonga", + "nl": "Tsonga", + "da": "tsonga", + "de": "Xitsonga", + "eo": "conga lingvo", + "es": "tsonga", + "fi": "Tsongan kieli", + "fr": "tsonga", + "gl": "Lingua tsonga", + "hu": "conga", + "id": "Bahasa Tsonga", + "it": "tsonga", + "ja": "ツォンガ語", + "nb_NO": "tsonga", + "pl": "Język tsonga", + "pt": "língua tsonga", + "pt_BR": "língua tsonga", + "ru": "тсонга", + "sv": "tsonga" + }, + "priorityIf": "_country~((^|;)za($|;))|((^|;)zw($|;))", + "searchTerms": { + "*": [ + "ts" + ] + } + }, + { + "if": "school:language=st", + "then": { + "fr": "sotho du Sud", + "ca": "sesotho", + "da": "Sesotho", + "de": "Sesotho", + "en": "Sesotho", + "eo": "sota lingvo", + "es": "sesotho", + "fi": "Eteläsothon kieli", + "gl": "Lingua sotho", + "hu": "déli szoto", + "id": "Bahasa Sesotho", + "it": "sotho del sud", + "ja": "ソト語", + "nb_NO": "sotho", + "nl": "Zuid-Sotho", + "pl": "język sotho", + "pt": "língua soto do sul", + "pt_BR": "língua soto", + "ru": "сесото", + "sv": "sesotho" + }, + "priorityIf": "_country~((^|;)ls($|;))|((^|;)za($|;))|((^|;)zw($|;))", + "searchTerms": { + "*": [ + "st" + ] + } + }, + { + "if": "school:language=lij", + "then": { + "hu": "ligur", + "id": "Bahasa Liguria", + "it": "lingua ligure", + "ja": "リグリア語", + "nb_NO": "ligurisk", + "pl": "język liguryjski", + "pt": "Língua lígure", + "ru": "лигурский язык", + "sl": "Ligurščina", + "sv": "liguriska", + "ca": "lígur", + "de": "Ligurisch", + "en": "Ligurian", + "nl": "Ligurisch", + "fr": "ligure", + "da": "ligurisk", + "eo": "ligura lingvo", + "es": "ligur", + "fi": "liguuri", + "gl": "Lingua lígur" + }, + "searchTerms": { + "*": [ + "lij" + ] + } + }, + { + "if": "school:language=mai", + "then": { + "ca": "maithili", + "da": "Maithili", + "de": "Maithili", + "en": "Maithili", + "eo": "maitila lingvo", + "es": "Maithili", + "fi": "Maithilin kieli", + "fr": "maïthili", + "gl": "Lingua maithili", + "hu": "Maithili", + "id": "Bahasa Maithili", + "it": "maithili", + "ja": "マイティリー語", + "nb_NO": "Maithili", + "nl": "Maithili", + "pl": "język maithili", + "pt": "Língua maithili", + "pt_BR": "Língua maithili", + "ru": "майтхили", + "sv": "maithili", + "zh_Hans": "迈蒂利语" + }, + "searchTerms": { + "*": [ + "mai" + ] + } + }, + { + "if": "school:language=tvl", + "then": { + "ca": "tuvalià", + "de": "Tuvaluisch", + "en": "Tuvaluan", + "eo": "tuvala lingvo", + "es": "tuvaluano", + "fi": "tuvalun kieli", + "fr": "tuvaluan", + "gl": "Lingua tuvalesa", + "hu": "tuvalui", + "id": "Bahasa Tuvalu", + "it": "lingua tuvaluana", + "ja": "ツバル語", + "nb_NO": "tuvalsk", + "nl": "Tuvaluaans", + "pl": "Język tuvalu", + "pt": "Língua tuvaluana", + "pt_BR": "Língua tuvaluana", + "ru": "тувалу", + "sv": "tuvaluanska" + }, + "searchTerms": { + "*": [ + "tvl" + ] + } + }, + { + "if": "school:language=tn", + "then": { + "es": "setsuana", + "fi": "Tswanan kieli", + "fr": "tswana", + "gl": "Lingua tswana", + "hu": "csvana", + "id": "Bahasa Tswana", + "it": "tswana", + "ja": "ツワナ語", + "nb_NO": "setswana", + "pl": "Język tswana", + "pt": "língua tswana", + "pt_BR": "língua tswana", + "ru": "тсвана", + "sv": "setswana", + "zh_Hant": "札那語", + "en": "Tswana", + "nl": "Tswana", + "ca": "tswana", + "da": "Setswana", + "de": "Setswana", + "eo": "cvana lingvo" + }, + "priorityIf": "_country~((^|;)za($|;))|((^|;)zw($|;))", + "searchTerms": { + "*": [ + "tn" + ] + } + }, + { + "if": "school:language=wa", + "then": { + "en": "Walloon", + "ca": "való", + "da": "vallonsk", + "de": "Wallonisch", + "eo": "valona lingvo", + "es": "valón", + "fi": "Valloni", + "fr": "wallon", + "gl": "Lingua valoa", + "hu": "vallon", + "id": "Bahasa Walloon", + "it": "vallone", + "ja": "ワロン語", + "nb_NO": "vallonsk", + "nl": "Waals", + "pl": "język waloński", + "pt": "valão", + "ru": "валлонский язык", + "sv": "vallonska" + }, + "searchTerms": { + "*": [ + "wa" + ] + } + }, + { + "if": "school:language=nan", + "then": { + "de": "Min Nan", + "eo": "minnana lingvo", + "es": "chino min nan", + "gl": "lingua min nam", + "id": "Min Selatan", + "it": "min nan", + "ja": "閩南語", + "nb_NO": "minnan", + "nl": "Minnanyu", + "pl": "język minnański", + "pt": "Min Nan", + "pt_BR": "Min nan", + "ru": "южноминьский язык", + "sv": "minnan", + "ca": "min nan", + "en": "Southern Min", + "fr": "minnan", + "zh_Hant": "閩南語", + "da": "Minnan", + "fi": "Minnan" + }, + "searchTerms": { + "*": [ + "nan" + ] + } + }, + { + "if": "school:language=pih", + "then": { + "ca": "pitcairnès", + "da": "Pitkairnsk", + "de": "Pitcairn-Englisch", + "en": "Pitkern", + "eo": "pitkarna lingvo", + "es": "pitcairnés", + "fi": "Pitcairnin kieli", + "fr": "pitcairnais", + "gl": "Pitcairnés", + "it": "pitcairnese", + "ja": "ピトケアン語", + "nb_NO": "pitkairnsk", + "nl": "Pitcairnees", + "pl": "Język pitkarnyjski", + "pt": "pitcairnes", + "pt_BR": "Língua pitcairnesa", + "ru": "питкэрнский язык", + "sv": "pitcairnesiska", + "hu": "pitcairni" + }, + "searchTerms": { + "*": [ + "pih" + ] + } + }, + { + "if": "school:language=lld", + "then": { + "es": "ladino", + "it": "ladino", + "en": "Ladin", + "da": "Ladin", + "de": "Ladinisch", + "fr": "ladin", + "ca": "ladí", + "eo": "ladina lingvo", + "fi": "Ladinin kieli", + "gl": "Lingua ladina", + "id": "Bahasa Ladin", + "ja": "ラディン語", + "nb_NO": "ladinsk", + "nl": "Ladinisch", + "pl": "Język ladyński", + "pt": "língua ladino-dolomítica", + "ru": "ладинский язык", + "sv": "ladinska", + "zh_Hans": "拉迪恩语", + "zh_Hant": "拉迪恩語", + "hu": "ladin" + }, + "searchTerms": { + "*": [ + "lld" + ] + } + }, + { + "if": "school:language=ty", + "then": { + "ca": "tahitià", + "de": "Tahitianisch", + "en": "Tahitian", + "eo": "tahitia lingvo", + "es": "tahitiano", + "fi": "Tahitin kieli", + "fr": "tahitien", + "gl": "Lingua tahitiana", + "hu": "tahiti", + "id": "Bahasa Tahiti", + "it": "tahitiano", + "ja": "タヒチ語", + "nb_NO": "tahitisk", + "nl": "Tahitiaans", + "pl": "język tahitański", + "pt": "taitiano", + "ru": "таитянский язык", + "sv": "tahitiska", + "zh_Hans": "塔希提语", + "zh_Hant": "大溪地語" + }, + "searchTerms": { + "*": [ + "ty" + ] + } + }, + { + "if": "school:language=wo", + "then": { + "ca": "wòlof", + "da": "Wolof", + "de": "Wolof", + "en": "Wolof", + "eo": "volofa lingvo", + "es": "wólof", + "fi": "wolofin kieli", + "fr": "wolof", + "gl": "lingua wolof", + "hu": "volof", + "id": "Bahasa Wolof", + "it": "wolof", + "ja": "ウォロフ語", + "nb_NO": "wolof", + "nl": "Wolof", + "pl": "język wolof", + "pt": "Língua wolof", + "ru": "волоф", + "sv": "wolof" + }, + "priorityIf": "_country~((^|;)sn($|;))", + "searchTerms": { + "*": [ + "wo" + ] + } + }, + { + "if": "school:language=war", + "then": { + "en": "Waray", + "fr": "waray-waray", + "ca": "waray-waray", + "de": "Wáray-Wáray", + "eo": "varaja lingvo", + "fi": "waray-waray", + "gl": "Lingua waray-waray", + "hu": "waray", + "id": "Bahasa Waray-waray", + "it": "waray-waray", + "ja": "ワライ語", + "nb_NO": "waray-waray", + "nl": "Waray-Waray", + "pl": "język warajski", + "pt": "língua waray-waray", + "pt_BR": "Língua waray-waray", + "ru": "варайский язык", + "sv": "waray-waray", + "es": "samareño", + "da": "varajansk" + }, + "searchTerms": { + "*": [ + "war" + ] + } + }, + { + "if": "school:language=lbe", + "then": { + "nb_NO": "lakisk", + "pl": "Język lakijski", + "pt": "Língua lak", + "ru": "лакский язык", + "nl": "Lak", + "en": "Lak", + "fi": "Lakin kieli", + "ca": "lak", + "de": "Lakisch", + "eo": "laka lingvo", + "es": "idioma lak", + "fr": "lak", + "gl": "Lingua lak", + "id": "Bahasa Lak", + "it": "lak", + "ja": "ラク語" + }, + "searchTerms": { + "*": [ + "lbe" + ] + } + }, + { + "if": "school:language=ltg", + "then": { + "en": "Latgalian", + "ca": "latgalià", + "da": "Letgallisk", + "de": "Lettgallisch", + "eo": "latgala lingvo", + "es": "Idioma latgaliano", + "fr": "latgalien", + "gl": "Lingua latgaliá", + "id": "Bahasa Latgalia", + "it": "letgallo", + "ja": "ラトガリア語", + "nl": "Letgaals", + "pl": "język łatgalski", + "pt": "Língua latgália", + "ru": "латгальский язык", + "sv": "lettgalliska", + "fi": "latgallin kieli", + "hu": "latgal" + }, + "searchTerms": { + "*": [ + "ltg" + ] + } + }, + { + "if": "school:language=mad", + "then": { + "de": "Madura", + "id": "Madura", + "ca": "madurès", + "en": "Madurese", + "es": "madurés", + "fi": "Maduran kieli", + "fr": "madurais", + "gl": "Lingua maduresa", + "it": "madurese", + "ja": "マドゥラ語", + "nl": "Madoerees", + "pl": "język madurski", + "pt": "Língua maduresa", + "ru": "Мадурский язык", + "sv": "maduresiska", + "eo": "madura lingvo" + }, + "searchTerms": { + "*": [ + "mad" + ] + } + }, + { + "if": "school:language=mh", + "then": { + "en": "Marshallese", + "ca": "marshallès", + "de": "Marshallesisch", + "eo": "marŝala lingvo", + "es": "marshalés", + "fi": "Marshallin kieli", + "fr": "marshallais", + "gl": "Lingua marshalesa", + "hu": "Marshall-szigeteki", + "id": "Bahasa Marshall", + "it": "marshallese", + "ja": "マーシャル語", + "nb_NO": "marshallesisk", + "nl": "Marshallees", + "pl": "Język marszalski", + "pt": "Língua marshalesa", + "pt_BR": "Língua marshalesa", + "ru": "маршалльский язык", + "sv": "marshallesiska" + }, + "priorityIf": "_country~((^|;)mh($|;))", + "searchTerms": { + "*": [ + "mh" + ] + } + }, + { + "if": "school:language=mo", + "then": { + "en": "Moldovan", + "fr": "moldave", + "ca": "moldau", + "hu": "moldáv", + "it": "moldavo", + "de": "Moldawisch", + "eo": "moldava lingvo", + "es": "moldavo", + "fi": "Moldavian kieli", + "ja": "モルドバ語", + "nb_NO": "moldovsk", + "nl": "Moldavisch", + "pl": "Język mołdawski", + "pt": "Língua moldávia", + "pt_BR": "língua moldávia", + "ru": "молдавский язык", + "sl": "Moldavščina", + "sv": "moldaviska", + "gl": "lingua moldova", + "zh_Hant": "摩爾多瓦語" + }, + "searchTerms": { + "*": [ + "mo" + ] + } + }, + { + "if": "school:language=yrk", + "then": { + "ca": "iurac", + "de": "Nenzisch", + "en": "Nenets", + "eo": "neneca lingvo", + "es": "nenezo", + "fi": "nenetsi", + "fr": "nénètse", + "id": "Bahasa-bahasa Nenets", + "it": "lingua neneziana", + "ja": "ネネツ語", + "nb_NO": "nenetsisk", + "nl": "Nenets", + "pl": "język nieniecki", + "ru": "ненецкий язык", + "sv": "nentsiska", + "hu": "nyenyec" + }, + "searchTerms": { + "*": [ + "yrk" + ] + } + }, + { + "if": "school:language=chn", + "then": { + "ca": "chinook jargon", + "de": "Chinook Wawa", + "en": "Chinook Jargon", + "eo": "ĉinuka piĝino", + "fr": "chinook", + "ja": "チヌーク・ジャーゴン", + "nb_NO": "Chinook jargon", + "nl": "Chinook Jargon", + "pt": "Jargão chinook", + "ru": "чинукский жаргон", + "zh_Hans": "奇努克混合语", + "zh_Hant": "支努幹混合語", + "fi": "chinook-jargon" + }, + "searchTerms": { + "*": [ + "chn" + ] + } + }, + { + "if": "school:language=kr", + "then": { + "ru": "Канури", + "ca": "kanuri", + "de": "Kanuri", + "en": "Kanuri", + "eo": "kanura lingvo", + "es": "kanuri", + "fi": "Kanurin kieli", + "fr": "kanouri", + "hu": "kanuri", + "id": "Bahasa Kanuri", + "it": "kanuri", + "ja": "カヌリ語", + "nl": "Kanuri", + "pl": "Język kanuri", + "pt": "Língua kanuri", + "sv": "kanuri", + "gl": "Lingua kanuri" + }, + "searchTerms": { + "*": [ + "kr" + ] + } + }, + { + "if": "school:language=tw", + "then": { + "ca": "twi", + "da": "Twi", + "de": "Twi", + "en": "Twi", + "eo": "Tvia", + "es": "idioma twi", + "fi": "twi", + "fr": "twi", + "gl": "Lingua twi", + "hu": "tvi", + "id": "Bahasa Twi", + "it": "twi", + "ja": "トウィ語", + "nb_NO": "twi", + "nl": "Twi", + "pl": "Język twi", + "pt": "Língua twi", + "pt_BR": "Língua twi", + "ru": "чви", + "sv": "twi (språk)" + }, + "searchTerms": { + "*": [ + "tw" + ] + } + }, + { + "if": "school:language=shn", + "then": { + "de": "Shan", + "en": "Shan", + "nl": "Shan", + "es": "shan", + "fi": "Shanin kieli", + "fr": "shan", + "gl": "Lingua shan", + "id": "Bahasa Shan", + "it": "lingua shan", + "ja": "シャン語", + "pl": "język szan", + "pt": "língua shan", + "pt_BR": "Língua shan", + "ru": "шанский язык", + "sv": "shan", + "zh_Hans": "掸语", + "zh_Hant": "撣語", + "eo": "ŝana lingvo" + }, + "searchTerms": { + "*": [ + "shn" + ] + } + }, + { + "if": "school:language=vls", + "then": { + "sv": "västflamländska", + "ca": "flamenc occidental", + "da": "vestflamsk", + "de": "Westflämisch", + "en": "West Flemish", + "eo": "okcidentflandra lingvo", + "es": "flamenco occidental", + "fi": "länsiflaami", + "fr": "flamand occidental", + "gl": "Flamengo occidental", + "id": "Flam Barat", + "it": "dialetto fiammingo occidentale", + "ja": "西フラマン語", + "nb_NO": "vestflamsk", + "nl": "West-Vlaams", + "pl": "dialekt zachodnioflamandzki", + "ru": "западнофламандская группа диалектов", + "zh_Hans": "西佛兰德语", + "zh_Hant": "西佛蘭德語" + }, + "searchTerms": { + "*": [ + "vls" + ] + } + }, + { + "if": "school:language=pag", + "then": { + "nl": "Pangasinan", + "ca": "pangasinan", + "de": "Pangasinensisch", + "en": "Pangasinan", + "eo": "pangasina lingvo", + "fi": "Pangasinanin kieli", + "fr": "pangasinan", + "gl": "Lingua pangasinesa", + "hu": "pangasinan", + "id": "Bahasa Pangasinan", + "it": "pangasinan", + "ja": "パンガシナン語", + "pl": "Język pangasinan", + "pt": "Língua pangasinesa", + "ru": "Пангасинанский язык", + "sv": "pangasinan", + "zh_Hans": "邦阿西楠语", + "es": "pangasinense", + "da": "pangasinansk", + "nb_NO": "pangasinansk" + }, + "searchTerms": { + "*": [ + "pag" + ] + } + }, + { + "if": "school:language=nso", + "then": { + "ca": "pedi", + "de": "Nord-Sotho", + "en": "Northern Sotho", + "eo": "peda lingvo", + "es": "Sesotho sa leboa", + "fi": "Pohjoissothon kieli", + "fr": "sotho du Nord", + "gl": "Lingua sotho do norte", + "hu": "északi szoto", + "id": "Bahasa Sepedi", + "it": "sotho del nord", + "ja": "北ソト語", + "nb_NO": "nordsotho", + "nl": "Noord-Sotho", + "pl": "język północny sotho", + "pt": "língua soto do norte", + "pt_BR": "língua soto do norte", + "ru": "северный сото", + "sv": "nordsotho" + }, + "searchTerms": { + "*": [ + "nso" + ] + } + }, + { + "if": "school:language=ln", + "then": { + "ca": "lingala", + "da": "lingala", + "de": "Lingala", + "en": "Lingala", + "eo": "lingala lingvo", + "es": "lingala", + "fi": "Lingala", + "fr": "lingala", + "gl": "Lingua lingala", + "hu": "lingala", + "id": "Bahasa Lingala", + "it": "lingala", + "ja": "リンガラ語", + "nb_NO": "lingala", + "nl": "Lingala", + "pl": "język lingala", + "pt": "Língua lingala", + "sv": "lingala", + "zh_Hant": "林格拉語", + "ru": "лингала" + }, + "searchTerms": { + "*": [ + "ln" + ] + } + }, + { + "if": "school:language=zea", + "then": { + "en": "Zeelandic", + "ca": "zelandès", + "de": "Seeländisch", + "eo": "zelanda lingvo", + "es": "zelandés", + "fr": "zélandais", + "gl": "Lingua zelandesa", + "it": "zelandese", + "ja": "ゼーランド語", + "nb_NO": "zeeuws", + "nl": "Zeeuws", + "pl": "dialekt zelandzki", + "pt": "zeêuws", + "ru": "зеландский диалект", + "sv": "zeeländska", + "zh_Hans": "西兰语", + "zh_Hant": "西蘭語" + }, + "searchTerms": { + "*": [ + "zea" + ] + } + }, + { + "if": "school:language=tay", + "then": { + "de": "Atayal", + "en": "Atayal", + "ca": "atayal", + "es": "lengua atayal", + "fr": "atayal", + "gl": "Lingua atayal", + "it": "lingua atayal", + "ja": "タイヤル語", + "nl": "Atayal", + "pt": "Língua atayal", + "ru": "атаяльский язык", + "zh_Hans": "泰雅语", + "zh_Hant": "泰雅語", + "fi": "Atayalin kieli", + "id": "Bahasa Atayal", + "hu": "atajal" + }, + "searchTerms": { + "*": [ + "tay" + ] + } + }, + { + "if": "school:language=wuu", + "then": { + "it": "wu", + "ja": "呉語", + "nb_NO": "wu", + "pl": "język wu", + "pt": "Língua wu", + "ru": "у", + "sv": "wu", + "zh_Hant": "吳語", + "nl": "Wu", + "de": "Wu", + "ca": "wu", + "en": "Wu Chinese", + "eo": "vua lingvo", + "es": "Chino wu", + "fi": "Wu-kiina", + "fr": "wu", + "gl": "Lingua wu", + "id": "Bahasa Wu" + }, + "searchTerms": { + "*": [ + "wuu" + ] + } + }, + { + "if": "school:language=sah", + "then": { + "en": "Sakha", + "ca": "iacut", + "de": "Jakutisch", + "eo": "jakuta lingvo", + "es": "Idioma yakuto", + "fi": "jakuutti", + "fr": "iakoute", + "gl": "Lingua sakha", + "hu": "jakut", + "id": "Bahasa Yakut", + "it": "sacha", + "ja": "サハ語", + "nl": "Jakoets", + "pl": "Język jakucki", + "pt": "Língua iacuta", + "ru": "якутский язык", + "sv": "jakutiska", + "nb_NO": "sakha" + }, + "searchTerms": { + "*": [ + "sah" + ] + } + }, + { + "if": "school:language=jam", + "then": { + "ca": "jamaican", + "da": "Patois", + "de": "Jamaika-Kreolisch", + "en": "Jamaican Creole", + "eo": "jamajka-kreola lingvo", + "es": "Criollo jamaicano", + "fi": "Jamaikankreoli", + "fr": "créole jamaïcain", + "gl": "Patois xamaicano", + "hu": "jamaicai angol", + "id": "Patwa Jamaika", + "it": "lingua creola giamaicana", + "ja": "ジャマイカ・クレオール語", + "nl": "Jamaicaans Patois", + "pl": "język jamajski", + "pt": "Patoá jamaicano", + "pt_BR": "Patoá jamaicano", + "ru": "ямайский креольский язык", + "sv": "patwa", + "zh_Hans": "牙买加土语", + "zh_Hant": "牙買加土語" + }, + "searchTerms": { + "*": [ + "jam" + ] + } + }, + { + "if": "school:language=lkt", + "then": { + "zh_Hans": "拉科塔语", + "ca": "lakota", + "da": "Lakota", + "de": "Lakota", + "en": "Lakota", + "ja": "ラコタ語", + "nb_NO": "lakota", + "nl": "Lakota", + "ru": "лакота", + "eo": "lakota lingvo", + "es": "lakota", + "fi": "lakota", + "fr": "lakota", + "gl": "Lingua lakota", + "id": "Bahasa Lakota", + "it": "lakota", + "pl": "Język lakota", + "pt": "Língua dacota", + "pt_BR": "Língua dacota", + "sv": "lakota" + }, + "searchTerms": { + "*": [ + "lkt" + ] + } + }, + { + "if": "school:language=krl", + "then": { + "en": "Karelian", + "hu": "karjalai", + "ca": "carelià", + "da": "karelsk", + "de": "Karelisch", + "eo": "karela lingvo", + "es": "carelio", + "fi": "karjalan kieli", + "fr": "carélien", + "gl": "Lingua carelia", + "id": "Bahasa Karelia", + "it": "careliano", + "ja": "カレリア語", + "nb_NO": "karelsk", + "nl": "Karelisch", + "pl": "język karelski", + "pt": "Língua carélia", + "pt_BR": "Língua carélia", + "ru": "карельский язык", + "sv": "karelska", + "zh_Hant": "卡累利阿語" + }, + "searchTerms": { + "*": [ + "krl" + ] + } + }, + { + "if": "school:language=tcy", + "then": { + "en": "Tulu", + "nl": "Tulu", + "ca": "tulu", + "da": "tulu", + "de": "Tulu", + "eo": "tulua lingvo", + "es": "tulu", + "fi": "Tulun kieli", + "fr": "toulou", + "gl": "Lingua tulu", + "id": "Bahasa Tulu", + "ja": "トゥル語", + "nb_NO": "Tulu", + "pl": "język tulu", + "pt": "Língua túlu", + "ru": "тулу", + "sv": "tulu" + }, + "searchTerms": { + "*": [ + "tcy" + ] + } + }, + { + "if": "school:language=sju", + "then": { + "sv": "umesamiska", + "hu": "umei számi", + "ca": "sami d'Ume", + "de": "Umesamisch", + "en": "Ume Sami", + "eo": "ume-samea lingvo", + "es": "sami del Ume", + "fi": "uumajansaame", + "fr": "same d'Ume", + "gl": "Lingua saami de Ume", + "it": "lingua sami di Ume", + "ja": "ウーメ・サーミ語", + "nb_NO": "umesamisk", + "nl": "Ume-Samisch", + "pl": "język ume", + "pt": "língua sami de Ume", + "ru": "уме-саамский язык" + }, + "searchTerms": { + "*": [ + "sju" + ] + } + }, + { + "if": "school:language=sou", + "then": { + "de": "Südthailändisch", + "en": "Southern Thai", + "eo": "sud-taja lingvo", + "fr": "thaï du Sud", + "id": "Bahasa Thai Selatan", + "ja": "南タイ語", + "nl": "Zuidelijk Thai", + "pl": "Język południowotajski", + "ru": "южнотайский диалект", + "zh_Hans": "南部泰语", + "zh_Hant": "南部泰語" + }, + "searchTerms": { + "*": [ + "sou" + ] + } + }, + { + "if": "school:language=adx", + "then": { + "en": "Amdo Tibetan", + "fr": "tibétain de l'Amdo", + "ja": "アムド・チベット語", + "pl": "Język amdo", + "ru": "амдо", + "pt": "Tibetano Amdo", + "hu": "amdói tibeti" + }, + "searchTerms": { + "*": [ + "adx" + ] + } + }, + { + "if": "school:language=sli", + "then": { + "ca": "alemany silesià", + "da": "Schlesisk", + "de": "Schlesisch", + "en": "Silesian German", + "eo": "silezia-germana lingvo", + "es": "alemán silesio", + "fi": "sleesiansaksa", + "fr": "silésien", + "it": "tedesco slesiano", + "ja": "低シレジア語", + "nb_NO": "lavschlesisk", + "nl": "Silezisch Duits", + "ru": "силезские диалекты немецкого языка", + "zh_Hans": "西里西亚语", + "zh_Hant": "西里西亞語", + "pl": "dialekt śląski języka niemieckiego", + "hu": "sziléziai német" + }, + "searchTerms": { + "*": [ + "sli" + ] + } + }, + { + "if": "school:language=als", + "then": { + "hu": "svájci német", + "en": "Swiss German", + "de": "Schweizerdeutsch", + "ca": "alemany suís", + "da": "schweizertysk", + "eo": "svisgermana lingvo", + "es": "alemán de Suiza", + "fi": "sveitsinsaksa", + "fr": "suisse allemand", + "gl": "Lingua alemá de Suíza", + "id": "Bahasa Jerman Swiss", + "it": "svizzero tedesco", + "ja": "スイスドイツ語", + "nb_NO": "sveitsertysk", + "nl": "Zwitserduits", + "pl": "gwary schwyzertüütsch", + "pt": "suíço-alemão", + "ru": "швейцарский диалект", + "sv": "schweizertyska", + "zh_Hans": "瑞士德语", + "zh_Hant": "瑞士德語" + }, + "searchTerms": { + "*": [ + "als" + ] + } + }, + { + "if": "school:language=kha", + "then": { + "ru": "Кхаси", + "ca": "khasi", + "de": "Khasi", + "en": "Khasi", + "fi": "Khasi", + "fr": "khasi", + "it": "lingua khasi", + "ja": "カシ語", + "nl": "Khasi", + "pl": "Język khasi", + "pt": "Língua khasi", + "zh_Hans": "卡西语", + "zh_Hant": "卡西語", + "eo": "kasia lingvo" + }, + "searchTerms": { + "*": [ + "kha" + ] + } + }, + { + "if": "school:language=mnc", + "then": { + "en": "Manchu", + "ca": "manxú", + "de": "Mandschurisch", + "eo": "manĉura lingvo", + "es": "idioma manchú", + "fi": "Mantšun kieli", + "fr": "mandchou", + "gl": "Lingua manchú", + "hu": "mandzsu", + "id": "Bahasa Manchu", + "it": "lingua mancese", + "ja": "満洲語", + "nb_NO": "Mandsjuisk", + "nl": "Mantsjoe", + "pl": "język mandżurski", + "pt": "Língua manchu", + "ru": "маньчжурский язык", + "sv": "manchuiska" + }, + "searchTerms": { + "*": [ + "mnc" + ] + } + }, + { + "if": "school:language=yo", + "then": { + "de": "Yoruba", + "en": "Yoruba", + "es": "yoruba", + "nb_NO": "joruba", + "nl": "Yoruba", + "ru": "йоруба", + "fr": "yoruba", + "ca": "ioruba", + "eo": "joruba lingvo", + "fi": "joruban kieli", + "gl": "Lingua ioruba", + "id": "Bahasa Yoruba", + "it": "yoruba", + "ja": "ヨルバ語", + "pl": "język joruba", + "pt": "Língua iorubá", + "sv": "yoruba", + "zh_Hant": "約魯巴語", + "hu": "joruba" + }, + "priorityIf": "_country~((^|;)ng($|;))", + "searchTerms": { + "*": [ + "yo" + ] + } + }, + { + "if": "school:language=ml", + "then": { + "en": "Malayalam", + "ca": "malaiàlam", + "da": "Malayalam", + "de": "Malayalam", + "eo": "malajala lingvo", + "es": "malabar", + "fi": "malajalam", + "fr": "malayalam", + "gl": "lingua malayalam", + "hu": "malajálam", + "id": "bahasa Malayalam", + "it": "malayalam", + "ja": "マラヤーラム語", + "nb_NO": "malayalam", + "nl": "Malayalam", + "pl": "język malajalam", + "pt": "malaiala", + "pt_BR": "Língua malaiala", + "ru": "малаялам", + "sl": "Malajalščina", + "sv": "malayalam", + "zh_Hant": "馬拉雅拉姆語" + }, + "searchTerms": { + "*": [ + "ml" + ] + } + }, + { + "if": "school:language=hai", + "then": { + "fi": "Haida", + "fr": "haïda", + "gl": "Lingua haida", + "id": "Bahasa Haida", + "it": "haida", + "ja": "ハイダ語", + "nb_NO": "Haida (språk)", + "pl": "Język haida", + "pt": "Língua haida", + "ru": "Хайда", + "zh_Hans": "海达语", + "zh_Hant": "海達語", + "sv": "Haida (språk)", + "en": "Haida", + "nl": "Haida", + "de": "Haida", + "ca": "haida", + "eo": "Ĥajda lingvo", + "es": "idioma haida" + }, + "searchTerms": { + "*": [ + "hai" + ] + } + }, + { + "if": "school:language=kut", + "then": { + "en": "Kutenai", + "ca": "kootenai", + "de": "Kutanaha", + "es": "Idioma kutenai", + "fi": "Kutenai", + "fr": "kutenai", + "it": "lingua kutenai", + "ja": "クテナイ語", + "nl": "Kutenai", + "pl": "Język kutenai", + "pt": "Língua kutenai", + "ru": "Кутенай", + "zh_Hans": "库特奈语", + "zh_Hant": "庫特奈語" + }, + "searchTerms": { + "*": [ + "kut" + ] + } + }, + { + "if": "school:language=hoc", + "then": { + "fr": "ho", + "ca": "ho", + "eo": "hoa lingvo", + "fi": "Hon kieli", + "it": "lingua ho", + "ja": "ホー語", + "pl": "Język ho", + "pt": "Língua ho", + "sv": "ho", + "de": "Ho", + "ru": "Хо", + "en": "Ho", + "da": "Ho" + }, + "searchTerms": { + "*": [ + "hoc" + ] + } + }, + { + "if": "school:language=gsg", + "then": { + "ca": "llengua de signes alemanya", + "da": "Tysk tegnsprog", + "de": "Deutsche Gebärdensprache", + "en": "German Sign Language", + "eo": "germana signolingvo", + "es": "lengua de señas alemana", + "fr": "langue des signes allemande", + "hu": "német jelnyelv", + "id": "Bahasa Isyarat Jerman", + "it": "lingua dei segni tedesca", + "ja": "ドイツ手話", + "nb_NO": "tysk tegnspråk", + "nl": "Duitse gebarentaal", + "pl": "niemiecki język migowy", + "pt": "língua gestual alemã", + "pt_BR": "língua de sinais alemã", + "ru": "германский жестовый язык", + "sv": "tyskt teckenspråk", + "zh_Hans": "德国手语", + "zh_Hant": "德國手語", + "fi": "saksalainen viittomakieli" + }, + "searchTerms": { + "*": [ + "gsg" + ] + } + }, + { + "if": "school:language=li", + "then": { + "it": "limburghese", + "ja": "リンブルフ語", + "nb_NO": "limburgsk", + "pl": "język limburski", + "pt": "língua limburguesa", + "ru": "лимбургский язык", + "sv": "limburgiska", + "zh_Hans": "林堡语", + "zh_Hant": "林堡語", + "ca": "limburguès", + "en": "Limburgish", + "nl": "Limburgs", + "de": "Limburgisch", + "eo": "limburga lingvo", + "es": "limburgués", + "fi": "limburgin kieli", + "fr": "limbourgeois", + "gl": "Lingua limburguesa", + "hu": "limburgi", + "id": "Bahasa Limburgish" + }, + "searchTerms": { + "*": [ + "li" + ] + } + }, + { + "if": "school:language=hyw", + "then": { + "ca": "armeni occidental", + "de": "Westarmenisch", + "en": "Western Armenian", + "eo": "okcident-armena lingvo", + "es": "armenio occidental", + "fr": "arménien occidental", + "gl": "Armenio occidental", + "id": "Armenia Barat", + "it": "dialetto armeno occidentale", + "ja": "西アルメニア語", + "nb_NO": "vestarmensk", + "nl": "West-Armeens", + "pl": "język zachodnioormiański", + "ru": "западноармянский язык", + "sv": "västarmeniska", + "zh_Hans": "西部亚美尼亚语", + "zh_Hant": "西部亞美尼亞語" + }, + "searchTerms": { + "*": [ + "hyw" + ] + } + }, + { + "if": "school:language=esu", + "then": { + "ru": "Центрально-юпикский язык", + "zh_Hans": "中阿拉斯加尤皮克语", + "sv": "Centraljupik", + "ca": "yupik de l'Alaska central", + "de": "Yup'ik", + "en": "Central Alaskan Yup'ik", + "es": "Yupik alaskeño central", + "fi": "alaskanjupik", + "fr": "yupik de l'Alaska central", + "gl": "Lingua iupik de Alasca central", + "it": "lingua yupik centrale", + "ja": "中央アラスカ・ユピック語", + "nb_NO": "Alaskayupik", + "nl": "Joepik", + "pl": "Język yupik środkowy" + }, + "searchTerms": { + "*": [ + "esu" + ] + } + }, + { + "if": "school:language=abq", + "then": { + "en": "Abaza", + "ca": "abazí", + "de": "Abasinisch", + "eo": "abaza lingvo", + "es": "abaza", + "fi": "Abazan kieli", + "fr": "abaza", + "gl": "Lingua abaza", + "it": "lingua abazina", + "ja": "アバザ語", + "nb_NO": "abazinsk", + "nl": "Abazijns", + "pl": "Język abazyński", + "pt": "Língua abaza", + "pt_BR": "Língua abaza", + "ru": "абазинский язык", + "sv": "abazinska", + "zh_Hans": "阿巴扎语", + "zh_Hant": "阿巴扎語", + "id": "Bahasa Abaza", + "hu": "abaza" + }, + "searchTerms": { + "*": [ + "abq" + ] + } + }, + { + "if": "school:language=tli", + "then": { + "ca": "Tlingit", + "de": "Tlingit", + "en": "Tlingit", + "fi": "Tlingit", + "nb_NO": "Tlingit", + "nl": "Tlingit", + "eo": "Tlingita", + "es": "tlingit", + "fr": "tlingit", + "id": "Bahasa Tlingit", + "it": "lingua tlingit", + "ja": "トリンギット語", + "pl": "Język tlingit", + "pt": "Língua tlingit", + "pt_BR": "Língua tlingit", + "ru": "Тлингитский язык", + "sv": "tlingit", + "hu": "tlingit" + }, + "searchTerms": { + "*": [ + "tli" + ] + } + }, + { + "if": "school:language=trv", + "then": { + "ca": "seediq", + "en": "Seediq", + "eo": "sedeka lingvo", + "fi": "Taroko", + "fr": "seediq", + "gl": "Lingua seediq", + "it": "lingua seediq", + "ja": "セデック語", + "nb_NO": "Truku", + "nl": "Taroko", + "pt": "Língua seediq", + "zh_Hans": "赛德克语", + "zh_Hant": "賽德克語", + "id": "Bahasa Seediq" + }, + "searchTerms": { + "*": [ + "trv" + ] + } + }, + { + "if": "school:language=szy", + "then": { + "en": "Sakizaya", + "fr": "sakizaya", + "gl": "Lingua sakizaya", + "id": "Bahasa Sakizaya", + "ja": "サキザヤ語", + "zh_Hans": "撒奇莱雅语", + "zh_Hant": "撒奇萊雅語", + "pt": "Língua sakisaya" + }, + "searchTerms": { + "*": [ + "szy" + ] + } + }, + { + "if": "school:language=lus", + "then": { + "ca": "mizo", + "de": "Mizo", + "en": "Mizo", + "es": "mizo", + "fi": "Lusai", + "fr": "mizo", + "it": "lingua Mizo", + "ja": "ミゾ語", + "nl": "Mizo", + "pl": "Język mizo", + "pt": "Língua mizo", + "ru": "Мизо", + "sv": "mizo", + "zh_Hant": "米佐語", + "id": "Bahasa Mizo" + }, + "searchTerms": { + "*": [ + "lus" + ] + } + }, + { + "if": "school:language=olo", + "then": { + "ca": "livvi-carelià", + "de": "Olonetzisch", + "en": "Livvi-Karelian", + "eo": "olonec-karela lingvo", + "fi": "livvinkarjala", + "fr": "olonetsien", + "gl": "Lingua livvi", + "it": "lingua livvi", + "ja": "リッヴィ語", + "nb_NO": "livvisk", + "nl": "Olonetsisch", + "pl": "Dialekt ołoniecki", + "ru": "ливвиковское наречие", + "sv": "livvi", + "zh_Hant": "利維卡累利阿語" + }, + "searchTerms": { + "*": [ + "olo" + ] + } + }, + { + "if": "school:language=pnt", + "then": { + "ca": "pòntic", + "de": "Pontisch", + "en": "Pontic Greek", + "eo": "Ponta greka lingvo", + "es": "griego póntico", + "fr": "grec pontique", + "gl": "Grego póntico", + "id": "Bahasa Yunani Pontus", + "it": "pontico", + "ja": "ギリシア語ポントス方言", + "nb_NO": "pontisk gresk", + "nl": "Pontisch", + "pl": "język pontyjski", + "pt": "Grego do Ponto", + "ru": "понтийский язык", + "sv": "pontisk grekiska", + "zh_Hant": "旁狄希臘語", + "hu": "pontoszi görög" + }, + "searchTerms": { + "*": [ + "pnt" + ] + } + }, + { + "if": "school:language=koi", + "then": { + "ja": "コミ・ペルミャク語", + "en": "Permyak", + "ca": "komi-permià", + "da": "Komipermjakisk", + "de": "Permjakisch", + "eo": "komipermjaka lingvo", + "es": "komi permio", + "fi": "komipermjakin kieli", + "fr": "komi-permiak", + "gl": "Lingua komi-permyac", + "hu": "permják", + "it": "permiaco", + "nb_NO": "komipermjakisk", + "nl": "Komi-Permjaaks", + "pl": "język komi-permiacki", + "pt": "Língua komi-permyak", + "ru": "коми-пермяцкий язык", + "sv": "komi-permjakiska", + "zh_Hans": "彼尔姆科米语", + "zh_Hant": "彼爾姆科米語" + }, + "searchTerms": { + "*": [ + "koi" + ] + } + }, + { + "if": "school:language=nog", + "then": { + "sv": "nogai", + "en": "Nogai", + "ca": "nogai", + "de": "Nogaisch", + "eo": "nogaja lingvo", + "es": "nogai", + "fi": "Nogain kieli", + "fr": "nogaï", + "id": "Bahasa Nogai", + "it": "lingua nogai", + "ja": "ノガイ語", + "nb_NO": "nogaisk", + "nl": "Nogais", + "pl": "Język nogajski", + "pt": "Língua nogai", + "ru": "ногайский язык" + }, + "searchTerms": { + "*": [ + "nog" + ] + } + }, + { + "if": "school:language=wbl", + "then": { + "de": "Wakhi", + "en": "Wakhi", + "nb_NO": "Wakhi", + "nl": "Wakhi", + "es": "wají", + "fi": "Vahanin kieli", + "fr": "wakhi", + "gl": "Lingua vakhí", + "id": "Bahasa Wakhi", + "it": "wakhi", + "ja": "ワヒ語", + "pl": "Język wachański", + "pt": "Língua wakhi", + "pt_BR": "Língua wakhi", + "ru": "Ваханский язык" + }, + "searchTerms": { + "*": [ + "wbl" + ] + } + }, + { + "if": "school:language=tly", + "then": { + "en": "Talysh", + "id": "Talysh", + "ca": "talixi", + "de": "Talisch", + "eo": "taliŝa lingvo", + "es": "talishi", + "fi": "Tališin kieli", + "fr": "talysh", + "gl": "Lingua talysh", + "it": "lingua taliscia", + "ja": "タリシュ語", + "nl": "Talysjisch", + "pl": "Tałyszowie", + "pt": "Língua talish", + "ru": "талышский язык", + "sv": "talysj", + "nb_NO": "talysj" + }, + "searchTerms": { + "*": [ + "tly" + ] + } + }, + { + "if": "school:language=mhr", + "then": { + "fi": "niittymarin kieli", + "fr": "mari des prairies", + "gl": "Lingua mari das pradeiras", + "it": "mari orientale", + "ja": "牧地マリ語", + "nb_NO": "østmarisk", + "nl": "Oost-Tsjeremissisch", + "pl": "maryjski łąkowy", + "pt": "Língua mari das campinas", + "ru": "луговомарийский язык", + "sv": "östmariska", + "en": "Meadow Mari", + "ca": "txeremís oriental", + "de": "Wiesenmari", + "es": "mari de las praderas" + }, + "searchTerms": { + "*": [ + "mhr" + ] + } + }, + { + "if": "school:language=ruq", + "then": { + "en": "Megleno-Romanian", + "ca": "meglenoromanès", + "de": "Meglenorumänisch", + "eo": "meglenorumana lingvo", + "es": "meglenorrumano", + "fr": "mégléno-roumain", + "gl": "Lingua megleno-romanesa", + "it": "lingua meglenorumena", + "ja": "メグレノ・ルーマニア語", + "nb_NO": "meglenorumensk", + "nl": "Megleno-Roemeens", + "pl": "Język meglenorumuński", + "pt": "Romeno meglesita", + "pt_BR": "Romeno meglesita", + "ru": "мегленорумынский язык", + "zh_Hans": "梅戈来诺-罗马尼亚语", + "zh_Hant": "梅戈來諾-羅馬尼亞語", + "hu": "meglenoromán" + }, + "searchTerms": { + "*": [ + "ruq" + ] + } + }, + { + "if": "school:language=mwv", + "then": { + "id": "Mentawai", + "pt": "Mentawai", + "ca": "mentawai", + "da": "Mentawai", + "de": "Mentawaisprache", + "en": "Mentawai", + "eo": "Mentawai", + "es": "mentawai", + "fi": "Mentawain kieli", + "fr": "mentawai", + "gl": "Lingua mentawai", + "hu": "Mentawai", + "it": "lingua mentawai", + "ja": "メンタワイ語", + "nb_NO": "Mentawai", + "nl": "Mentawai", + "pl": "język mentawai", + "pt_BR": "Mentawai", + "ru": "ментавай", + "sl": "Mentawai", + "sv": "mentawai" + }, + "searchTerms": { + "*": [ + "mwv" + ] + } + }, + { + "if": "school:language=koy", + "then": { + "de": "Koyukon", + "en": "Koyukon", + "nb_NO": "Koyukon", + "es": "koyukón", + "fr": "koyukon", + "it": "lingua koyukon", + "ja": "コユコン語", + "pt": "Língua koyukon", + "pt_BR": "Língua koyukon", + "ru": "Коюкон" + }, + "searchTerms": { + "*": [ + "koy" + ] + } + }, + { + "if": "school:language=clc", + "then": { + "en": "Chilcotin", + "de": "Tschilcotin", + "es": "chilcotin", + "fr": "chilcotin", + "it": "lingua chilcotin", + "ja": "チルコティン語", + "nb_NO": "Chilcotin", + "pt": "Língua chilcontin", + "ru": "Чилкотин", + "eo": "ĉilkotina lingvo" + }, + "searchTerms": { + "*": [ + "clc" + ] + } + }, + { + "if": "school:language=fiu-vro", + "then": { + "en": "Võro", + "ca": "võro", + "da": "Võro", + "de": "Võro", + "eo": "voroa lingvo", + "es": "Idioma võro", + "fi": "võro", + "fr": "võro", + "gl": "Lingua võro", + "id": "Bahasa Võro", + "it": "võro", + "ja": "ヴォロ語", + "nb_NO": "sørestisk", + "nl": "Võro", + "pl": "język võro", + "pt": "Língua võro", + "ru": "выруский диалект", + "sv": "võro", + "zh_Hans": "沃罗语", + "hu": "võro" + }, + "searchTerms": { + "*": [ + "fiu-vro" + ] + } + }, + { + "if": "school:language=frc", + "then": { + "fr": "français de Louisiane", + "id": "Bahasa Prancis Louisiana", + "it": "francese cajun", + "ja": "ケイジャン・フランス語", + "nl": "Cajun-Frans", + "pt": "francês cajun", + "ru": "Кажунский диалект французского языка", + "sv": "Louisianafranska", + "de": "Cajun", + "ca": "francès cajun", + "en": "Louisiana French", + "eo": "luiziana franca dialekto", + "es": "francés cajún" + }, + "searchTerms": { + "*": [ + "frc" + ] + } + }, + { + "if": "school:language=guw", + "then": { + "ru": "Гун", + "en": "Gun", + "de": "Gun", + "ca": "gun", + "ja": "グン語", + "fr": "gun-gbe", + "gl": "Lingua gun" + }, + "searchTerms": { + "*": [ + "guw" + ] + } + }, + { + "if": "school:language=cnh", + "then": { + "de": "Hakha Chin", + "en": "Hakha-Chin", + "fr": "haka chin", + "ja": "ハカ語", + "ru": "Чинский язык" + }, + "searchTerms": { + "*": [ + "cnh" + ] + } + }, + { + "if": "school:language=sjm", + "then": { + "en": "Mapun", + "fr": "mapun" + }, + "searchTerms": { + "*": [ + "sjm" + ] + } + }, + { + "if": "school:language=bzs", + "then": { + "ca": "llengua de signes brasilera", + "da": "brasiliansk tegnsprog", + "de": "Brasilianische Gebärdensprache", + "en": "Brazilian Sign Language", + "eo": "brazila signolingvo", + "fr": "langue des signes brésilienne", + "it": "lingua dei segni brasiliana", + "ja": "ブラジル手話", + "nb_NO": "brasiliansk tegnspråk", + "nl": "Braziliaanse gebarentaal", + "pt": "língua brasileira de sinais", + "pt_BR": "língua brasileira de sinais", + "es": "Lengua brasileña de señas", + "ru": "бразильский жестовый язык", + "id": "Bahasa Isyarat Brasil" + }, + "searchTerms": { + "*": [ + "bzs" + ] + } + }, + { + "if": "school:language=kcg", + "then": { + "en": "Tyap", + "de": "Tjap", + "fi": "Tyap", + "ja": "カタブ語", + "nl": "Tyap", + "gl": "Lingua tyap", + "ca": "katab", + "es": "katab", + "fr": "katab" + }, + "searchTerms": { + "*": [ + "kcg" + ] + } + }, + { + "if": "school:language=mi", + "then": { + "fi": "Maorin kieli", + "fr": "māori", + "gl": "Lingua maorí", + "hu": "maori", + "id": "Bahasa Maori", + "it": "māori", + "ja": "マオリ語", + "nb_NO": "maorisk", + "nl": "Maori", + "pl": "język maori", + "pt": "língua maori", + "pt_BR": "língua maori", + "ru": "маори", + "sv": "maori", + "zh_Hans": "毛利语", + "zh_Hant": "毛利語", + "ca": "maori", + "da": "Maori", + "de": "Māori", + "en": "Māori", + "eo": "maoria lingvo", + "es": "maorí" + }, + "priorityIf": "_country~((^|;)nz($|;))", + "searchTerms": { + "*": [ + "mi" + ] + } + }, + { + "if": "school:language=aeb", + "then": { + "da": "Tunesisk arabisk", + "de": "Tunesisch-Arabisch", + "en": "Tunisian Arabic", + "eo": "tunizia araba lingvo", + "es": "árabe tunecino", + "fi": "tunisianarabia", + "fr": "arabe tunisien", + "id": "Bahasa Arab Tunisia", + "it": "arabo tunisino", + "ja": "アラビア語チュニジア方言", + "nb_NO": "tunisisk arabisk", + "nl": "Tunesisch", + "pt": "árabe tunisino", + "pt_BR": "Árabe tunisino", + "ru": "Тунисский диалект арабского языка", + "sv": "tunisisk arabiska", + "zh_Hans": "突尼斯阿拉伯语", + "zh_Hant": "突尼西亞阿拉伯語", + "ca": "àrab tunisià", + "pl": "tunezyjski" + }, + "searchTerms": { + "*": [ + "aeb" + ] + } + }, + { + "if": "school:language=nrf-gg", + "then": { + "ca": "guernseiès", + "de": "Guernésiais", + "en": "Guernésiais", + "eo": "gernezeja lingvo", + "es": "guernseyés", + "fi": "Guernésiais", + "fr": "guernesiais", + "it": "dialetto guernesiais", + "ja": "ガーンジー島方言", + "nb_NO": "guernésiais", + "nl": "Dgèrnésiais", + "pl": "Dgèrnésiais", + "pt": "Guernésiais", + "ru": "Гернсийский диалект нормандского языка", + "sl": "Guernseyščina", + "sv": "Guernésiais" + }, + "searchTerms": { + "*": [ + "nrf-gg" + ] + } + }, + { + "if": "school:language=lki", + "then": { + "en": "Laki", + "pt": "Laki", + "de": "Leki", + "da": "Laki", + "eo": "Laki", + "ca": "dialecte laki", + "fi": "laki", + "fr": "laki", + "gl": "Lingua laki", + "ja": "ラーク語", + "nl": "Laki dialect", + "ru": "лаки", + "sv": "lekî", + "id": "Bahasa Laki" + }, + "searchTerms": { + "*": [ + "lki" + ] + } + }, + { + "if": "school:language=bej", + "then": { + "nl": "Beja", + "en": "Beja", + "nb_NO": "Beja", + "ru": "Беджа", + "de": "Bedscha", + "ca": "llengua beja", + "eo": "beĝaa lingvo", + "es": "Idioma beya", + "fi": "Bedžan kieli", + "fr": "bedja", + "id": "Bahasa Beja", + "it": "begia", + "ja": "ベジャ語", + "pl": "Język bedża", + "pt": "Língua beja" + }, + "searchTerms": { + "*": [ + "bej" + ] + } + }, + { + "if": "school:language=ckt", + "then": { + "en": "Chukchi", + "ca": "txuktxi", + "de": "Tschuktschisch", + "eo": "Ĉukĉa lingvo", + "es": "chucoto", + "fi": "Tšuktšin kieli", + "fr": "tchouktche", + "gl": "Lingua Chukoto", + "id": "Bahasa Chukchi", + "it": "lingua ciukcia", + "ja": "チュクチ語", + "nb_NO": "Luoravetlansk", + "nl": "Tsjoektsjisch", + "pl": "Język czukocki", + "pt": "Língua chukoto", + "ru": "чукотский язык", + "sl": "Čukotščina", + "sv": "tjuktjiska", + "hu": "csukcs" + }, + "searchTerms": { + "*": [ + "ckt" + ] + } + }, + { + "if": "school:language=mus", + "then": { + "de": "Maskoki", + "en": "Muscogee", + "ca": "muskogi", + "eo": "krika lingvo", + "es": "idioma maskoki", + "fi": "Creekin kieli", + "fr": "creek", + "gl": "Lingua muscogee", + "hu": "muszkogi", + "id": "Bahasa Muskogee", + "it": "lingua creek", + "ja": "マスコギ語", + "nl": "Muskogi", + "pl": "Język krik", + "pt": "Língua creek", + "pt_BR": "Língua creek", + "ru": "Крикский язык" + }, + "searchTerms": { + "*": [ + "mus" + ] + } + }, + { + "if": "school:language=pwn", + "then": { + "ca": "paiwan", + "en": "Paiwan", + "es": "Idioma paiwan", + "fr": "paiwan", + "gl": "Lingua paiwan", + "id": "Bahasa Paiwan", + "it": "paiwan", + "ja": "パイワン語", + "nl": "Paiwaans", + "pt": "Língua paiwan", + "sv": "paiwan", + "zh_Hans": "排湾语", + "zh_Hant": "排灣語", + "de": "Paiwan", + "fi": "Paiwanin kieli" + }, + "searchTerms": { + "*": [ + "pwn" + ] + } + }, + { + "if": "school:language=kj", + "then": { + "en": "Kwanyama", + "nl": "Kwanyama", + "ca": "kwanyama", + "de": "Kwanyama", + "eo": "kuanjama lingvo", + "es": "idioma kuanyama", + "fr": "kuanyama", + "gl": "Lingua kwanyama", + "hu": "kvanyama", + "it": "kwanyama", + "ja": "クワニャマ語", + "pl": "Język kwanyama", + "pt": "Língua cuanhama", + "ru": "кваньяма", + "sv": "kwanyama", + "zh_Hans": "夸摩马语", + "zh_Hant": "誇摩馬語" + }, + "searchTerms": { + "*": [ + "kj" + ] + } + }, + { + "if": "school:language=rgn", + "then": { + "ca": "romanyol", + "de": "Romagnol", + "en": "Romagnol", + "eo": "romanja lingvo", + "es": "romañol", + "fr": "romagnol", + "it": "romagnolo", + "ja": "ロマーニャ語", + "nl": "Romagnools", + "pt": "romagnol", + "ru": "Романьольский язык", + "zh_Hans": "罗马涅语", + "zh_Hant": "羅馬涅語", + "fi": "romagnolin kieli" + }, + "searchTerms": { + "*": [ + "rgn" + ] + } + }, + { + "if": "school:language=abs", + "then": { + "de": "Ambonesisch", + "en": "Ambonese", + "fr": "malais d'Ambon", + "id": "Bahasa Ambon", + "ja": "アンボン・マライ語", + "nl": "Ambonees", + "pl": "język malajski amboński", + "pt": "Malaio ambonês", + "ru": "амбонезский язык", + "zh_Hans": "安汶马来语", + "zh_Hant": "安汶馬來語" + }, + "searchTerms": { + "*": [ + "abs" + ] + } + }, + { + "if": "school:language=sxr", + "then": { + "ja": "サアロア語", + "pt": "Língua saaroa", + "zh_Hans": "拉阿鲁哇语", + "zh_Hant": "拉阿魯哇語", + "id": "Bahasa Saaroa", + "en": "Saaroa", + "fi": "Saaroa", + "nl": "Saaroa", + "ca": "saaroa", + "fr": "saaroa", + "it": "lingua saaroa" + }, + "searchTerms": { + "*": [ + "sxr" + ] + } + }, + { + "if": "school:language=ckv", + "then": { + "ca": "kavalan", + "en": "Kavalan", + "fi": "Kavalan", + "fr": "kavalan", + "it": "lingua kavalan", + "ja": "クバラン語", + "nl": "Kavalaans", + "pt": "Língua kavalan", + "zh_Hans": "噶玛兰语", + "zh_Hant": "噶瑪蘭語", + "id": "Bahasa Kavalan" + }, + "searchTerms": { + "*": [ + "ckv" + ] + } + }, + { + "if": "school:language=tsu", + "then": { + "ru": "Цзоу", + "en": "Tsou", + "nl": "Tsou", + "ca": "tsou", + "fr": "tsou", + "id": "Bahasa Tsou", + "it": "lingua tsou", + "ja": "ツォウ語", + "sv": "tsou", + "zh_Hans": "邹语", + "zh_Hant": "鄒語", + "fi": "Tsoun kieli" + }, + "searchTerms": { + "*": [ + "tsu" + ] + } + }, + { + "if": "school:language=xsy", + "then": { + "ca": "saisiyat", + "en": "Saisiyat", + "fr": "saisiyat", + "it": "lingua saisiyat", + "ja": "サイシャット語", + "nl": "Saisiyat", + "pt": "Língua saisiyat", + "zh_Hans": "赛夏语", + "zh_Hant": "賽夏語", + "id": "Bahasa Saisiyat" + }, + "searchTerms": { + "*": [ + "xsy" + ] + } + }, + { + "if": "school:language=lvk", + "then": { + "en": "Lavukaleve", + "fr": "lavukaleve", + "ja": "ラヴカルヴェ語", + "pl": "język lavukaleve", + "ru": "Лавукалеве", + "sv": "Lavukaleve", + "de": "Lavukaleve", + "es": "lavukaleve", + "it": "lavukaleve", + "pt": "lavukaleve" + }, + "searchTerms": { + "*": [ + "lvk" + ] + } + }, + { + "if": "school:language=zh-yue", + "then": { + "zh_Hans": "粤语", + "zh_Hant": "粵語", + "de": "Kantonesisch", + "en": "Yue Chinese", + "es": "cantonés", + "ja": "粤語", + "nl": "Kantonees", + "pl": "język yue", + "ca": "xinès Yue", + "da": "yue", + "eo": "sudĉina lingvo", + "fr": "cantonais", + "id": "Tionghoa Yue", + "it": "cantonese", + "nb_NO": "kantonesisk", + "pt": "Língua yue", + "ru": "юэ" + }, + "searchTerms": { + "*": [ + "zh-yue" + ] + } + }, + { + "if": "school:language=tvn", + "then": { + "en": "Tavoyan", + "fr": "tavoyan", + "nb_NO": "tavoyansk" + }, + "searchTerms": { + "*": [ + "tvn" + ] + } + }, + { + "if": "school:language=pmy", + "then": { + "en": "Papuan Malay", + "fi": "Papuan malaiji", + "fr": "malais papou", + "id": "Melayu Papua", + "pl": "język malajski papuaski" + }, + "searchTerms": { + "*": [ + "pmy" + ] + } + }, + { + "if": "school:language=kbg", + "then": { + "en": "Khamba", + "fr": "khamba" + }, + "searchTerms": { + "*": [ + "kbg" + ] + } + }, + { + "if": "school:language=rwr", + "then": { + "en": "Marwari", + "fr": "marvari", + "ru": "марвари" + }, + "searchTerms": { + "*": [ + "rwr" + ] + } + }, + { + "if": "school:language=ttm", + "then": { + "en": "Northern Tutchone", + "de": "Nord-Tutchone", + "es": "tutchone septentrional", + "fr": "tutchone du Nord" + }, + "searchTerms": { + "*": [ + "ttm" + ] + } + }, + { + "if": "school:language=mrj", + "then": { + "en": "Hill Mari", + "de": "Bergmari", + "ca": "txeremís occidental", + "es": "mari de las colinas", + "fi": "vuorimarin kieli", + "fr": "mari des montagnes", + "gl": "Lingua mari das montañas", + "it": "lingua mari occidentale", + "ja": "山地マリ語", + "nb_NO": "vestmarisk", + "nl": "West-Tsjeremissisch", + "pl": "maryjski górski", + "pt": "mari ocidental", + "ru": "горномарийский язык", + "sv": "västmariska", + "hu": "hegyi mari" + }, + "searchTerms": { + "*": [ + "mrj" + ] + } + }, + { + "if": "school:language=nia", + "then": { + "de": "Nias", + "en": "Nias", + "nl": "Nias", + "id": "Nias", + "fi": "Niasin kieli", + "fr": "niha", + "gl": "Lingua nias", + "it": "lingua nias", + "ja": "ニアス語", + "pl": "Język nias", + "pt": "Língua nias", + "ru": "Ниасский язык", + "zh_Hans": "尼亚斯语", + "zh_Hant": "尼亞斯語", + "eo": "niasa lingvo" + }, + "searchTerms": { + "*": [ + "nia" + ] + } + }, + { + "if": "school:language=yrl", + "then": { + "de": "Nheengatu", + "en": "Nheengatu", + "nl": "Nheengatu", + "ca": "nheengatu", + "eo": "nengatua lingvo", + "es": "ñe'engatú", + "fi": "Ñeengatú", + "fr": "nheengatu", + "gl": "Lingua nheengatu", + "it": "nheengatu", + "ja": "ニェエンガトゥ語", + "pt": "nheengatu", + "pt_BR": "Nheengatu", + "ru": "ньенгату" + }, + "searchTerms": { + "*": [ + "yrl" + ] + } + }, + { + "if": "school:language=cak", + "then": { + "en": "Kaqchikel", + "nl": "Kaqchikel", + "ca": "kaqtxikel", + "de": "Cakchiquel-Sprache", + "eo": "kakĉikela lingvo", + "es": "Idioma kakchikel", + "fr": "cakchiquel", + "gl": "Lingua kaqchikel", + "id": "Bahasa Kaqchikel", + "ja": "カクチケル語", + "nb_NO": "Kakchikel", + "pl": "Język kaqchikel", + "pt": "Língua caqchiquel", + "ru": "Какчикельский язык", + "sv": "cakchiquel" + }, + "searchTerms": { + "*": [ + "cak" + ] + } + }, + { + "if": "school:language=ami", + "then": { + "en": "Amis", + "nl": "Amis", + "ca": "amis", + "de": "Amisisch", + "es": "Idioma amis", + "fr": "amis", + "gl": "Lingua amis", + "id": "Bahasa Amis", + "it": "lingua amis", + "ja": "アミ語", + "pl": "Język amis", + "pt": "Língua amis", + "ru": "амисский язык", + "sv": "amis", + "zh_Hans": "阿美语", + "zh_Hant": "阿美語", + "fi": "Amisin kieli" + }, + "searchTerms": { + "*": [ + "ami" + ] + } + }, + { + "if": "school:language=krx", + "then": { + "en": "Karon", + "de": "Karon", + "fr": "karone", + "ja": "カロン語" + }, + "searchTerms": { + "*": [ + "krx" + ] + } + }, + { + "if": "school:language=hil", + "then": { + "id": "Bahasa Hiligaynon", + "it": "lingua hiligaynon", + "ja": "ヒリガイノン語", + "pl": "Język hiligaynon", + "pt": "Língua hiligaynon", + "ru": "Хилигайнон", + "sv": "hiligaynon", + "es": "hiligueino", + "da": "hiligajisk", + "en": "Hiligaynon", + "de": "Hiligaynon", + "nl": "Hiligaynon", + "ca": "híligaynon", + "eo": "hiligajnona lingvo", + "fi": "Hiligainon kieli", + "fr": "hiligaïnon" + }, + "searchTerms": { + "*": [ + "hil" + ] + } + }, + { + "if": "school:language=uun", + "then": { + "de": "Pazeh", + "en": "Pazeh", + "ca": "pazeh", + "fr": "pazeh", + "id": "Bahasa Pazeh", + "it": "lingua pazeh", + "ja": "パゼッヘ語", + "nl": "Kulon-Pazeh", + "pl": "Język pazeh", + "pt": "Língua pazeh", + "zh_Hant": "巴宰語" + }, + "searchTerms": { + "*": [ + "uun" + ] + } + }, + { + "if": "school:language=sjt", + "then": { + "ca": "sami ter", + "de": "Tersamisch", + "en": "Ter Sami", + "eo": "ter-samea lingvo", + "es": "sami ter", + "fi": "turjansaame", + "fr": "same de Ter", + "gl": "Lingua saami de Ter", + "it": "sami di Ter", + "ja": "テル・サーミ語", + "nb_NO": "tersamisk", + "nl": "Ter-Samisch", + "pl": "język ter", + "pt": "sami de Ter", + "ru": "йоканьгско-саамский язык", + "sv": "tersamiska" + }, + "searchTerms": { + "*": [ + "sjt" + ] + } + }, + { + "if": "school:language=wal", + "then": { + "de": "Wolaytta", + "ru": "Воламо", + "en": "Wolaytta", + "es": "Idioma wolayta", + "fi": "Wolaitta", + "fr": "wolaita", + "it": "lingua wolaytta", + "ja": "ウォライタ語", + "nl": "Wolayta", + "pt": "Língua wolaytta" + }, + "searchTerms": { + "*": [ + "wal" + ] + } + }, + { + "if": "school:language=wym", + "then": { + "en": "Vilamovian", + "ca": "wymysorys", + "da": "vimisørisk", + "de": "Wilmesaurisch", + "eo": "vilamovica lingvo", + "es": "vilamoviciano", + "fi": "Wymysorys", + "fr": "wilamowicien", + "gl": "Lingua wymysorys", + "hu": "wilamowicei", + "id": "Bahasa Wimisoris", + "it": "vilamoviano", + "ja": "ヴィラモヴィアン語", + "nb_NO": "wymysörisk", + "nl": "Wymysöryś", + "pl": "etnolekt wilamowski", + "pt": "Wymysorys", + "pt_BR": "Wymysorys", + "ru": "вилямовский язык", + "sv": "wymysöriska" + }, + "searchTerms": { + "*": [ + "wym" + ] + } + }, + { + "if": "school:language=arq", + "then": { + "ca": "àrab algerià", + "da": "Algerisk arabisk", + "de": "Algerisch-Arabisch", + "en": "Algerian Arabic", + "eo": "alĝeria araba lingvo", + "es": "árabe argelino", + "fi": "algerianarabia", + "fr": "arabe algérien", + "id": "Bahasa Arab Aljazair", + "it": "arabo algerino", + "ja": "アラビア語アルジェリア方言", + "nl": "Algerijns Arabisch", + "pt": "árabe argelino", + "ru": "Алжирский диалект арабского языка", + "sv": "algerisk arabiska", + "zh_Hant": "阿爾及利亞阿拉伯語", + "nb_NO": "algerisk-arabisk", + "hu": "algériai arab" + }, + "searchTerms": { + "*": [ + "arq" + ] + } + }, + { + "if": "school:language=bsk", + "then": { + "zh_Hans": "布鲁夏斯基语", + "zh_Hant": "布魯夏斯基語", + "id": "Bahasa Burushaski", + "hu": "burusaszki", + "ca": "buruixaski", + "da": "Burushaski", + "de": "Burushaski", + "en": "Burushaski", + "eo": "buruŝa lingvo", + "es": "Idioma burushaski", + "fi": "Burušaskin kieli", + "fr": "bourouchaski", + "gl": "Lingua burushaski", + "it": "lingua burushaski", + "ja": "ブルシャスキー語", + "nl": "Burushaski", + "pl": "Język buruszaski", + "pt": "língua burushaski", + "ru": "Бурушаски", + "sv": "burushaski" + }, + "searchTerms": { + "*": [ + "bsk" + ] + } + }, + { + "if": "school:language=bqi", + "then": { + "en": "Bakhtiari", + "de": "Bachtiarisch", + "fr": "bakhtiari", + "it": "dialetto bakhtiari", + "ja": "バフティヤーリー語", + "nl": "Bachtiarisch", + "pl": "Język bachtiarski", + "ru": "Бахтиярский язык", + "zh_Hans": "巴赫蒂亚语", + "zh_Hant": "巴赫蒂亞語" + }, + "searchTerms": { + "*": [ + "bqi" + ] + } + }, + { + "if": "school:language=hrx", + "then": { + "ja": "フンスリュック方言", + "de": "Riograndenser Hunsrückisch", + "en": "Hunsrik", + "eo": "Sudriogranda germana dialekto", + "es": "Riograndenser Hunsrückisch", + "it": "lingua hunsrik", + "nl": "Riograndenser Hunsrückisch", + "pl": "Riograndenser Hunsrückisch", + "pt": "hunsriqueano riograndense", + "pt_BR": "hunsriqueano riograndense", + "ru": "Хунсрик", + "sv": "Riograndenser Hunsrückisch", + "fr": "hunsrik" + }, + "searchTerms": { + "*": [ + "hrx" + ] + } + }, + { + "if": "school:language=ssf", + "then": { + "en": "Thao", + "nl": "Thao", + "ca": "thao", + "fi": "Thaon kieli", + "fr": "thao", + "it": "lingua thao", + "ja": "サオ語", + "pl": "Język thao", + "id": "Bahasa Thao", + "ru": "Тхао" + }, + "searchTerms": { + "*": [ + "ssf" + ] + } + }, + { + "if": "school:language=mrh", + "then": { + "ca": "lakher", + "en": "Mara", + "fr": "mara", + "ja": "マラ語", + "ru": "Мара" + }, + "searchTerms": { + "*": [ + "mrh" + ] + } + }, + { + "if": "school:language=aoc", + "then": { + "de": "Pemón", + "en": "Pemon", + "eo": "pemona lingvo", + "es": "Idioma pemón", + "fr": "pemon", + "it": "pemon", + "ja": "ペモン語", + "nb_NO": "Pemón", + "nl": "Pemón", + "pt": "Língua taurepangue", + "pt_BR": "Língua taurepangue", + "ru": "Пемонский язык", + "ca": "Pemon" + }, + "searchTerms": { + "*": [ + "aoc" + ] + } + }, + { + "if": "school:language=tsk", + "then": { + "en": "Tseku", + "fr": "tseku", + "ru": "Цеку" + }, + "searchTerms": { + "*": [ + "tsk" + ] + } + }, + { + "if": "school:language=luz", + "then": { + "de": "Südliches Lori", + "en": "Southern Luri", + "fr": "luri du Sud", + "ja": "南ロル語", + "ru": "южнолурский язык" + }, + "searchTerms": { + "*": [ + "luz" + ] + } + }, + { + "if": "school:language=tce", + "then": { + "en": "Southern Tutchone", + "es": "tutchone meridional", + "fr": "tutchone du Sud" + }, + "searchTerms": { + "*": [ + "tce" + ] + } + }, + { + "if": "school:language=quc", + "then": { + "ca": "quitxé", + "de": "Quiché-Sprache", + "en": "K’iche’", + "es": "Idioma quiché", + "fi": "k'iche'n kieli", + "fr": "quiché", + "gl": "Lingua kʼicheʼ", + "id": "Bahasa K'iche'", + "it": "lingua k'iche'", + "ja": "キチェ語", + "nb_NO": "Quiché", + "nl": "K'iche'", + "pl": "Język kicze", + "pt": "Língua quiché", + "ru": "киче", + "sv": "quiché" + }, + "searchTerms": { + "*": [ + "quc" + ] + } + }, + { + "if": "school:language=bnn", + "then": { + "en": "Bunun", + "ru": "Бунун", + "ca": "bunun", + "fr": "bunun", + "it": "lingua bunun", + "ja": "ブヌン語", + "nl": "Bunun", + "pl": "Język bunun", + "pt": "Língua bunun", + "zh_Hant": "布農語", + "fi": "bununin kieli", + "id": "Bahasa Bunun" + }, + "searchTerms": { + "*": [ + "bnn" + ] + } + }, + { + "if": "school:language=lzz", + "then": { + "nb_NO": "Lazisk", + "nl": "Lazisch", + "pl": "Język lazyjski", + "pt": "laz", + "ru": "Лазский язык", + "sv": "laziska", + "zh_Hans": "拉兹語", + "zh_Hant": "拉茲語", + "id": "Bahasa Laz", + "en": "Laz", + "de": "Lasisch", + "es": "laz", + "it": "laz", + "hu": "láz", + "fr": "laze", + "ca": "laz", + "eo": "laza lingvo", + "fi": "Lazin kieli", + "gl": "Lingua laz", + "ja": "ラズ語" + }, + "searchTerms": { + "*": [ + "lzz" + ] + } + }, + { + "if": "school:language=sdh", + "then": { + "ca": "kurd del sud", + "da": "sydkurdisk", + "de": "Südkurdisch", + "en": "Southern Kurdish", + "eo": "Sudaj Kurdaj dialektoj", + "fr": "kurde du Sud", + "id": "Bahasa Kurdi Selatan", + "it": "lingua curda meridionale", + "ja": "南部クルド語", + "nl": "Zuid-Koerdisch", + "pl": "język południowokurdyjski", + "pt": "Curdo meridional", + "pt_BR": "Curdo meridional", + "ru": "южнокурдский язык", + "sv": "sydkurdiska", + "zh_Hans": "南库尔德语", + "zh_Hant": "南庫德語" + }, + "searchTerms": { + "*": [ + "sdh" + ] + } + }, + { + "if": "school:language=nsk", + "then": { + "en": "Naskapi", + "ru": "Наскапи", + "fr": "naskapi", + "it": "lingua naskapi", + "nb_NO": "Naskapi (språk)" + }, + "searchTerms": { + "*": [ + "nsk" + ] + } + }, + { + "if": "school:language=akz", + "then": { + "nl": "Alabama", + "de": "Alabama", + "en": "Alabama", + "nb_NO": "Alabama", + "ca": "alibamu", + "eo": "alabama lingvo", + "es": "Idioma alabama", + "fr": "alabama", + "gl": "Lingua alabama", + "it": "lingua alabama", + "ja": "アラバマ語", + "pl": "język alabama", + "ru": "Алабамский язык" + }, + "searchTerms": { + "*": [ + "akz" + ] + } + }, + { + "if": "school:language=kri", + "then": { + "eo": "Krio", + "nl": "Krio", + "de": "Krio", + "en": "Krio", + "fi": "Krion kieli", + "fr": "krio", + "id": "Bahasa Krio", + "it": "lingua krio", + "ja": "クリオ語", + "pl": "Język krio", + "pt": "Língua krio", + "ru": "Крио", + "sv": "krio", + "zh_Hans": "克里奥语", + "zh_Hant": "克里奧語", + "es": "Criollo sierraleonés" + }, + "searchTerms": { + "*": [ + "kri" + ] + } + }, + { + "if": "school:language=kea", + "then": { + "es": "criollo caboverdiano", + "ca": "crioll capverdià", + "de": "Kapverdisches Kreol", + "en": "Cape Verdean Creole", + "eo": "Kabo-Verda kreolo", + "fi": "Kapverdenkreoli", + "fr": "créole du Cap-Vert", + "gl": "Crioulo caboverdiano", + "it": "creolo capoverdiano", + "ja": "カーボベルデ・クレオール語", + "nb_NO": "kappverdisk kreol", + "nl": "Kaapverdisch Creools", + "pl": "Język kreolski Wysp Zielonego Przylądka", + "pt": "crioulo cabo-verdiano", + "ru": "Кабувердьяну", + "sv": "krioli" + }, + "searchTerms": { + "*": [ + "kea" + ] + } + }, + { + "if": "school:language=dru", + "then": { + "en": "Rukai", + "ca": "rukai", + "es": "rukai", + "fi": "Rukai", + "fr": "rukai", + "gl": "Lingua rukai", + "id": "Bahasa Rukai", + "it": "rukai", + "ja": "ルカイ語", + "nl": "Rukai", + "pl": "Rukai", + "pt": "Língua rukai", + "zh_Hans": "鲁凯语", + "zh_Hant": "魯凱語" + }, + "searchTerms": { + "*": [ + "dru" + ] + } + }, + { + "if": "school:language=tzm", + "then": { + "ca": "tamazight", + "de": "Zentralatlas-Tamazight", + "en": "Central Atlas Tamazight", + "eo": "tamaziĥta lingvo", + "es": "Tamazight del Marruecos Central", + "fi": "Keskiatlaksentamazight", + "fr": "tamazight du Maroc central", + "it": "tamazight del Marocco centrale", + "ja": "中央アトラス・タマジクト語", + "nl": "Central Atlas Tamazight", + "pl": "Język tamazight", + "ru": "Тамазигхтские языки", + "sv": "tamazight", + "zh_Hans": "中阿特拉斯柏柏尔语", + "zh_Hant": "中阿特拉斯柏柏語" + }, + "searchTerms": { + "*": [ + "tzm" + ] + } + }, + { + "if": "school:language=bfq", + "then": { + "en": "Badaga", + "ca": "badaga", + "de": "Badaga", + "fi": "Badagan kieli", + "fr": "badaga", + "id": "Bahasa Badaga", + "it": "lingua badaga", + "ja": "バダガ語", + "nl": "Badaga", + "pl": "Język badaga", + "pt": "Língua badaga", + "pt_BR": "Língua badaga", + "sv": "badaga" + }, + "searchTerms": { + "*": [ + "bfq" + ] + } + }, + { + "if": "school:language=khw", + "then": { + "de": "Khowar", + "en": "Khowar", + "fi": "Khowarin kieli", + "fr": "khowar", + "id": "Bahasa Khowar", + "it": "khawar", + "ja": "コワール語", + "nb_NO": "Khowar", + "nl": "Khowar", + "pl": "język khowar", + "pt": "Língua khovar", + "sv": "khowar", + "ru": "кховар" + }, + "searchTerms": { + "*": [ + "khw" + ] + } + }, + { + "if": "school:language=uzs", + "then": { + "de": "Südusbekisch", + "en": "Southern Uzbek", + "eo": "sud-uzbeka lingvo", + "fr": "ouzbek du Sud", + "ru": "Южноузбекский язык", + "zh_Hans": "南乌兹别克语", + "zh_Hant": "南烏茲別克語" + }, + "searchTerms": { + "*": [ + "uzs" + ] + } + }, + { + "if": "school:language=rmf", + "then": { + "en": "Finnish Kalo", + "eo": "finna-cigana lingvo", + "fi": "Suomen romanikieli", + "fr": "romani finlandais", + "it": "lingua kalò della Finlandia", + "pt": "Língua kalo finlandesa", + "ru": "Финский кало" + }, + "searchTerms": { + "*": [ + "rmf" + ] + } + }, + { + "if": "school:language=osa", + "then": { + "en": "Osage", + "nl": "Osage", + "ca": "osage", + "fr": "osage", + "nb_NO": "Osage", + "fi": "Osagen kieli", + "it": "lingua osage", + "ja": "オセージ語", + "ru": "Оседжи" + }, + "searchTerms": { + "*": [ + "osa" + ] + } + }, + { + "if": "school:language=cps", + "then": { + "en": "Capiznon", + "fi": "Capiznon", + "fr": "capiznon", + "ja": "カピス語", + "nl": "Capiznon", + "pt": "Língua capiznon", + "es": "idioma capizano", + "da": "kapisansk" + }, + "searchTerms": { + "*": [ + "cps" + ] + } + }, + { + "if": "school:language=pjt", + "then": { + "en": "Pitjantjatjara", + "es": "Pitjantjatjara", + "nl": "Pitjantjatjara", + "ru": "питянтятяра", + "eo": "pitjantjatjara lingvo", + "fr": "pitjantjatjara", + "gl": "Lingua pitjantjatjara", + "it": "lingua pitjantjatjara", + "ja": "ピッチャンチャジャーラ語", + "pl": "Język pitjantjatjara", + "sv": "pitjantjatjara", + "de": "Pitjantjatjara Sprache" + }, + "searchTerms": { + "*": [ + "pjt" + ] + } + }, + { + "if": "school:language=kjp", + "then": { + "en": "Eastern Pwo", + "fr": "pwo de l’Est", + "ja": "東ポー語", + "nl": "oostelijk Pwo", + "ru": "Восточный пво", + "nb_NO": "østpwo" + }, + "searchTerms": { + "*": [ + "kjp" + ] + } + }, + { + "if": "school:language=gpe", + "then": { + "en": "Ghanaian Pidgin English", + "eo": "ganaa piĝino", + "ru": "ганский пиджин английского" + }, + "searchTerms": { + "*": [ + "gpe" + ] + } + }, + { + "if": "school:language=kiu", + "then": { + "en": "Kirmanjki", + "ja": "キルマンジュキ語", + "fr": "kirmancki", + "nl": "Noord-Zaza", + "ru": "кирманский" + }, + "searchTerms": { + "*": [ + "kiu" + ] + } + }, + { + "if": "school:language=rar", + "then": { + "ca": "maori de les Illes Cook", + "de": "Rarotonganisch", + "en": "Cook Islands Maori", + "eo": "Kuk-insulara maoria lingvo", + "es": "Idioma rarotongano", + "fi": "Rarotongan kieli", + "fr": "maori des îles Cook", + "gl": "Lingua maorí das Illas Cook", + "hu": "Cook-szigeteki maori", + "ja": "ラロトンガ語", + "nb_NO": "rarotongesisk", + "nl": "Cookeilandmaori", + "pl": "język maoryski Wysp Cooka", + "pt": "Maori das Ilhas Cook", + "ru": "кукский язык", + "sv": "rarotongesiska", + "zh_Hant": "庫克羣島毛利人" + }, + "searchTerms": { + "*": [ + "rar" + ] + } + }, + { + "if": "school:language=ksw", + "then": { + "en": "S'gaw Karen", + "es": "S'gaw Karen", + "fr": "sgaw", + "ja": "スゴー語" + }, + "searchTerms": { + "*": [ + "ksw" + ] + } + }, + { + "if": "school:language=zh_Hant", + "then": { + "ca": "xinès simplificat", + "en": "Simplified Chinese", + "da": "forenklet kinesisk", + "fr": "chinois simplifié", + "ru": "упрощённый китайский", + "sv": "förenklad kinesiska", + "de": "vereinfachtes Chinesisch", + "eo": "simpligita ĉina skribsistemo", + "es": "chino simplificado", + "it": "cinese semplificato", + "ja": "簡体字中国語", + "nb_NO": "forenklet kinesisk", + "pl": "język chiński uproszczony", + "pt": "chinês simplificado", + "zh_Hans": "简体中文", + "zh_Hant": "簡體中文", + "hu": "egyszerűsített kínai", + "id": "aksara Han sederhana", + "nl": "vereenvoudigd Chinees" + }, + "searchTerms": { + "*": [ + "zh_Hant" + ] + } + }, + { + "if": "school:language=pt_BR", + "then": { + "ca": "portuguès brasiler", + "da": "brasiliansk portugisisk", + "de": "brasilianisches Portugiesisch", + "en": "Brazilian Portuguese", + "eo": "brazilportugala lingvo", + "es": "portugués brasileño", + "fi": "brasilianportugali", + "fr": "portugais brésilien", + "gl": "portugués do Brasil", + "hu": "brazíliai portugál", + "id": "Portugis Brasil", + "it": "portoghese brasiliano", + "ja": "ブラジルポルトガル語", + "nb_NO": "brasiliansk portugisisk", + "nl": "Braziliaans-Portugees", + "pl": "brazylijska odmiana języka portugalskiego", + "pt": "português brasileiro", + "pt_BR": "português brasileiro", + "ru": "бразильский вариант португальского языка", + "sv": "brasiliansk portugisiska", + "zh_Hans": "巴西葡萄牙语", + "zh_Hant": "巴西葡萄牙語" + }, + "searchTerms": { + "*": [ + "pt_BR" + ] + } + }, + { + "if": "school:language=fil", + "then": { + "de": "Filipino", + "en": "Filipino", + "fr": "Philippin", + "it": "filippino", + "da": "Filippinsk", + "eo": "filipina lingvo", + "fi": "filipino", + "hu": "filippínó", + "id": "Bahasa Filipino", + "ja": "フィリピン語", + "nb_NO": "filippinsk", + "nl": "Filipijns", + "pl": "Język filipiński", + "pt": "Língua filipina", + "pt_BR": "Língua filipina", + "ru": "филиппинский язык", + "sv": "Filipino", + "zh_Hant": "菲律賓語", + "es": "idioma filipino", + "ca": "filipí" + }, + "searchTerms": { + "*": [ + "fil" + ] + } + } + ] + } + ] +} \ No newline at end of file diff --git a/assets/layoutconfigmeta.json b/assets/layoutconfigmeta.json index 8697b9388..1af0922bd 100644 --- a/assets/layoutconfigmeta.json +++ b/assets/layoutconfigmeta.json @@ -274,15 +274,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", @@ -297,7 +290,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, write `\"source\": {\"overpassScript\": \"way[\\\"leisure\\\"=\\\"park\\\"];node(w);is_in;area._[\\\"leisure\\\"=\\\"park\\\"];(way(area)[\\\"landuse\\\"=\\\"grass\\\"]; node(w); );\", \"osmTags\": \"access=yes\"}` \nwhen you want to fetch all grass-areas in parks and which are marked as publicly accessible.", + "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" } } @@ -310,15 +303,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", @@ -370,13 +356,46 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "description": "Every source must set which tags have to be present in order to load the given layer." + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "source", + "osmTags" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "source", + "osmTags" + ], + "type": "object", + "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" }, { "path": [ @@ -394,7 +413,7 @@ "overpassScript" ], "type": "string", - "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, write `\"source\": {\"overpassScript\": \"way[\\\"leisure\\\"=\\\"park\\\"];node(w);is_in;area._[\\\"leisure\\\"=\\\"park\\\"];(way(area)[\\\"landuse\\\"=\\\"grass\\\"]; node(w); );\", \"osmTags\": \"access=yes\"}` \nwhen you want to fetch all grass-areas in parks and which are marked as publicly accessible." + "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```" }, { "path": [ @@ -404,13 +423,46 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "description": "Every source must set which tags have to be present in order to load the given layer." + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "source", + "osmTags" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "source", + "osmTags" + ], + "type": "object", + "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" }, { "path": [ @@ -534,13 +586,130 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "isShown", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "isShown", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "isShown", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "isShown", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "isShown", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "isShown", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "isShown", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -579,13 +748,48 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "isShown", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "isShown", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -751,13 +955,130 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "title", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "title", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "title", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "title", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "title", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "title", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "title", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -796,13 +1117,48 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "title", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "title", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -957,13 +1313,130 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "titleIcons", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "titleIcons", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "titleIcons", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "titleIcons", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "titleIcons", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "titleIcons", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "titleIcons", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -1002,13 +1475,48 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "titleIcons", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "titleIcons", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -1195,13 +1703,137 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -1244,13 +1876,50 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -1330,6 +1999,58 @@ "type": "array", "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" }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "if" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "if" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -1412,13 +2133,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -1465,13 +2317,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -1620,13 +2511,137 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -1669,13 +2684,50 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -1820,13 +2872,137 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -1869,13 +3045,50 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -1960,7 +3173,7 @@ "type": "string" } ], - "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." }, { "path": [ @@ -2020,13 +3233,137 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -2069,13 +3406,50 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -2228,13 +3602,137 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -2277,13 +3775,50 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -2431,13 +3966,137 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -2480,13 +4139,50 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -2631,13 +4327,137 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -2680,13 +4500,50 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -2831,13 +4688,137 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -2880,13 +4861,50 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -3035,13 +5053,137 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -3084,13 +5226,50 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -3235,13 +5414,137 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -3284,13 +5587,50 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -3435,13 +5775,137 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -3484,13 +5948,50 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -3567,7 +6068,7 @@ "mapRendering" ], "type": "object", - "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]" }, { "path": [ @@ -3670,13 +6171,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -3723,13 +6355,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -3814,6 +6485,61 @@ "type": "array", "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" }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "if" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "if" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -3903,13 +6629,151 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -3960,13 +6824,54 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -4126,13 +7031,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -4179,13 +7215,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -4341,13 +7416,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -4394,13 +7600,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -4490,7 +7735,7 @@ "type": "string" } ], - "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." }, { "path": [ @@ -4556,13 +7801,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -4609,13 +7985,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -4780,13 +8195,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -4833,13 +8379,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -4998,13 +8583,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -5051,13 +8767,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -5213,13 +8968,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -5266,13 +9152,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -5428,13 +9353,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -5481,13 +9537,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -5647,13 +9742,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -5700,13 +9926,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -5862,13 +10127,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -5915,13 +10311,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -6077,13 +10512,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -6130,13 +10696,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -6301,13 +10906,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -6354,13 +11090,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "color", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -6519,13 +11294,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -6572,13 +11478,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "width", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -6734,13 +11679,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -6787,13 +11863,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "dashArray", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -6949,13 +12064,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -7002,13 +12248,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "lineCap", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -7168,13 +12453,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -7221,13 +12637,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fill", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -7383,13 +12838,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -7436,13 +13022,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "fillColor", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -7598,13 +13223,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -7651,13 +13407,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "offset", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -7833,13 +13628,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -7886,13 +13812,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "icon", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -7977,6 +13942,61 @@ "type": "array", "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" }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "if" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "if" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -8066,13 +14086,151 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -8123,13 +14281,54 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconBadges", + "then", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -8289,13 +14488,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -8342,13 +14672,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "iconSize", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -8504,13 +14873,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -8557,13 +15057,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "rotation", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -8653,7 +15192,7 @@ "type": "string" } ], - "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." }, { "path": [ @@ -8719,13 +15258,144 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -8772,13 +15442,52 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "mapRendering", + "renderings", + "label", + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ @@ -9023,7 +15732,17 @@ "type": "object", "properties": { "builtin": { - "type": "string" + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] }, "override": {} }, @@ -9143,6 +15862,58 @@ "type": "array", "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes" }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "if" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "if" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -9217,7 +15988,12 @@ ], "type": [ { - "$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": [ @@ -9228,6 +16004,125 @@ ], "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}" }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "hideInAnswer" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "hideInAnswer", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "hideInAnswer", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "hideInAnswer" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "hideInAnswer", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "hideInAnswer", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "hideInAnswer", + "or" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -9237,7 +16132,12 @@ ], "type": [ { - "$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" @@ -9245,6 +16145,125 @@ ], "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`" }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "ifnot" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "ifnot", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "ifnot", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "ifnot" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "ifnot", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "ifnot", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "ifnot", + "or" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -9255,6 +16274,147 @@ "type": "array", "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer" }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "priorityIf" + ], + "type": [ + { + "$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" + } + ], + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "priorityIf" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "priorityIf", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "priorityIf", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "priorityIf" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "priorityIf", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "priorityIf", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "priorityIf", + "or" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -9299,13 +16459,130 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "tagRenderings", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -9313,7 +16590,7 @@ "tagRenderings" ], "type": "object", - "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]" }, { "path": [ @@ -9428,6 +16705,61 @@ "type": "array", "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes" }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "if" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "if" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -9507,7 +16839,12 @@ ], "type": [ { - "$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": [ @@ -9518,6 +16855,132 @@ ], "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}" }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "hideInAnswer" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "hideInAnswer", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "hideInAnswer", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "hideInAnswer" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "hideInAnswer", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "hideInAnswer", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "hideInAnswer", + "or" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -9528,7 +16991,12 @@ ], "type": [ { - "$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" @@ -9536,6 +17004,132 @@ ], "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`" }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "ifnot" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "ifnot", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "ifnot", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "ifnot" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "ifnot", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "ifnot", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "ifnot", + "or" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -9547,6 +17141,155 @@ "type": "array", "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer" }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "priorityIf" + ], + "type": [ + { + "$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" + } + ], + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "priorityIf" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "priorityIf", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "priorityIf", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "priorityIf" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "priorityIf", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "priorityIf", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "priorityIf", + "or" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -9596,13 +17339,137 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -9648,6 +17515,147 @@ "type": "array", "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." }, + { + "path": [ + "layers", + "filter", + "options", + "osmTags" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "filter", + "options", + "osmTags" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "filter", + "options", + "osmTags", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "filter", + "options", + "osmTags", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "filter", + "options", + "osmTags" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "filter", + "options", + "osmTags", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "filter", + "options", + "osmTags", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "filter", + "options", + "osmTags", + "or" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -9711,6 +17719,58 @@ "type": "array", "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!" }, + { + "path": [ + "layers", + "deletion", + "nonDeleteMappings", + "if" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "deletion", + "nonDeleteMappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "deletion", + "nonDeleteMappings", + "if" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -9728,7 +17788,12 @@ ], "type": [ { - "$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" @@ -9736,6 +17801,118 @@ ], "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```" }, + { + "path": [ + "layers", + "deletion", + "softDeletionTags" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "deletion", + "softDeletionTags", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "deletion", + "softDeletionTags", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "deletion", + "softDeletionTags" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "deletion", + "softDeletionTags", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "layers", + "deletion", + "softDeletionTags", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "layers", + "deletion", + "softDeletionTags", + "or" + ], + "type": "object", + "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" + }, { "path": [ "layers", @@ -9895,7 +18072,7 @@ "syncSelection" ], "type": "string", - "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" }, { "path": [ diff --git a/assets/questionabletagrenderingconfigmeta.json b/assets/questionabletagrenderingconfigmeta.json index e758d38eb..0d2bb4760 100644 --- a/assets/questionabletagrenderingconfigmeta.json +++ b/assets/questionabletagrenderingconfigmeta.json @@ -78,6 +78,52 @@ "type": "array", "description": "Allows fixed-tag inputs, shown either as radiobuttons or as checkboxes" }, + { + "path": [ + "mappings", + "if" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "if" + ], + "type": "object", + "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" + }, { "path": [ "mappings", @@ -142,7 +188,12 @@ ], "type": [ { - "$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": [ @@ -153,6 +204,111 @@ ], "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}" }, + { + "path": [ + "mappings", + "hideInAnswer" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "hideInAnswer", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "mappings", + "hideInAnswer", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "hideInAnswer" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "hideInAnswer", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "mappings", + "hideInAnswer", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "hideInAnswer", + "or" + ], + "type": "object", + "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" + }, { "path": [ "mappings", @@ -160,7 +316,12 @@ ], "type": [ { - "$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" @@ -168,6 +329,111 @@ ], "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`" }, + { + "path": [ + "mappings", + "ifnot" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "ifnot", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "mappings", + "ifnot", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "ifnot" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "ifnot", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "mappings", + "ifnot", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "ifnot", + "or" + ], + "type": "object", + "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" + }, { "path": [ "mappings", @@ -176,6 +442,131 @@ "type": "array", "description": "If chosen as answer, these tags will be applied as well onto the object.\nNot compatible with multiAnswer" }, + { + "path": [ + "mappings", + "priorityIf" + ], + "type": [ + { + "$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" + } + ], + "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" + }, + { + "path": [ + "mappings", + "priorityIf" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "priorityIf", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "mappings", + "priorityIf", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "priorityIf" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "priorityIf", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "mappings", + "priorityIf", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "priorityIf", + "or" + ], + "type": "object", + "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" + }, { "path": [ "id" @@ -210,12 +601,115 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "condition", + "or" + ], + "type": "object", + "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" } ] \ No newline at end of file diff --git a/assets/tagrenderingconfigmeta.json b/assets/tagrenderingconfigmeta.json index 39d6b790b..dfe933ee0 100644 --- a/assets/tagrenderingconfigmeta.json +++ b/assets/tagrenderingconfigmeta.json @@ -38,13 +38,116 @@ ], "type": [ { - "$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" } ], - "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```" + }, + { + "path": [ + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "condition", + "and" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "condition", + "and" + ], + "type": "object", + "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" + }, + { + "path": [ + "condition" + ], + "type": "object", + "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" + }, + { + "path": [ + "condition", + "or" + ], + "type": [ + { + "$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" + } + ], + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "condition", + "or" + ], + "type": "object", + "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" + }, + { + "path": [ + "condition", + "or" + ], + "type": "object", + "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" }, { "path": [ @@ -75,13 +178,44 @@ ], "type": [ { - "$ref": "#/definitions/AndOrTagConfigJson" + "$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" } ], - "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}'}" + "description": "The main representation of Tags.\nSee https://github.com/pietervdvn/MapComplete/blob/develop/Docs/Tags_format.md for more documentation" + }, + { + "path": [ + "mappings", + "if" + ], + "type": "object", + "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" + }, + { + "path": [ + "mappings", + "if" + ], + "type": "object", + "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" }, { "path": [ diff --git a/assets/themes/buurtnatuur/buurtnatuur.json b/assets/themes/buurtnatuur/buurtnatuur.json index b9c9bba16..0527a4e39 100644 --- a/assets/themes/buurtnatuur/buurtnatuur.json +++ b/assets/themes/buurtnatuur/buurtnatuur.json @@ -34,7 +34,9 @@ "osmTags": { "or": [ "leisure=nature_reserve", - "boundary=protected_area" + { + "and": ["boundary=protected_area","protect_class!=22"] + } ] } }, @@ -149,15 +151,7 @@ "_overlapWithUpperLayers=Math.max(...feat.overlapWith('nature_reserve_buurtnatuur').map(o => o.overlap))/feat.area", "_tooMuchOverlap=Number(feat.properties._overlapWithUpperLayers) > 0.1 ? 'yes' :'no'" ], - "isShown": { - "render": "yes", - "mappings": [ - { - "if": "_tooMuchOverlap=yes", - "then": "no" - } - ] - }, + "isShown": "_tooMuchOverlap!=yes", "title": { "render": { "nl": "Park" @@ -257,15 +251,7 @@ "_overlapWithUpperLayers=Math.max(...feat.overlapWith('parks','nature_reserve_buurtnatuur').map(o => o.overlap))/feat.area", "_tooMuchOverlap=Number(feat.properties._overlapWithUpperLayers) > 0.1 ? 'yes' : 'no'" ], - "isShown": { - "render": "yes", - "mappings": [ - { - "if": "_tooMuchOverlap=yes", - "then": "no" - } - ] - }, + "isShown": "_tooMuchOverlap!=yes", "title": { "render": { "nl": "Bos" diff --git a/assets/themes/cyclestreets/cyclestreets.json b/assets/themes/cyclestreets/cyclestreets.json index 92bdc2cea..4218b0d1f 100644 --- a/assets/themes/cyclestreets/cyclestreets.json +++ b/assets/themes/cyclestreets/cyclestreets.json @@ -73,15 +73,7 @@ ] } }, - "isShown": { - "render": "yes", - "mappings": [ - { - "if": "id!~way/.*", - "then": "no" - } - ] - }, + "isShown": "id~way/.*", "description": { "nl": "Een fietsstraat is een straat waar gemotoriseerd verkeer een fietser niet mag inhalen", "en": "A cyclestreet is a street where motorized traffic is not allowed to overtake a cyclist", diff --git a/assets/themes/grb_import/grb.json b/assets/themes/grb_import/grb.json index 9c8153a66..d0581433e 100644 --- a/assets/themes/grb_import/grb.json +++ b/assets/themes/grb_import/grb.json @@ -630,18 +630,10 @@ } } ], - "isShown": { - "render": "yes", - "mappings": [ - { - "if": { - "and": [ - "_imported_osm_object_found=true", - "_imported_osm_still_fresh=true" - ] - }, - "then": "no" - } + "isShown":{ + "or": [ + "_imported_osm_object_found!=true", + "_imported_osm_still_fresh!=true" ] }, "mapRendering": [ diff --git a/assets/themes/postal_codes/postal_codes.json b/assets/themes/postal_codes/postal_codes.json index dfbbd1722..3315e0dc4 100644 --- a/assets/themes/postal_codes/postal_codes.json +++ b/assets/themes/postal_codes/postal_codes.json @@ -117,15 +117,7 @@ "dashArray": "8 8" } ], - "isShown": { - "render": "yes", - "mappings": [ - { - "if": "_country!=be", - "then": "no" - } - ] - } + "isShown": "_country=be" }, { "id": "wrong_postal_code", @@ -196,15 +188,7 @@ ] } ], - "isShown": { - "render": "yes", - "mappings": [ - { - "if": "_country!=be", - "then": "no" - } - ] - } + "isShown": "_country=be" } ] } \ No newline at end of file diff --git a/assets/themes/speelplekken/speelplekken.json b/assets/themes/speelplekken/speelplekken.json index c4ff417d2..9b0b1825e 100644 --- a/assets/themes/speelplekken/speelplekken.json +++ b/assets/themes/speelplekken/speelplekken.json @@ -288,14 +288,6 @@ "then": "./assets/themes/speelplekken/youtube.svg" } ], - "isShown": { - "render": "yes", - "mappings": [ - { - "if": "_is_shadowed=yes", - "then": "no" - } - ] - } + "isShown":"_is_shadowed!=yes" } } \ No newline at end of file diff --git a/centerpoints.geojson b/centerpoints.geojson new file mode 100644 index 000000000..b491a50d6 --- /dev/null +++ b/centerpoints.geojson @@ -0,0 +1,528736 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Binnette", + "uid": "918586", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-31T18:29:30Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 7.4202199997605e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93348440, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.759262, + 45.185286649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Harvesterify", + "uid": "6060820", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-31T16:35:45Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93344361, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0865699, + 48.6426475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Harvesterify", + "uid": "6060820", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-31T16:28:26Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00116163701214004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93344041, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07808085, + 48.673910899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Harvesterify", + "uid": "6060820", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-31T16:24:53Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.0000878865202200034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93343913, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07069945, + 48.704444800000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sukkoria", + "uid": "3083013", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-31T11:45:47Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93334680, + "theme": "artworks", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1711141, + 48.6832294 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pyrog", + "uid": "270456", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-31T11:44:21Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93334615, + "theme": "aed", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7395233, + 45.1987047 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tykayn", + "uid": "2962129", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-31T11:35:53Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93334256, + "theme": "aed", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1267381, + 48.6193089 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tykayn", + "uid": "2962129", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-31T11:33:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.23963300001441e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93334153, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12790385, + 48.62971065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-30T15:16:27Z", + "reviewed_features": [], + "create": 7, + "modify": 28, + "delete": 0, + "area": 0.000277384340559974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93298136, + "theme": "benches", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7847118, + 48.09833089999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-29T13:37:23Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 6.58152000017894e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93239558, + "theme": "artworks", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70437875, + 51.0508215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-29T07:21:41Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 4.2221309999643e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93219317, + "theme": "benches", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.78186465, + 48.107753450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-27T18:36:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93138222, + "theme": "fritures", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7040531, + 51.0499375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Obny", + "uid": "292353", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-27T09:19:49Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93108212, + "theme": "personal", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1768913, + 49.1089488 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8049513657", + "osm_id": 8049513657, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "juminet", + "uid": "812669", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-27T07:34:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93101275, + "theme": "maps", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5971909, + 49.8174408 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LKemel", + "uid": "12061228", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-26T20:55:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000140456928599917, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93080334, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7419989000000005, + 50.87586205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Anakil", + "uid": "3401173", + "editor": "MapComplete 0.1.1b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-26T19:43:25Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0838751093397392, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93077975, + "theme": "charging_stations", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48812725, + 50.5920481 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8047925340", + "osm_id": 8047925340, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8047938276", + "osm_id": 8047938276, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8047977593", + "osm_id": 8047977593, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8047987191", + "osm_id": 8047987191, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8047981838", + "osm_id": 8047981838, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8047977431", + "osm_id": 8047977431, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8047994305", + "osm_id": 8047994305, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8048034801", + "osm_id": 8048034801, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8048020701", + "osm_id": 8048020701, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "cristobalgarcia", + "uid": "12003698", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #arbres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-26T17:17:45Z", + "reviewed_features": [], + "create": 26, + "modify": 0, + "delete": 0, + "area": 0.00000854821561998096, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93072877, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21710055, + 41.4408605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Claudia De Pus", + "uid": "10236139", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-26T17:09:33Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 2.5688700000477e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93072573, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7149547, + 51.07543105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SBR-Vaterstetten", + "uid": "12060251", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-26T16:48:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93071742, + "theme": "benches", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7871933, + 48.1047027 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "anieto", + "uid": "2970616", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #dalemasvelocidad", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-25T21:43:20Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000228934173000102, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93030151, + "theme": "dalemasvelocidad", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.548457299999999, + 42.87279665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.1.1b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-25T20:08:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93028022, + "theme": "aed", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3951992, + 51.0371826 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "milenasonneveld", + "uid": "8177639", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #klimbomen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-25T11:35:31Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93013547, + "theme": "klimbomen", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5640147, + 50.8841722 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-24T22:20:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93001764, + "theme": "aed", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3943006, + 51.0400464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-24T22:18:12Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93001720, + "theme": "aed", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3943006, + 51.0400464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-24T15:04:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000413848433879895, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92991026, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33795035, + 51.076168800000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-24T14:55:49Z", + "reviewed_features": [], + "create": 4, + "modify": 11, + "delete": 0, + "area": 0.0000459958579700094, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92990737, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.79369185, + 48.097130050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-24T13:17:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000413848433879895, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92988162, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33795035, + 51.076168800000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-24T13:17:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000413848433879895, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92988161, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33795035, + 51.076168800000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Océane Sch", + "uid": "12049394", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-24T12:22:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92986777, + "theme": "cyclofix", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4028605, + 50.8211128 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-24T10:59:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92984809, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2581117, + 50.7507305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-24T09:38:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92982905, + "theme": "charging_stations", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2532747, + 50.7435566 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Anakil", + "uid": "3401173", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-23T22:11:54Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0227105480427505, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92973349, + "theme": "charging_stations", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67903065, + 50.65027585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-23T19:11:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92967046, + "theme": "charging_stations", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3954021, + 51.0350253 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-23T14:50:40Z", + "reviewed_features": [], + "create": 4, + "modify": 20, + "delete": 0, + "area": 0.0000626599010099837, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92956134, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.779320349999999, + 48.10342985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-23T12:44:13Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.0000330061509000044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92950532, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.78533, + 48.10870805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s8evq", + "uid": "3710738", + "editor": "MapComplete 0.1.0g", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-23T09:39:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92941745, + "theme": "fritures", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4429967, + 51.0831965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sullie", + "uid": "1703525", + "editor": "MapComplete 0.1.0g", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-22T16:38:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92909378, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4125638, + 52.539718 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Emanuel Ramoudt", + "uid": "10186331", + "editor": "MapComplete 0.1.0g", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-22T09:34:29Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.000136085870550014, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92883743, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73166095, + 51.05427475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-21T09:10:00Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000387511605900059, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92818838, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.070483599999999, + 51.160963949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.1.0g", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-20T15:28:25Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000249738097000061, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92777556, + "theme": "benches", + "language": "de", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.79838275, + 48.10463905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-20T15:09:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000329269167919931, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92776734, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9762062, + 51.20358645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8024991201", + "osm_id": 8024991201, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "shop": "brass_instruments" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0g", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-20T10:55:11Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0000100849309800009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92762566, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7022816, + 51.05223775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Obsi", + "uid": "21602", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-19T03:34:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000752441087999972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92675350, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 25.0859802, + 60.2797489 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #wiki:MapComplete/Fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-19T00:26:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92672486, + "theme": "fritures", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7115416, + 51.0506061 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #wiki:MapComplete/Fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-19T00:23:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92672464, + "theme": "fritures", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6996553, + 51.0521448 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-18T12:46:11Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92655740, + "theme": "benches", + "language": "de", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7859085, + 48.1056387 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-18T12:32:41Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 9.03735000014275e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92655413, + "theme": "toilets", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14243825, + 51.18890745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-18T12:29:47Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000127739203200302, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92655353, + "theme": "fietsstraten", + "language": "nl", + "theme-creator": "MapComlete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1399086, + 51.18977525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-18T12:22:22Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92655156, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.133783, + 51.1875413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-6085909041", + "name": "TNuts", + "osm_id": 6085909041, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "shop": "nuts" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #wiki:MapComplete/covid", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-18T00:14:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92644570, + "theme": "wiki:mapcomplete/covid", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2170021, + 51.2143766 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-17T13:40:44Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000400669025540024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92629048, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10347125, + 51.1470733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-17T13:19:15Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.0000770689662400084, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92628414, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1547396, + 51.165316399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-17T12:22:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000624344632999488, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92626634, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15972675, + 51.171563649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-17T12:18:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000624344632999488, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92626511, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15972675, + 51.171563649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944492684", + "osm_id": 3944492684, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964894", + "osm_id": 3946964894, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Fernando2", + "uid": "12003724", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #arbres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-17T10:55:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000176758550000406, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92623504, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2208829999999997, + 41.438457150000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jordi L", + "uid": "3016696", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #arbres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-17T10:40:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92623044, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2188802, + 41.437956 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944730996", + "osm_id": 3944730996, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964707", + "osm_id": 3946964707, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944730922", + "osm_id": 3944730922, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964731", + "osm_id": 3946964731, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.1.0e", + "comment": "Adding data with #MapComplete for theme #arbres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-17T10:19:09Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000403114408199751, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92622358, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2190094, + 41.43640415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0d", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-16T23:59:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92608270, + "theme": "bookcases", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.206361, + 51.2163913 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8013974586", + "osm_id": 8013974586, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.1.0d", + "comment": "Adding data with #MapComplete for theme #arbres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-16T16:21:42Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.94980000031376e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92594805, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1933469, + 41.41613435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.1.0d", + "comment": "Adding data with #MapComplete for theme #arbres", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-16T15:01:39Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.40851400006402e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92591880, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7130813, + 41.22030255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.1.0d", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-14T15:11:26Z", + "reviewed_features": [], + "create": 6, + "modify": 21, + "delete": 0, + "area": 0.000223330498250032, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92480675, + "theme": "boomgaarden", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26368905, + 50.98595975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.1.0c", + "comment": "Adding data with #MapComplete for theme #skateparks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-14T06:13:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92451359, + "theme": "skateparks", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4181561, + 50.7982014 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.1.0c", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-14T06:07:16Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.0784781618812804, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92451054, + "theme": "fietsstraten", + "language": "nl", + "theme-creator": "MapComlete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5623467, + 50.94651075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "14im", + "uid": "10954515", + "editor": "MapComplete 0.1.0c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-13T17:51:02Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92432289, + "theme": "aed", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.2016446, + 48.0022815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ielham", + "uid": "462218", + "editor": "MapComplete 0.1.0c", + "comment": "Adding data with #MapComplete for theme #restaurants", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-13T16:28:02Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 4.73447081135268, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92428732, + "theme": "restaurants", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.3008633, + 39.11420510000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ielham", + "uid": "462218", + "editor": "MapComplete 0.1.0c", + "comment": "Adding data with #MapComplete for theme #crossingtime", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-13T16:26:00Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.33182919999025e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92428636, + "theme": "crossingtime", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.9294999, + 37.26761825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Meanderr", + "uid": "8554284", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #mcac_cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-12T16:24:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000139323748199893, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92365914, + "theme": "mcac_cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.61521965, + 43.5789537 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-12T15:52:45Z", + "reviewed_features": [], + "create": 1, + "modify": 14, + "delete": 0, + "area": 3.96499999970068e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92364775, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70860665, + 51.037157199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-12T15:33:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92364006, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7158123, + 51.0341047 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0d", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-11T22:48:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92315583, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37889, + 50.843518 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Binnette", + "uid": "918586", + "editor": "MapComplete 0.1.0c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-11T21:30:41Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92314448, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8537107, + 45.2404562 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "C4ptainCrunch", + "uid": "548079", + "editor": "MapComplete 0.1.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-11T20:58:09Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000960977344859852, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92313828, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4011558, + 50.813350549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-11T15:13:31Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92304842, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.194865, + 51.1959226 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0c", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-11T11:32:09Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.50450200015199e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92298874, + "theme": "artworks", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2059049, + 51.20344485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0c", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-10T15:26:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.84688000040927e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92279052, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27473285, + 51.2528534 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-10T13:08:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92275261, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.177915, + 51.2000113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-09T20:21:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.56926800000334e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92254992, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2353486, + 51.2255923 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-09T18:08:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.53183799993044e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92250660, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22712585, + 51.2097536 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-09T16:30:22Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92247398, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1956675, + 51.2122374 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.9a", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-08T09:08:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000188852424519935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92161174, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2459453499999995, + 50.7119531 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JakkeG", + "uid": "6200676", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-06T12:29:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000237984219299966, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92049987, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74009095, + 51.07987495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tom V d Borne", + "uid": "11712922", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-06T12:25:03Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00002401326915, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92049678, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42444745, + 51.258227950000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-06T07:23:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.56926800000334e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92026826, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2353486, + 51.2255923 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Theo Van Cutsem", + "uid": "11832752", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-06T06:09:39Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000846339807830166, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92021465, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62886185, + 50.88363855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rob Noort", + "uid": "5817148", + "editor": "MapComplete 0.0.9a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-05T17:54:41Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.00080858626809, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 92001085, + "theme": "fietsstraten", + "language": "nl", + "theme-creator": "MapComlete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22098965, + 50.90495455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "lucdebuyst", + "uid": "11927593", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-05T09:35:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000450020087999869, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91974181, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2488226, + 51.152801 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ielham", + "uid": "462218", + "editor": "MapComplete 0.0.9a", + "comment": "Adding data with #MapComplete for theme #crossingtime", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-04T17:14:45Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.0000911080691399884, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91940593, + "theme": "crossingtime", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.9348396, + 37.266262350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "milenasonneveld", + "uid": "8177639", + "editor": "MapComplete 0.0.9a", + "comment": "Adding data with #MapComplete for theme #klimbomen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-04T15:37:09Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91937284, + "theme": "klimbomen", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4446135, + 51.3793682 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "lucdebuyst", + "uid": "11927593", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-04T15:24:08Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00303294795834013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91936823, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2435182, + 51.11979985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ielham", + "uid": "462218", + "editor": "MapComplete 0.0.9a", + "comment": "Adding data with #MapComplete for theme #crossingtime", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-04T11:13:51Z", + "reviewed_features": [], + "create": 0, + "modify": 54, + "delete": 0, + "area": 0.000142124486480029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91928820, + "theme": "crossingtime", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.93795245, + 37.270103399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.9a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-03T13:10:03Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91901760, + "theme": "artworks", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.236458, + 51.2081994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.9a", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-03T09:59:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91896505, + "theme": "maps", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4209376, + 50.8180287 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.9a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-03T09:56:22Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91896414, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.421238, + 50.8178556 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.9a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-10-02T15:42:21Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91873200, + "theme": "artworks", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2321611, + 51.209337 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.9a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-01T10:34:47Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91820037, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1238829, + 51.1675162 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Obny", + "uid": "292353", + "editor": "MapComplete 0.0.9a", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-01T09:58:51Z", + "reviewed_features": [], + "create": 1, + "modify": 13, + "delete": 0, + "area": 0.000846463939159945, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91817612, + "theme": "personal", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39341035, + 48.8163361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Obny", + "uid": "292353", + "editor": "MapComplete 0.0.9a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-10-01T09:37:09Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000136190110319907, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91816014, + "theme": "cyclofix", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3981876, + 48.8207165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "frederikjhg", + "uid": "1653240", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-30T22:36:45Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95071485, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3302333, + 50.6199238 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vansil", + "uid": "930406", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-30T12:27:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95044929, + "theme": "ghostbikes", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0097427, + 49.2294722 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-30T08:01:28Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95026219, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1550529, + 51.150891 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-29T16:41:52Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 4.72529599998688e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94990757, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.35343835, + -33.640591900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-29T15:11:04Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000410822940559849, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94987265, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.3471081, + -33.66088305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-29T05:16:20Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94969449, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6644019, + -33.4441381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-29T00:56:06Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 5.70437999998473e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94964190, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.02957555, + 14.6048483 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944497990", + "osm_id": 3944497990, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944500613", + "osm_id": 3944500613, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498000", + "osm_id": 3944498000, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944496438", + "osm_id": 3944496438, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944496053", + "osm_id": 3944496053, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498857", + "osm_id": 3944498857, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944499440", + "osm_id": 3944499440, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944500197", + "osm_id": 3944500197, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944496924", + "osm_id": 3944496924, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944500216", + "osm_id": 3944500216, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944499796", + "osm_id": 3944499796, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944499450", + "osm_id": 3944499450, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944497275", + "osm_id": 3944497275, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174214928", + "osm_id": 8174214928, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174215257", + "osm_id": 8174215257, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944493484", + "osm_id": 3944493484, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492729", + "osm_id": 3944492729, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944493464", + "osm_id": 3944493464, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944496035", + "osm_id": 3944496035, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944495027", + "osm_id": 3944495027, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492669", + "osm_id": 3944492669, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944494968", + "osm_id": 3944494968, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944496378", + "osm_id": 3944496378, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944494196", + "osm_id": 3944494196, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944494201", + "osm_id": 3944494201, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492686", + "osm_id": 3944492686, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944495037", + "osm_id": 3944495037, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944495514", + "osm_id": 3944495514, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492711", + "osm_id": 3944492711, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944493553", + "osm_id": 3944493553, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944495526", + "osm_id": 3944495526, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174220287", + "osm_id": 8174220287, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174241297", + "osm_id": 8174241297, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944495481", + "osm_id": 3944495481, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944494238", + "osm_id": 3944494238, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944495467", + "osm_id": 3944495467, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492756", + "osm_id": 3944492756, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174243004", + "osm_id": 8174243004, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492675", + "osm_id": 3944492675, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944493504", + "osm_id": 3944493504, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492735", + "osm_id": 3944492735, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944494198", + "osm_id": 3944494198, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944494983", + "osm_id": 3944494983, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174252906", + "osm_id": 8174252906, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492710", + "osm_id": 3944492710, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944490945", + "osm_id": 3944490945, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492723", + "osm_id": 3944492723, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944734064", + "osm_id": 3944734064, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174244725", + "osm_id": 8174244725, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174262320", + "osm_id": 8174262320, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492709", + "osm_id": 3944492709, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492683", + "osm_id": 3944492683, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174224962", + "osm_id": 8174224962, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944490879", + "osm_id": 3944490879, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492657", + "osm_id": 3944492657, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492714", + "osm_id": 3944492714, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492726", + "osm_id": 3944492726, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944494178", + "osm_id": 3944494178, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174266499", + "osm_id": 8174266499, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944494229", + "osm_id": 3944494229, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492695", + "osm_id": 3944492695, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174263480", + "osm_id": 8174263480, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174273553", + "osm_id": 8174273553, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944490892", + "osm_id": 3944490892, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944734151", + "osm_id": 3944734151, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174254801", + "osm_id": 8174254801, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174280270", + "osm_id": 8174280270, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944490874", + "osm_id": 3944490874, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492741", + "osm_id": 3944492741, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944734000", + "osm_id": 3944734000, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174255394", + "osm_id": 8174255394, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944490872", + "osm_id": 3944490872, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944734117", + "osm_id": 3944734117, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174216687", + "osm_id": 8174216687, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174275869", + "osm_id": 8174275869, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492752", + "osm_id": 3944492752, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944734358", + "osm_id": 3944734358, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174279061", + "osm_id": 8174279061, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944490933", + "osm_id": 3944490933, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174280271", + "osm_id": 8174280271, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8174287914", + "osm_id": 8174287914, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "cristobalgarcia", + "uid": "12003698", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-28T17:44:33Z", + "reviewed_features": [], + "create": 33, + "modify": 64, + "delete": 0, + "area": 0.0000214504831999696, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94954013, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21668, + 41.4387777 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8173491378", + "osm_id": 8173491378, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8173493626", + "osm_id": 8173493626, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "@albarosado", + "uid": "3875250", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-28T11:58:43Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.0000012754005799995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94940524, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2222973, + 41.43827565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944494248", + "osm_id": 3944494248, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944494241", + "osm_id": 3944494241, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944495535", + "osm_id": 3944495535, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962234", + "osm_id": 3946962234, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944493503", + "osm_id": 3944493503, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962913", + "osm_id": 3946962913, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944734368", + "osm_id": 3944734368, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944734129", + "osm_id": 3944734129, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732874", + "osm_id": 3944732874, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732920", + "osm_id": 3944732920, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946997664", + "osm_id": 3946997664, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732506", + "osm_id": 3944732506, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732277", + "osm_id": 3944732277, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732944", + "osm_id": 3944732944, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732449", + "osm_id": 3944732449, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733266", + "osm_id": 3944733266, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732925", + "osm_id": 3944732925, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946963489", + "osm_id": 3946963489, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946997128", + "osm_id": 3946997128, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731967", + "osm_id": 3944731967, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-6010958532", + "osm_id": 6010958532, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731791", + "osm_id": 3944731791, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946963458", + "osm_id": 3946963458, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731399", + "osm_id": 3944731399, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732525", + "osm_id": 3944732525, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731847", + "osm_id": 3944731847, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731388", + "osm_id": 3944731388, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731421", + "osm_id": 3944731421, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731366", + "osm_id": 3944731366, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731959", + "osm_id": 3944731959, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733104", + "osm_id": 3944733104, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608453", + "osm_id": 7182608453, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731453", + "osm_id": 3944731453, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733164", + "osm_id": 3944733164, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731350", + "osm_id": 3944731350, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733126", + "osm_id": 3944733126, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733182", + "osm_id": 3944733182, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608450", + "osm_id": 7182608450, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732937", + "osm_id": 3944732937, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733121", + "osm_id": 3944733121, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962929", + "osm_id": 3946962929, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946999757", + "osm_id": 3946999757, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732739", + "osm_id": 3944732739, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733111", + "osm_id": 3944733111, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962488", + "osm_id": 3946962488, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962245", + "osm_id": 3946962245, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962942", + "osm_id": 3946962942, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964208", + "osm_id": 3946964208, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964218", + "osm_id": 3946964218, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946963461", + "osm_id": 3946963461, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964186", + "osm_id": 3946964186, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964212", + "osm_id": 3946964212, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964224", + "osm_id": 3946964224, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964488", + "osm_id": 3946964488, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964509", + "osm_id": 3946964509, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964227", + "osm_id": 3946964227, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965452", + "osm_id": 3946965452, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965500", + "osm_id": 3946965500, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965511", + "osm_id": 3946965511, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965481", + "osm_id": 3946965481, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965455", + "osm_id": 3946965455, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965593", + "osm_id": 3946965593, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "@albarosado", + "uid": "3875250", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-28T11:14:53Z", + "reviewed_features": [], + "create": 0, + "modify": 101, + "delete": 0, + "area": 0.000056673561999977, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94938881, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2182836000000004, + 41.43746245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8173474475", + "osm_id": 8173474475, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "@albarosado", + "uid": "3875250", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-28T11:13:39Z", + "reviewed_features": [], + "create": 6, + "modify": 1, + "delete": 0, + "area": 0.00000203734129999222, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94938851, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2215094, + 41.43825205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944732034", + "osm_id": 3944732034, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731418", + "osm_id": 3944731418, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731456", + "osm_id": 3944731456, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "@albarosado", + "uid": "3875250", + "editor": "MapComplete 0.2.2g", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-27T18:14:29Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 4.37480800002636e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94909480, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21587, + 41.4347127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944730939", + "osm_id": 3944730939, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944730959", + "osm_id": 3944730959, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "@albarosado", + "uid": "3875250", + "editor": "MapComplete 0.2.2g", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-27T18:10:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.27448000014107e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94909391, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2153596, + 41.4337394 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8171453170", + "osm_id": 8171453170, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "@albarosado", + "uid": "3875250", + "editor": "MapComplete 0.2.2g", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-27T17:56:02Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 5.75674649999226e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94908940, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2185966500000003, + 41.43849335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8171411765", + "osm_id": 8171411765, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "@albarosado", + "uid": "3875250", + "editor": "MapComplete 0.2.2g", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-27T17:56:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94908939, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2184618, + 41.4374261 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944731052", + "osm_id": 3944731052, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731352", + "osm_id": 3944731352, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.2.2g", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-27T17:47:33Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000100203284000103, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94908676, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21599245, + 41.4344983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944498897", + "osm_id": 3944498897, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944499441", + "osm_id": 3944499441, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498932", + "osm_id": 3944498932, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944499361", + "osm_id": 3944499361, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498902", + "osm_id": 3944498902, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944497288", + "osm_id": 3944497288, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944490880", + "osm_id": 3944490880, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944734124", + "osm_id": 3944734124, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "cristobalgarcia", + "uid": "12003698", + "editor": "MapComplete 0.2.2g", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-27T17:30:54Z", + "reviewed_features": [], + "create": 6, + "modify": 28, + "delete": 0, + "area": 0.0000090955346500179, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94908194, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21531305, + 41.43866505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoschi", + "uid": "231006", + "editor": "MapComplete 0.2.2g", + "comment": "Adding data with #MapComplete for theme #openinghourscovid19", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-27T17:22:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94907892, + "theme": "openinghourscovid19", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8498808, + 47.9886388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.2g", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-27T15:44:03Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000629821271200154, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94904697, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7097651000000003, + 51.0301922 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944501162", + "osm_id": 3944501162, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498055", + "osm_id": 3944498055, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498914", + "osm_id": 3944498914, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965342", + "osm_id": 3946965342, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498871", + "osm_id": 3944498871, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498956", + "osm_id": 3944498956, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944497333", + "osm_id": 3944497333, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964692", + "osm_id": 3946964692, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964738", + "osm_id": 3946964738, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944497318", + "osm_id": 3944497318, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498001", + "osm_id": 3944498001, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964605", + "osm_id": 3946964605, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965294", + "osm_id": 3946965294, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964527", + "osm_id": 3946964527, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965080", + "osm_id": 3946965080, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965031", + "osm_id": 3946965031, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965156", + "osm_id": 3946965156, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498920", + "osm_id": 3944498920, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964916", + "osm_id": 3946964916, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964645", + "osm_id": 3946964645, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944497984", + "osm_id": 3944497984, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732149", + "osm_id": 3944732149, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732903", + "osm_id": 3944732903, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732262", + "osm_id": 3944732262, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732933", + "osm_id": 3944732933, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732901", + "osm_id": 3944732901, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733065", + "osm_id": 3944733065, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733080", + "osm_id": 3944733080, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944734141", + "osm_id": 3944734141, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732665", + "osm_id": 3944732665, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732540", + "osm_id": 3944732540, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733058", + "osm_id": 3944733058, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733066", + "osm_id": 3944733066, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733075", + "osm_id": 3944733075, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733259", + "osm_id": 3944733259, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732891", + "osm_id": 3944732891, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732898", + "osm_id": 3944732898, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732918", + "osm_id": 3944732918, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733174", + "osm_id": 3944733174, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733207", + "osm_id": 3944733207, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733221", + "osm_id": 3944733221, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732139", + "osm_id": 3944732139, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733238", + "osm_id": 3944733238, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732730", + "osm_id": 3944732730, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732890", + "osm_id": 3944732890, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732892", + "osm_id": 3944732892, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733268", + "osm_id": 3944733268, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733072", + "osm_id": 3944733072, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "@albarosado", + "uid": "3875250", + "editor": "MapComplete 0.2.2g", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-27T15:15:04Z", + "reviewed_features": [], + "create": 0, + "modify": 49, + "delete": 0, + "area": 0.0000311351367899972, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94903388, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21853055, + 41.43795985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 83, + "name": "User has multiple blocks" + } + ], + "tags": [], + "features": [], + "user": "geozeisig", + "uid": "66391", + "editor": "MapComplete 0.2.2g", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-27T11:06:09Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000839713681300581, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94892190, + "theme": "ghostbikes", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.33116355, + 52.43217195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OSMfan", + "uid": "210639", + "editor": "MapComplete 0.2.2g", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-27T09:42:24Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94886678, + "theme": "artworks", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.904993, + 47.3520043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944500654", + "osm_id": 3944500654, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8170081691", + "osm_id": 8170081691, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944497986", + "osm_id": 3944497986, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8170083132", + "osm_id": 8170083132, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8048034801", + "osm_id": 8048034801, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944496867", + "osm_id": 3944496867, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944496893", + "osm_id": 3944496893, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "@albarosado", + "uid": "3875250", + "editor": "MapComplete 0.2.2g", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-27T09:41:51Z", + "reviewed_features": [], + "create": 4, + "modify": 10, + "delete": 0, + "area": 0.0000126163282200201, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94886654, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2170877, + 41.440399150000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8169946507", + "osm_id": 8169946507, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944504276", + "osm_id": 3944504276, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8169909170", + "osm_id": 8169909170, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "@albarosado", + "uid": "3875250", + "editor": "MapComplete 0.2.2g", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-27T09:10:12Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 3.08826649997764e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94884306, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21748485, + 41.44158935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.2f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-26T18:30:58Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000141970695999585, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94855667, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7127286, + 51.0264271 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.2f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-26T14:38:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94846986, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7060482, + 51.0319746 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.2.2f", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-26T12:30:59Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94840108, + "theme": "benches", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7866564, + 48.1036502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.2.2f", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-26T11:26:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94835855, + "theme": "benches", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7879288, + 48.0996586 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chrneumann", + "uid": "3260349", + "editor": "MapComplete 0.2.2f", + "comment": "Adding data with #MapComplete for theme #vegan", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-26T10:23:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94831177, + "theme": "vegan", + "language": "de", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7437298, + 50.1829142 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.2e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-25T13:37:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94778286, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7082026, + 51.0344391 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise (De Fietsambassade)", + "uid": "12236509", + "editor": "MapComplete 0.2.2e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-25T12:48:58Z", + "reviewed_features": [], + "create": 6, + "modify": 32, + "delete": 0, + "area": 0.00167333941809005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94775738, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7338580500000003, + 51.04330455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "forteller", + "uid": "538387", + "editor": "MapComplete 0.2.2e", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-25T09:22:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94761434, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7501113, + 59.9088459 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niquarl", + "uid": "6051425", + "editor": "MapComplete 0.2.2e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-24T23:49:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94735016, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.1012954, + 14.6162439 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8162230720", + "osm_id": 8162230720, + "reasons": [ + 43 + ], + "version": 7, + "primary_tags": { + "shop": "nuts" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.2e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-24T21:53:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94731389, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7100154, + 51.0621159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8162230720", + "osm_id": 8162230720, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "shop": "nut" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.2e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-24T19:44:20Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94726631, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7100154, + 51.0621159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.2e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-24T18:44:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94724303, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7237454, + 51.0540818 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.2.2e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-24T16:22:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94717790, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5698806, + -33.593523 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Krystek", + "uid": "64243", + "editor": "MapComplete 0.2.2e", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-24T16:10:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94717255, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 23.1411418, + 53.1597184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.2e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-24T16:00:17Z", + "reviewed_features": [], + "create": 2, + "modify": 12, + "delete": 0, + "area": 0.000147823718210023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94716778, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7304816499999998, + 51.05951855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.2e", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-24T15:36:04Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000124127014400054, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94715749, + "theme": "personal", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7164743, + 51.061946199999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.2.2e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-24T12:55:33Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94707872, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1341274, + 51.1124125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.2c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-23T22:26:50Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94664971, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7176919, + 51.0644948 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kalinowski5", + "uid": "492298", + "editor": "MapComplete 0.2.2c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-23T19:13:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94657023, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.7095608, + 50.1248695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "b*k*", + "uid": "70413", + "editor": "MapComplete 0.2.2c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-23T18:01:50Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94653959, + "theme": "ghostbikes", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.6354308, + 47.8906849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Krystek", + "uid": "64243", + "editor": "MapComplete 0.2.2c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-23T17:56:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94653732, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 23.1411418, + 53.1597184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.2c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-23T12:29:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.14192000004356e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94637900, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7232776999999997, + 51.0422276 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stadtvermesser", + "uid": "103992", + "editor": "MapComplete 0.2.2b", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-23T09:29:17Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00262945878047971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94626216, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.959274950000001, + 51.4897341 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "scruss", + "uid": "8047", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-22T23:54:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94602336, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.2904726, + 43.7353469 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Krystek", + "uid": "64243", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-22T23:30:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94601973, + "theme": "aed", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 23.1724902, + 53.1339625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cMartin", + "uid": "128287", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-22T22:24:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94600621, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.5904394, + 50.9298353 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jeslop", + "uid": "275212", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #wherethesidewalkshavenoname", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-22T17:26:12Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000180167834400245, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94591717, + "theme": "wherethesidewalkshavenoname", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.8105820999999995, + 42.6083132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JitenshaNiko", + "uid": "71304", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-22T15:36:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94586263, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8665464, + 45.7544485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "obyrnegps", + "uid": "4399594", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-22T14:52:20Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94583605, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.2856951, + 53.2841855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CloCkWeRX", + "uid": "172061", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-22T14:03:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94581348, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 138.4995934, + -35.1040843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geonick", + "uid": "6087", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-21T23:09:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94564689, + "theme": "toilets", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7755967, + 47.2630141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geonick", + "uid": "6087", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-21T22:50:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94564358, + "theme": "drinking_water", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8148078, + 47.2239204 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geonick", + "uid": "6087", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-21T22:23:59Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 3.82087500006855e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94563857, + "theme": "benches", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.81632235, + 47.22366355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geonick", + "uid": "6087", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-21T22:15:51Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00144859840229002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94563656, + "theme": "charging_stations", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.80398585, + 47.26014805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-21T18:28:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94556495, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2154107, + 51.2156295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FredN", + "uid": "622545", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-21T15:41:47Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94549828, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.9015538, + 59.5210737 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-21T14:01:33Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0826422545858787, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94545816, + "theme": "climbing", + "language": "nl", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4938656, + 51.1236933 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-21T12:34:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94542770, + "theme": "climbing", + "language": "nl", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7027162, + 51.0387284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8146967111", + "osm_id": 8146967111, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "OnOffOffOn", + "uid": "1190931", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-20T19:14:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94520039, + "theme": "maps", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5911264, + 50.6487841 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-20T18:34:13Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.00000689785303999119, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94518239, + "theme": "personal", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7998627000000003, + 51.02638485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-20T13:55:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94504900, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6993572, + 51.0548482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ignacioabe", + "uid": "1529288", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-20T08:01:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94483775, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6048447, + -33.4181799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.1c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-20T01:05:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94467467, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7400941, + 51.0559919 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Woazboat", + "uid": "3545112", + "editor": "MapComplete 0.2.1", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-19T14:25:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.78787500001608e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94442683, + "theme": "artworks", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.42948245, + 47.07564825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Woazboat", + "uid": "3545112", + "editor": "MapComplete 0.2.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-19T14:19:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94442306, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.4333376, + 47.0780868 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Anakil", + "uid": "3401173", + "editor": "MapComplete 0.2.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-19T13:28:29Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00252982201149998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94439809, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67273475, + 50.6803142 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.1b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-19T11:58:05Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94434758, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7232309, + 51.0422215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.2.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-19T08:30:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94420981, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.97212, + 40.5800783 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s8evq", + "uid": "3710738", + "editor": "MapComplete 0.2.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-19T08:24:05Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000036035768339984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94420513, + "theme": "surveillance", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.462284, + 51.092741950000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geonick", + "uid": "6087", + "editor": "MapComplete 0.2.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-19T07:49:48Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000148304834999982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94418348, + "theme": "aed", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.78009025, + 47.25261285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.1b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-19T01:12:28Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94402050, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7233245, + 51.0422337 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.1", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-18T17:12:02Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 3.19661999885706e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94382614, + "theme": "pingpong", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6814056500000003, + 51.0464926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chrneumann", + "uid": "3260349", + "editor": "MapComplete 0.2.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-18T11:46:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.06994799996682e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94359040, + "theme": "climbing", + "language": "de", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.503537999999999, + 50.1942569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.2.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-18T04:03:48Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94322960, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2289291, + -39.8419032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.2.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-17T21:19:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94308579, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7682647, + -33.4882303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ramonz", + "uid": "2047207", + "editor": "MapComplete 0.1.2g", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-17T16:34:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94292046, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6809726, + 41.2503222 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.1.2g", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-17T04:22:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94240483, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6921506, + -33.4541405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.1.2g", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-16T20:09:21Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94224931, + "theme": "boomgaarden", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2583717, + 51.2030737 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2g", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-16T17:51:05Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94218339, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7103936, + 51.0407568 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.3-rc2+g", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-15T18:33:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94159774, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2248056, + 51.2092223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.3-rc2+g", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-15T16:06:23Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94153746, + "theme": "surveillance", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2155448, + 51.1964366 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoschi", + "uid": "231006", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #openinghourscovid19", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-15T15:22:09Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00937708422858975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94151721, + "theme": "openinghourscovid19", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.92402455, + 48.05316215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-15T14:11:03Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00844250772224068, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94148345, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6363302, + -33.5085166 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.1.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-15T10:31:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94138988, + "theme": "surveillance", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3969104, + 51.0414748 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-14T23:20:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94124940, + "theme": "surveillance", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2277489, + 51.2066372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoschi", + "uid": "231006", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-14T17:05:22Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.02036500002272e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94113792, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.83795675, + 47.9907836 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-14T14:51:46Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94108987, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7706946, + 48.1051404 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "drnoble", + "uid": "388774", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-14T11:54:25Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000786870819998782, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94103291, + "theme": "aed", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.1902627, + 55.9520228 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-14T00:34:52Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94091759, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5672321, + -33.4607463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nordpfeil", + "uid": "1337142", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-13T21:05:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94086068, + "theme": "ghostbikes", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0247852, + 50.6174013 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 4, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-13T17:27:53Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0769192282418323, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94076961, + "theme": "aed", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46237615, + 51.118422949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-12T20:48:53Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000356042966999993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94018048, + "theme": "personal", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70778575, + 51.0415822 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-12T20:41:20Z", + "reviewed_features": [], + "create": 4, + "modify": 13, + "delete": 0, + "area": 0.0144444754123092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94017764, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.69537324999999, + -33.46251575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "c3112n", + "uid": "3603997", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-12T17:51:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94011144, + "theme": "toilets", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3053461, + 51.4650246 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-12T17:42:04Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94010704, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5721673, + -33.4461622 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-12T14:29:23Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.000845277217740084, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94002390, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.62529384999999, + -33.4408081 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waldyrious", + "uid": "5177", + "editor": "MapComplete 0.1.2f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-12T13:43:57Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000209756267100116, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 94000102, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.42557665, + 41.55130935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-12T00:47:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93957232, + "theme": "personal", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7051982, + 51.0475375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-11T22:17:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93954090, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7033764, + 51.0476311 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-11T22:13:23Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93953970, + "theme": "toilets", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7051982, + 51.0475375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #crossingtime", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-11T18:36:17Z", + "reviewed_features": [], + "create": 22, + "modify": 2, + "delete": 0, + "area": 0.000121232387699984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93946511, + "theme": "crossingtime", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21383165, + 41.4096857 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #openinghourscovid19", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-11T17:17:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93942265, + "theme": "openinghourscovid19", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3970654, + 51.0415172 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-11T14:55:26Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00018612752184, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93935559, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7059566999999998, + 51.06198805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-11T04:31:31Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93895358, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.630342, + -33.4468376 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-10T19:30:21Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.05748579999131e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93880755, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.11892689999999, + -33.51602095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-10T10:42:22Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93854796, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7233607, + 51.0522911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-09T14:33:01Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93804822, + "theme": "aed", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4923729, + 51.2013343 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marek-M", + "uid": "598860", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-09T08:18:41Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0120822022499991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93781079, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.3086205, + 54.363601200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Robbe7730", + "uid": "7116689", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-08T22:54:22Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93759603, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7424085, + 51.0501964 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jan Fabry", + "uid": "55978", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-08T20:39:17Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93756396, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5075986, + 50.9569514 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jan Fabry", + "uid": "55978", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-08T20:26:00Z", + "reviewed_features": [], + "create": 1, + "modify": 21, + "delete": 0, + "area": 2.16097199979857e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93756032, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.497097699999999, + 50.96196775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-08T11:36:48Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.00000263604899999762, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93735609, + "theme": "benches", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.789192400000001, + 48.10266835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #comerciosantiguos", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-07T14:35:34Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000550764606000636, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93709301, + "theme": "comerciosantiguos", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7122776499999999, + 41.2192372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2d", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-06T16:18:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93674814, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7071723, + 51.0542214 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-06T11:05:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.63896820000333e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93659374, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71083195, + 51.070062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2d", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-04T15:21:40Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000329797798400135, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93551101, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6982101, + 51.0629594 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dónal", + "uid": "574926", + "editor": "MapComplete 0.1.2d", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-03T23:47:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93507143, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.4706964, + 51.8995348 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-02T21:42:08Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93441998, + "theme": "charging_stations", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7074351, + 51.0521623 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-02T21:21:16Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000137555924998206, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93441481, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71202145, + 51.05635015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2c", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-02T21:04:28Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93441005, + "theme": "toilets", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7101028, + 51.0507378 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Binnette", + "uid": "918586", + "editor": "MapComplete 0.1.2c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-02T19:47:23Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0257786509739997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93438341, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6733526, + 45.2662872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.1.2c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-02T19:36:56Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000163648862000206, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93437995, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.7101395, + -36.87109305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.1.2c", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-02T18:57:49Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0136049850111998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93436673, + "theme": "toilets", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.77980839999998, + -36.89349 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Sventje_1", + "uid": "10641137", + "editor": "MapComplete 0.1.1c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-02T18:11:15Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000238259666700034, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93434827, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1370948, + 50.937428350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-02T10:59:09Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93414684, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2153406, + 51.2156501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.1.2b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-02T10:57:55Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93414604, + "theme": "bookcases", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198739, + 51.2156998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-01T19:32:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93379896, + "theme": "aed", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.397208, + 51.0410683 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-11-01T15:38:09Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93372113, + "theme": "benches", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7785239, + 48.0998062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "miwie", + "uid": "57526", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-01T12:53:43Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 4.56941440002924e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93367038, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3241175, + 52.4715742 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.1.1a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-11-01T08:02:51Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000257341068000063, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 93361191, + "theme": "aed", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3947499, + 51.0386145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OSMWeekly", + "uid": "8610118", + "editor": "MapComplete 0.2.5g", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-31T13:58:55Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96736844, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.7905926, + 42.2538906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-31T01:32:04Z", + "reviewed_features": [], + "create": 8, + "modify": 10, + "delete": 0, + "area": 0.0000017086618499971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96697083, + "theme": "trees", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13285365, + 51.30483305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-30T19:15:37Z", + "reviewed_features": [], + "create": 3, + "modify": 16, + "delete": 0, + "area": 0.00000113295724000522, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96687111, + "theme": "trees", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1353682000000003, + 51.3088669 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.2.5g", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-30T15:32:03Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.71504999982982e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96677926, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.34108215, + -33.6774671 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5g", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-30T13:35:59Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96671133, + "theme": "personal", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2653131, + 51.3106492 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8273871170", + "osm_id": 8273871170, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5g", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-30T12:20:04Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96666725, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2088366, + 51.319858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5g", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-29T20:29:46Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0128517255379002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96623421, + "theme": "fietsstraten", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43658495, + 51.2114852 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Meanderr", + "uid": "8554284", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #mcac_cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-29T20:04:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96622577, + "theme": "mcac_cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.6287686, + 43.5724116 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.2.5g", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-29T12:44:22Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000682454173799986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96602006, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0800578000000005, + 51.2393293 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.2.5g", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-29T09:17:09Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.000982600761629906, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96587062, + "theme": "benches", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91926075, + 51.87808915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-28T20:52:39Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000279395513040066, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96558606, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73901725, + 51.1684184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-28T20:28:06Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000139486786799913, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96557858, + "theme": "trees", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74838895, + 51.1608626 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dries Vrindts", + "uid": "10338282", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-28T16:00:26Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0021556294489803, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96547243, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86624525, + 51.1458831 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-28T12:36:21Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 1.10822800001338e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96536010, + "theme": "trees", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12521945, + 51.3109368 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "livmilan", + "uid": "712033", + "editor": "MapComplete 0.2.5g", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-28T10:58:00Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000463901162920111, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96529515, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.283635, + 45.483571350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.2.5g", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-28T10:51:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000741646742940078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96529089, + "theme": "personal", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9027053499999997, + 51.1856303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.2.5g", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-28T10:12:57Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96526621, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9109464, + 51.1817121 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-27T20:17:20Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96497486, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1423808, + 51.1685305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-27T15:05:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000413848433879895, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96487512, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33795035, + 51.076168800000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-27T11:41:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.72239410000089e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96480786, + "theme": "fritures", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01131785, + 51.12873555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-27T11:37:08Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.69635400002613e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96480644, + "theme": "trees", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00268875, + 51.1269236 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s8evq", + "uid": "3710738", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-26T21:55:31Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00119738852937044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96467370, + "theme": "trees", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42404865, + 51.09471395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-26T19:49:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96464209, + "theme": "trees", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7216874, + 51.0423994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5f", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-26T15:06:23Z", + "reviewed_features": [], + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.000552691761260161, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96455190, + "theme": "personal", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31429025, + 51.1349776 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5f", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-26T14:39:03Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96454086, + "theme": "toilets", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2523849, + 51.1183139 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LEDfan", + "uid": "2742815", + "editor": "MapComplete 0.2.5f", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-26T14:00:21Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0201263204810605, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96452710, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56492155, + 51.2863071 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-25T21:45:26Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96435672, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9867941, + 51.1845669 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-25T14:51:37Z", + "reviewed_features": [], + "create": 7, + "modify": 6, + "delete": 0, + "area": 6.68731359995027e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96425274, + "theme": "artworks", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.067804649999999, + 51.155135200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-25T14:28:48Z", + "reviewed_features": [], + "create": 6, + "modify": 10, + "delete": 0, + "area": 0.000144873346699956, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96424469, + "theme": "trees", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1422037, + 51.307244850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-25T13:35:18Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96422689, + "theme": "artworks", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1399923, + 51.1664247 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-25T02:11:16Z", + "reviewed_features": [], + "create": 9, + "modify": 13, + "delete": 0, + "area": 0.00016309726056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96406794, + "theme": "trees", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7074116, + 51.02977905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-24T21:09:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96402559, + "theme": "fritures", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7100248, + 51.0267345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-24T20:24:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000022878713220011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96401700, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12827865, + 51.3117225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-24T18:21:58Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96399525, + "theme": "trees", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2304046, + 51.206838 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-24T18:06:21Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000222378980699939, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96399228, + "theme": "trees", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12814905, + 51.30635175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-24T17:50:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96398801, + "theme": "trees", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.397002, + 51.0417241 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-24T12:55:32Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96386796, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9779064, + 51.1595721 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-24T01:03:47Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000429066374401463, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96351658, + "theme": "aed", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1330168499999997, + 51.3142992 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-24T00:38:42Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000281877925999971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96351269, + "theme": "charging_stations", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1304373, + 51.302340799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sanderd17", + "uid": "253266", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #bakeries", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-23T19:35:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.26473199994814e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96344297, + "theme": "bakeries", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08115505, + 50.9427028 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-23T18:57:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000237433953979811, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96343222, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1138654, + 52.07493395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LEDfan", + "uid": "2742815", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-23T14:01:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00396811404225012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96331045, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.583648050000001, + 51.29019725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-23T11:36:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96321611, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6106646, + 51.9639581 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-23T09:34:36Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.00000501280560000484, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96311393, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6093002, + 51.9648766 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VincentOSM", + "uid": "62345", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-23T09:23:41Z", + "reviewed_features": [], + "create": 0, + "modify": 31, + "delete": 0, + "area": 0.000219822656680054, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96310585, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1148406, + 52.094089249999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VincentOSM", + "uid": "62345", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-23T09:12:25Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00132604947600013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96309725, + "theme": "climbing", + "language": "nl", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0896445, + 52.082287 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Niquarl", + "uid": "6051425", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-23T06:39:46Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000841888811499398, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96299874, + "theme": "toilets", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.58558295, + 16.26036885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #Bankjes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-22T18:07:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96275189, + "theme": "bankjes", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6167603, + 51.9655175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-22T16:38:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.65792909999525e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96271520, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7086602500000003, + 51.04731405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-22T11:34:00Z", + "reviewed_features": [], + "create": 3, + "modify": 14, + "delete": 0, + "area": 1.83559200008528e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96255037, + "theme": "boomgaarden", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3869797999999998, + 50.7797815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wouterverhelst", + "uid": "2844145", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-22T10:02:29Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000954903209996908, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96248250, + "theme": "bookcases", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10410715, + 51.0708551 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-21T13:05:10Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96197552, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1321597, + 50.945512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-21T09:07:24Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96181026, + "theme": "boomgaarden", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2935088, + 50.9923792 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-21T08:29:48Z", + "reviewed_features": [], + "create": 3, + "modify": 13, + "delete": 0, + "area": 4.34229199992049e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96178531, + "theme": "boomgaarden", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2996383500000004, + 50.986863299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-20T22:13:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96156366, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7027162, + 51.0387284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rob Noort", + "uid": "5817148", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-20T14:01:41Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000225011270399863, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96140521, + "theme": "fietsstraten", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1959654, + 50.9057254 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-20T11:47:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96136482, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6044526, + 50.8963414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-20T10:46:47Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96134834, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6044526, + 50.8963414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-19T19:07:52Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96119259, + "theme": "toilets", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.716198, + 51.0340851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-19T18:52:12Z", + "reviewed_features": [], + "create": 4, + "modify": 21, + "delete": 0, + "area": 0.45817790737144, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96118879, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6476128, + 49.4158987 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "superneuf", + "uid": "12344703", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-19T18:44:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.64380710002453e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96118696, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71316045, + 51.036409649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "superneuf", + "uid": "12344703", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-19T18:37:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96118491, + "theme": "artworks", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7177118, + 51.0317241 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "superneuf", + "uid": "12344703", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-19T18:27:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96118227, + "theme": "fritures", + "language": "fr", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7100248, + 51.0267345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-18T20:12:40Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96089062, + "theme": "artworks", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9757675, + 51.3369519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wille", + "uid": "360183", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-18T18:23:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96085989, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.4611039, + -12.9910504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-18T16:55:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96082820, + "theme": "artworks", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4500352, + 51.0861239 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "csoul", + "uid": "1217959", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-18T15:39:38Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96079709, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -93.7281418, + 39.0644232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kadecc", + "uid": "10026614", + "editor": "MapComplete 0.2.5e", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-18T12:12:02Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000015330793339987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96069566, + "theme": "fietsstraten", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56746865, + 51.183245299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-17T10:47:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95999002, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3560481, + 50.8379065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-17T10:15:33Z", + "reviewed_features": [], + "create": 9, + "modify": 18, + "delete": 0, + "area": 0.0000452871196799908, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95996514, + "theme": "surveillance", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35815115, + 50.8412482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Vincent Van Heghe", + "uid": "4624802", + "editor": "MapComplete 0.2.5a", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-16T13:37:01Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000154820488200053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95945154, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9571535, + 50.96423115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tant0ine", + "uid": "1365757", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-16T12:51:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95942831, + "theme": "aed", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1279089, + 44.4052106 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tant0ine", + "uid": "1365757", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-16T12:22:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95941222, + "theme": "bookcases", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1304383, + 44.4053467 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-16T10:14:25Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95933427, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0379635, + 14.5876029 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bavh", + "uid": "30514", + "editor": "MapComplete 0.2.5a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-16T07:31:19Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00283091092475982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95923089, + "theme": "toilets", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9467269, + 51.1854646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-16T04:42:10Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95912450, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0478246, + 14.6016569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dries @ Fietswinst", + "uid": "12338761", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T20:29:41Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000748991825999601, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95899211, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7085295, + 51.075358550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RudigerO", + "uid": "2981660", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T20:26:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95899099, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4528854, + 51.2134786 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Friedel Vanroy", + "uid": "3658306", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T20:13:49Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95898587, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1886851, + 50.9685034 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Friedel Vanroy", + "uid": "3658306", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T19:49:39Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000618485487900098, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95897696, + "theme": "fietsstraten", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1760067, + 50.97707055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ides Brabants", + "uid": "12278822", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T18:47:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95894829, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5723397, + 51.1391629 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Geert Brosens", + "uid": "12340126", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T18:28:03Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 9.42020000005776e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95893983, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7601901, + 51.399209 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jan weckx", + "uid": "11060418", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T17:21:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.7491914000228e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95890882, + "theme": "artworks", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0956477, + 50.94344495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jajajajajajajajajaja", + "uid": "12339746", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T17:03:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95890041, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4466197, + 51.1555008 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Malinas", + "uid": "12339624", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T16:20:14Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000115291847999679, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95887704, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5154895, + 51.01058165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dries Verdoodt", + "uid": "7250277", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T16:12:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95887280, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3414353, + 50.8336425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hannevd", + "uid": "12339441", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T15:45:17Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00000660405438002285, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95885883, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4376719, + 51.24271555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "navisence", + "uid": "10132", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T13:32:35Z", + "reviewed_features": [], + "create": 2, + "modify": 13, + "delete": 0, + "area": 0.00171262011159997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95879791, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7377528, + 51.01272435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T12:16:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95875912, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6172146, + 51.9665257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "navisence", + "uid": "10132", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-15T10:16:47Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.000142233576479998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95866902, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7460522, + 50.9966366 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bartbix", + "uid": "12335281", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-14T22:10:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95835460, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4738978, + 50.7677134 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "timdr", + "uid": "12334465", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-14T18:09:42Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 8.05041400002019e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95823381, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46496665, + 51.1543801 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "HMAID", + "uid": "12333329", + "editor": "MapComplete 0.2.5b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-14T13:51:58Z", + "reviewed_features": [], + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.000457763336150011, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95810321, + "theme": "aed", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68896545, + 51.04565225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-13T19:42:50Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.34890409999e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95768699, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2162777499999997, + 51.19670615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Asfra", + "uid": "12329708", + "editor": "MapComplete 0.2.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-13T19:32:48Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95768408, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6135577, + 50.8403377 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.2.5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-13T14:55:59Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95758045, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7474376, + 51.0244219 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-13T13:48:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95755595, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1275065, + 50.9436406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.2.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-13T09:03:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95747526, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1842233, + 50.7983379 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "HerwinTravel", + "uid": "12102243", + "editor": "MapComplete 0.2.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-12T14:44:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95724607, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4765993, + 51.0236468 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Velo_Bart", + "uid": "12323897", + "editor": "MapComplete 0.2.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-12T11:34:59Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95719098, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7756207, + 51.0389479 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.2.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-12T09:16:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95715532, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1953692, + 50.7782774 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.2.5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-11T20:09:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95701366, + "theme": "bookcases", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4389072, + 51.0817285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.2.4b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-11T11:02:36Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000366822547200506, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95676598, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6111702, + 51.9680429 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Carabasiru", + "uid": "10976961", + "editor": "MapComplete 0.2.5-rc1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-11T09:36:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95671310, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.514806, + 47.1691833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.2.4b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-11T04:06:26Z", + "reviewed_features": [], + "create": 1, + "modify": 10, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95652825, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7673329, + -33.4887966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "The Inning Club", + "uid": "5129797", + "editor": "MapComplete 0.2.4b", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-10T18:57:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95636305, + "theme": "surveillance", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.4013699, + 41.8261065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.4b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-10T15:49:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95627442, + "theme": "personal", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7051982, + 51.0475375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.4a Hotfix warning bicycle pump", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-09T20:52:59Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95575101, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7255883, + 51.0406232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "HerwinTravel", + "uid": "12102243", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-09T15:48:52Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000274101242399982, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95563399, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4794328, + 51.026044799999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-09T14:10:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000116704849099783, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95558462, + "theme": "fietsstraten", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92200645, + 51.22086775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bcandrix", + "uid": "12270147", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-09T10:37:04Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95546223, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4654649, + 51.0258303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "leoleysen", + "uid": "12308507", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-09T10:25:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95545333, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9192062, + 51.2233403 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947007315", + "osm_id": 3947007315, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8202986695", + "osm_id": 8202986695, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007384", + "osm_id": 3947007384, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006792", + "osm_id": 3947006792, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-07T19:06:34Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00000152114549000207, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95441444, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22202505, + 41.442880349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "The Inning Club", + "uid": "5129797", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-07T18:10:27Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00000278805940001433, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95438534, + "theme": "surveillance", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.3975484, + 41.8308496 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-07T16:08:38Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95432954, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.239902, + 51.2126842 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-07T09:44:30Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95410193, + "theme": "bookcases", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8089679, + 51.132875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lanxana", + "uid": "3735848", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #lit", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-07T09:14:38Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000632070145999601, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95408103, + "theme": "lit", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96070425, + 42.2656519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "The Inning Club", + "uid": "5129797", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-06T20:15:33Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.8524000001846e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95379838, + "theme": "surveillance", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.404858, + 41.82776155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #lit", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-06T19:38:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.1696200000249e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95378664, + "theme": "lit", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.705119, + 51.052794950000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #lit", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-06T18:19:13Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.0185650999536e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95376444, + "theme": "lit", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1643750500000003, + 41.37455455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ielham", + "uid": "462218", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #lits", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-06T17:59:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000673243904999497, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95375812, + "theme": "lit", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.9312743, + 37.26999695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #lits", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-06T17:29:34Z", + "reviewed_features": [], + "create": 6, + "modify": 11, + "delete": 0, + "area": 0.0000929359578700413, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95374751, + "theme": "lit", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16048315, + 41.37866045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-06T15:14:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00021934011264, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95369710, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1909736, + 51.1259811 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-06T15:12:33Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95369636, + "theme": "personal", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1848335, + 51.1221707 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947073865", + "osm_id": 3947073865, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073345", + "osm_id": 3947073345, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3448322522", + "osm_id": 3448322522, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073904", + "osm_id": 3947073904, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-06T14:53:06Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.73833099999668e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95368843, + "theme": "arbres_llefia", + "language": "ca", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2194943, + 41.44358915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-06T14:35:31Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000504122673599833, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95368199, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1836321, + 51.12642015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-06T14:29:07Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00021934011264, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95367959, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1909736, + 51.1259811 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-06T11:50:05Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95362845, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2241441, + 51.2100561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.2.4", + "comment": "Adding data with #MapComplete for theme #lits", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-06T08:20:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.2589775000254e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95357564, + "theme": "lit", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16619485, + 41.38891435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.2.3c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-05T14:44:20Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95336723, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.0718926, + -33.460611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.2.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-05T14:39:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95336591, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.1078643, + -33.4707554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.2.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-05T03:17:15Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.000100404731069999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95321733, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 122.55269705, + 10.73996205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.3d", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-05T00:31:06Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0835071726731407, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95320020, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4628965, + 51.13520445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.3c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-04T20:43:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95315093, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7097472, + 51.0506319 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.2.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-04T03:57:31Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95260980, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 122.5482876, + 10.7214848 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 22, + "name": "Edited a place" + } + ], + "tags": [], + "features": [ + { + "url": "node-1470838124", + "name": "Borriana", + "osm_id": 1470838124, + "reasons": [ + 22 + ], + "version": 14, + "primary_tags": { + "place": "town" + } + } + ], + "user": "HomoGradiens", + "uid": "1946832", + "editor": "MapComplete 0.2.3c", + "comment": "Adding data with #MapComplete for theme #postalcode", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-03T21:48:36Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0951122960387999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95250503, + "theme": "postalcode", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1488465, + 40.25308095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.2.3c", + "comment": "Adding data with #MapComplete for theme #kerbs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-03T18:04:06Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.9379880000417e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95242530, + "theme": "kerbs", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1499541, + 41.375017400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.3c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-03T17:20:55Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95240617, + "theme": "charging_stations", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6891478, + 51.0234504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise (De Fietsambassade)", + "uid": "12236509", + "editor": "MapComplete 0.2.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-03T15:51:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95236418, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7082026, + 51.0344391 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-6942691387", + "name": "Sliding Tiger", + "osm_id": 6942691387, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "shop": "inline_skates" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.3c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-03T13:03:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95228146, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7367263, + 51.0567966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.2.3c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-03T06:26:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95199073, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.9065905, + -33.4577948 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.3c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-03T01:16:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95184168, + "theme": "shops", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7097472, + 51.0506319 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Felix Edelmann", + "uid": "2274641", + "editor": "MapComplete 0.2.3c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-02T21:40:04Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.000022677051820006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95178556, + "theme": "benches", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7883274, + 48.10027905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-02T10:42:48Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.0000409417084200218, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95149264, + "theme": "surveillance", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88951155, + 51.006206399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-12-01T14:57:22Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95100929, + "theme": "artworks", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7018776, + 51.0588206 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ben Abelshausen", + "uid": "137772", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-12-01T10:38:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 95090081, + "theme": "cyclofix", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7881186, + 51.2622438 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-29T19:57:45Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000023452520000011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85964426, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2332448, + 51.20751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-29T19:54:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85964318, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2194673, + 51.2131627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-29T19:50:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85964229, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2194673, + 51.2131627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-29T18:19:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85961398, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.217728, + 51.2058585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-29T17:32:28Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.02201385480234, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85959748, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24022185, + 51.2520423 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-29T17:20:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000272044405499996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85959295, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23274445, + 50.71109535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-29T17:15:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00150791117274013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85959134, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1282772999999997, + 51.291391149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-29T17:14:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000774953567999841, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85959077, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2539272, + 51.238195899999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Toevoegen of dit natuurreservaat toegangkelijk is", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-29T02:09:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000932280849000179, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85914046, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0489652, + 51.17596175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Toevoegen of dit natuurreservaat toegangkelijk is", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-29T00:01:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000506025328989807, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85912330, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67376295, + 51.06210175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Toevoegen of dit natuurreservaat toegangkelijk is", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-28T23:21:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000390551323800378, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85911841, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2818678, + 51.25951655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Toevoegen of dit natuurreservaat toegangkelijk is", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-28T20:04:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000774953567999841, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85907088, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2539272, + 51.238195899999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Toevoegen of dit natuurreservaat toegangkelijk is", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-28T19:53:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000506167517280006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85906742, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2980628, + 51.1986561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Toevoegen of dit natuurreservaat toegangkelijk is", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-28T19:18:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000887458735800229, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85905687, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2629943, + 51.19831455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Toevoegen of dit natuurreservaat toegangkelijk is", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-28T19:12:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000181214561339983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85905503, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2810774499999997, + 51.183529500000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Toevoegen of dit natuurreservaat toegangkelijk is", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-28T18:11:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85903433, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1410974, + 51.220467 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-7564216431", + "osm_id": 7564216431, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": {} + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Testing Mapcomplete 0.0.0", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-05-27T23:48:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 85856178, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2197236, + 51.2157018 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-29T10:02:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.12166800004965e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87286866, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2222988, + 51.2099456 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-29T01:34:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000164541223999135, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87264737, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13160055, + 51.2882592 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-29T01:20:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87264569, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198042, + 51.2156981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-29T01:20:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87264563, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198042, + 51.2156981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-28T15:50:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000105700159799916, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87253999, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25785705, + 51.159713499999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-28T15:49:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000105700159799916, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87253996, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25785705, + 51.159713499999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-28T15:49:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000105700159799916, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87253990, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25785705, + 51.159713499999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-28T15:47:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000239266776000008, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87253944, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2173628, + 51.2018039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-27T21:01:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.05137780002534e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87235839, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166172, + 51.213796349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-27T16:18:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.05137780002534e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87230232, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166172, + 51.213796349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-27T16:17:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.05137780002534e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87230226, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166172, + 51.213796349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-27T16:16:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.05137780002534e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87230201, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166172, + 51.213796349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-25T01:59:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.05137780002534e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87108706, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166172, + 51.213796349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-25T01:58:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.05137780002534e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87108693, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166172, + 51.213796349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-25T01:36:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.05137780002534e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87108359, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166172, + 51.213796349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-24T10:32:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000245329140000049, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87079924, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2123268, + 51.2035053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-23T21:40:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87052122, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3470831, + 48.8868433 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-23T21:37:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000320065231199673, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87052051, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1899183, + 51.191159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-23T21:02:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.12933239998485e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87051299, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2226017, + 51.20964195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-23T21:00:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.78410620003412e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87051253, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1937069, + 51.217710350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-23T20:59:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.78410620003412e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87051238, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1937069, + 51.217710350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-19T14:33:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86882190, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198498, + 51.2157031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-18T15:10:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86831904, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.218716, + 51.2184302 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-11T11:33:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86515326, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.257214, + 50.7432271 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-11T11:25:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86514904, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7010949, + 51.0390544 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-10T23:18:50Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86486597, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198605, + 51.2157132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-10T20:07:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86481535, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198524, + 51.2157267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-10T20:06:55Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86481488, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198471, + 51.2157199 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-10T19:47:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86480505, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198404, + 51.2157078 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-10T19:35:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86479916, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2197787, + 51.2156985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:53:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266570, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:53:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266568, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:52:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266562, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:51:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266553, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:50:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266545, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:48:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266534, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:46:49Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266520, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:46:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266517, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:46:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266513, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:44:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266494, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:43:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266488, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:41:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266479, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:40:50Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266464, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:39:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266458, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:39:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266456, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:38:43Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266446, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:38:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266445, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:37:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266428, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:32:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266402, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:29:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266383, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:28:49Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266376, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:27:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266356, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:26:43Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266349, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:26:22Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266343, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:25:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266341, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:24:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266332, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:16:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266243, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:13:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266219, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:12:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266213, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:11:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266204, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:08:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266170, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T01:05:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86266147, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T00:51:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86265999, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T00:43:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86265929, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T00:37:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86265868, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T00:34:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86265830, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T00:34:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86265829, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T00:33:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86265824, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T00:33:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86265819, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T00:32:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86265813, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-06T00:32:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86265807, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21972, + 51.21572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Updaten van metadata met Mapcomplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-06-01T21:53:30Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000746444043320011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 86064773, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1669004000000003, + 51.09933905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-31T18:29:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88794518, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2345337, + 50.7325505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #metamap", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T22:44:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88754271, + "theme": "maps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3997831, + 51.0410144 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T22:41:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88754234, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3944187, + 51.0399165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T22:40:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88754207, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3996981, + 51.0422216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T20:01:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000192592409999809, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88750460, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2248529, + 51.21966665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T19:58:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88750381, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2246267, + 51.2185636 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T19:58:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88750366, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2246267, + 51.2185636 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T19:58:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88750361, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2246267, + 51.2185636 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T18:59:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88748527, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3600702, + 50.8502689 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T18:44:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88748056, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2201207, + 51.2040068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T18:43:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88748030, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2201207, + 51.2040068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T18:43:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88748016, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2201207, + 51.2040068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T18:41:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88747974, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2196379, + 51.2039223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T18:41:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88747969, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2196379, + 51.2039223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T18:41:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88747965, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2196379, + 51.2039223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T18:41:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88747945, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2196379, + 51.2039223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T17:05:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88744974, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.121078, + 50.7995973 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:47:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000274903010000429, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88744357, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2145689500000003, + 51.2186125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:45:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000348237038999687, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88744261, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2086361500000002, + 51.21971225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:43:08Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000152132472800079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88744181, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2049039, + 51.2219583 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:39:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88744059, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2023263, + 51.2232035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:39:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88744048, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2023263, + 51.2232035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:38:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000140162426999838, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88743999, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2010922500000003, + 51.22368755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:36:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88743938, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2023263, + 51.2232035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:35:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88743917, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2023263, + 51.2232035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:27:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000208592019999838, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88743597, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1962529999999996, + 51.22726145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:26:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000271204928999756, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88743578, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19725635, + 51.22641185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:24:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.60897599997021e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88743502, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19760855, + 51.226230099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:23:30Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000525409338000499, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88743466, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1972746499999998, + 51.2276509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:19:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000328686342999752, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88743312, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19104465, + 51.228706349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:17:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.80855519998727e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88743268, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1961122, + 51.2284156 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:16:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.35926939995138e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88743199, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.195582, + 51.229195849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:15:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.41655459997963e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88743164, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1950449, + 51.229088950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:14:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000295136864000025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88743115, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19646635, + 51.2291044 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:14:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000295136864000025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88743111, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19646635, + 51.2291044 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:09:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000269384804399824, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88742929, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1864953, + 51.23177565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PierreBarban", + "uid": "11531725", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T16:04:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000961038183000676, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88742716, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34321265, + 48.75212755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T15:58:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.03494140001869e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88742504, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1879754, + 51.21826755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T15:52:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88742207, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.188256, + 51.2176305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T15:52:37Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88742202, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.188256, + 51.2176305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T15:52:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88742179, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1883097, + 51.2170257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T15:52:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88742167, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1883097, + 51.2170257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T15:51:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000152476444800272, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88742123, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1946681999999997, + 51.2168719 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T15:36:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000133836725400117, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88741393, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2161864, + 51.21781325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T14:52:46Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000621888792600243, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88739524, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2068529999999997, + 51.215048249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #smoothness", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T14:52:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000673566894000599, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88739490, + "theme": "smoothness" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20718125, + 51.2159145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T14:44:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88739123, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3460313, + 50.8525107 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T14:19:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88738090, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3217228, + 50.8813375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T14:03:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88737432, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3217228, + 50.8813375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T14:02:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88737401, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3217228, + 50.8813375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T14:00:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88737279, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3217097, + 50.8813368 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PierreBarban", + "uid": "11531725", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T09:40:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88723923, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2806737, + 48.7715652 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T09:33:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88723523, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3707293, + 50.8536455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T09:31:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88723393, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3636188, + 50.8504721 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FVandePerre", + "uid": "11568680", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-30T07:20:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000638843517200418, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88715990, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45913595, + 51.1780358 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-29T17:52:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.53183799993044e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88692073, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22712585, + 51.2097536 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-29T17:00:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.53183799993044e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88690311, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22712585, + 51.2097536 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-29T16:59:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.53183799993044e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88690277, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22712585, + 51.2097536 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-29T16:59:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.53183799993044e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88690274, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22712585, + 51.2097536 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "doulaha", + "uid": "11491790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #walkbybrussels", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-29T13:44:42Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88682537, + "theme": "walkbybrussels" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3544537, + 50.8426547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StanislasGueniffey687163843", + "uid": "11495987", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #walkbybrussels", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-29T08:40:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88665312, + "theme": "walkbybrussels" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3387949, + 50.8517659 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-29T07:58:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000350747849999889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88662734, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9634898, + 51.0267182 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-29T07:57:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00225136474291994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88662651, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92459635, + 51.0208456 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FVandePerre", + "uid": "11568680", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-29T07:16:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000165152673000008, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88659808, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.458727850000001, + 51.182542 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #width", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T21:53:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.57844399975382e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88642425, + "theme": "width" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23240385, + 51.210302 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:41:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000158710379999926, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88638766, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4818207, + 51.0996416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:39:36Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000536482322099917, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88638714, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4803544, + 51.07057745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:36:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000128864551200109, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88638606, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4808679, + 51.087208000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:34:16Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000339984545000653, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88638535, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48804865, + 51.102837949999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:33:09Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000339984545000653, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88638498, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48804865, + 51.102837949999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:32:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.56121760000792e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88638472, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4933045, + 51.09839504999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:28:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000376377874199748, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88638316, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5203777, + 51.08793405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:27:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000489990560000268, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88638297, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4914872, + 51.080417350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:25:45Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000371250042600408, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88638230, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48553555, + 51.0968315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:18:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.00388979998768e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88637985, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4887546, + 51.09947925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:16:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000399968652600248, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88637922, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48558035, + 51.0969977 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:12:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000213871819000001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88637773, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48558935, + 51.09939425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:11:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000219188418599808, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88637746, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48550685, + 51.1003368 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:10:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000152301463600134, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88637712, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4814588000000004, + 51.10254705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maaike Lootens", + "uid": "11566064", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T19:09:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000152301463600134, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88637651, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4814588000000004, + 51.10254705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T09:06:24Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000609194883999675, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88608906, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86565195, + 51.0037072 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T09:05:33Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00022506512699997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88608855, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87876835, + 51.0071494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T09:04:54Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000124907655600063, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88608824, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8982736, + 51.00690075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T09:03:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000841825031600414, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88608738, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8968978, + 51.00892855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-28T09:02:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000869109210499426, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88608683, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8000513500000004, + 51.01019265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ubipo", + "uid": "3797928", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-27T10:42:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88559889, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7094668, + 50.8627092 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ubipo", + "uid": "3797928", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-27T10:41:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88559843, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7094668, + 50.8627092 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-27T07:37:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88548536, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.340039, + 50.8526182 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-27T06:19:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000012277222399984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88544628, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6080037000000003, + 50.899141400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-27T06:17:45Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000241959004799924, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88544526, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6382282999999997, + 50.9067839 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-27T06:15:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000153708960000261, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88544416, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.638391, + 50.9063951 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-27T06:12:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000153708960000261, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88544285, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.638391, + 50.9063951 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-26T19:36:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88530703, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.372521, + 50.9366438 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-25T12:09:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88493841, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4577222, + 50.9610357 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-25T12:08:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88493811, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4577222, + 50.9610357 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-25T11:15:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88492559, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4458526, + 50.8125126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-25T11:13:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88492531, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4462335, + 50.8127957 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-25T11:13:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88492520, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4462335, + 50.8127957 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten11", + "uid": "11527019", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-25T08:03:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000226027008899876, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88488537, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99280095, + 51.08589155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T19:17:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88474036, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2398742, + 51.2127761 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T19:16:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88474011, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2398742, + 51.2127761 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T19:15:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88473981, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2398742, + 51.2127761 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T19:14:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88473952, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2398742, + 51.2127761 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T19:13:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88473927, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2398742, + 51.2127761 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T18:10:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88472115, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2358798, + 50.7363008 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T18:04:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88471946, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2359975, + 50.7360865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T18:03:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.52231100003073e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88471917, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23593865, + 50.736193650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T18:01:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.52231100003073e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88471866, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23593865, + 50.736193650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T17:59:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.52231100003073e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88471799, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23593865, + 50.736193650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T17:05:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88469758, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2153406, + 51.2156501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Velofixer", + "uid": "11543856", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T14:31:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-26T13:26:28.155558Z", + "id": 88463397, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3469744, + 50.8460372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Velofixer", + "uid": "11543856", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T14:31:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88463396, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3469744, + 50.8460372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Velofixer", + "uid": "11543856", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T14:31:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88463392, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3469744, + 50.8460372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Velofixer", + "uid": "11543856", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T14:31:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88463389, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3469744, + 50.8460372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Velofixer", + "uid": "11543856", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T14:31:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88463374, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3469744, + 50.8460372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Velofixer", + "uid": "11543856", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T14:30:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88463360, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3469744, + 50.8460372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Velofixer", + "uid": "11543856", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T14:30:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88463342, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3469744, + 50.8460372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T11:19:54Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000761429142749984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88454525, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22056045, + 51.205794049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-24T11:16:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88454371, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2403066, + 51.2249427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dalhoumi Amal", + "uid": "11539880", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T22:44:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000242481392099934, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88427583, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06497845, + 50.813303399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dalhoumi Amal", + "uid": "11539880", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T22:39:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000242481392099934, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88427490, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06497845, + 50.813303399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dalhoumi Amal", + "uid": "11539880", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T22:38:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000242481392099934, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88427471, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06497845, + 50.813303399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Chiel Danckers", + "uid": "11538129", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T14:38:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00104008624686009, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88410084, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81808715, + 51.2813213 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Chiel Danckers", + "uid": "11538129", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T14:37:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00104008624686009, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88410045, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81808715, + 51.2813213 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Chiel Danckers", + "uid": "11538129", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T14:35:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00104008624686009, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88409955, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81808715, + 51.2813213 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Chiel Danckers", + "uid": "11538129", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T14:34:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000646355253960103, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88409912, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8865195, + 51.288795199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MarlVerc", + "uid": "11537820", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T13:33:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.03127159999315e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88407127, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26565, + 51.244433 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MarlVerc", + "uid": "11537820", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T13:32:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.03127159999315e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88407088, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26565, + 51.244433 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Test Comm", + "uid": "11537158", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T11:19:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000104392124399867, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88400271, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9885882, + 50.750253650000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T10:36:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88397910, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3463936, + 50.8499268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T10:35:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88397901, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3463936, + 50.8499268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T10:35:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88397894, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3463936, + 50.8499268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T09:37:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88394725, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2271059, + 51.1784193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T08:40:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88391388, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3391141, + 50.855486 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FrancisD", + "uid": "2864854", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T08:11:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88389632, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3788755, + 50.8563481 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T08:11:37Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000320075037899752, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88389604, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75239375, + 51.03135685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "FrancisD", + "uid": "2864854", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T08:11:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88389573, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3788755, + 50.8563481 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7739412151", + "osm_id": 7739412151, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "FrancisD", + "uid": "2864854", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T08:10:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88389541, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3782784, + 50.8564657 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T08:10:33Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000572848235001483, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88389537, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75068705, + 51.02917995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T07:35:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000574179969000023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88387523, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75117895, + 51.02667195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-23T07:35:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.54135800008645e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88387475, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7530675000000002, + 51.02868705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T20:38:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88368192, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3366036, + 50.8564105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T20:31:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88367965, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3355967, + 50.8675211 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T20:31:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88367957, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3355967, + 50.8675211 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mroosen", + "uid": "11533430", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T19:27:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000191921729600272, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88365796, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5016429, + 50.82808205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mroosen", + "uid": "11533430", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T19:26:39Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.83849719998953e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88365747, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4918785, + 50.82728695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mroosen", + "uid": "11533430", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T19:24:44Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000231283711899948, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88365676, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.489625650000001, + 50.82792015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mroosen", + "uid": "11533430", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T19:22:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.33411100000821e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88365588, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4882334, + 50.82680485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "way-223982841", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 223982841, + "reasons": [ + 489 + ], + "version": 3 + } + ], + "user": "mroosen", + "uid": "11533430", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T19:21:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.93549409998731e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88365551, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48977135, + 50.826883249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mroosen", + "uid": "11533430", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T19:21:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000703555124999894, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88365530, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.487999950000001, + 50.82756585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mroosen", + "uid": "11533430", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T19:19:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.86752080005431e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88365468, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4848993, + 50.8238658 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mroosen", + "uid": "11533430", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T19:18:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000271363811879936, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88365406, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4822355, + 50.831311150000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mroosen", + "uid": "11533430", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T19:16:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000466292527200038, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88365363, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.505963400000001, + 50.8259544 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mroosen", + "uid": "11533430", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T19:15:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000466292527200038, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88365327, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.505963400000001, + 50.8259544 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mroosen", + "uid": "11533430", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T19:14:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000287874723149927, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88365269, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48650005, + 50.81478745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T17:10:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88360957, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3376121, + 50.8554947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SustainableMobile", + "uid": "291048", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T12:49:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.74397759997275e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88350361, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6929562000000002, + 51.036868999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T11:19:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000170035946000313, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88345106, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7665793499999998, + 51.0272743 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T11:18:04Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000381851826339921, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88345038, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7550998499999997, + 51.0210943 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T10:35:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000383573753099713, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88342567, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75214055, + 51.02767745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T10:33:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000330135000000151, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88342446, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75821715, + 51.0279337 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hans Hillewaert", + "uid": "594516", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T09:51:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000022718849099988, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88339968, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0645501, + 51.26090215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hans Hillewaert", + "uid": "594516", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T09:50:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000022718849099988, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88339958, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0645501, + 51.26090215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hans Hillewaert", + "uid": "594516", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T09:50:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000022718849099988, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88339919, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0645501, + 51.26090215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hans Hillewaert", + "uid": "594516", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T09:49:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000022718849099988, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88339889, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0645501, + 51.26090215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hans Hillewaert", + "uid": "594516", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T09:29:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000022718849099988, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88338703, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0645501, + 51.26090215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Matthias Van Wijnendaele", + "uid": "10345206", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-22T08:39:48Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00000195859375000199, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T09:45:06.050390Z", + "id": 88335541, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37713445, + 50.856560349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "nros91", + "uid": "8178736", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T22:00:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T09:48:07.785464Z", + "id": 88313973, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3960494, + 50.8734257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "nros91", + "uid": "8178736", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T21:59:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T09:48:14.091706Z", + "id": 88313944, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3960494, + 50.8734257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T16:35:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000336784650419868, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88303789, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40074975, + 51.0872499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T16:34:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000336784650419868, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88303738, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40074975, + 51.0872499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:54:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T10:16:23.342892Z", + "id": 88302519, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3658021, + 50.8460488 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:53:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T10:19:07.999934Z", + "id": 88302462, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3688035, + 50.8457151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:52:22Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T10:17:42.390588Z", + "id": 88302417, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3725157, + 50.8461301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:45:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T07:32:38.462660Z", + "id": 88302159, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3855244, + 50.8398804 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:44:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T10:17:29.418242Z", + "id": 88302139, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3855244, + 50.8398804 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:42:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88302052, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.391436, + 50.8382323 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:40:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T07:40:36.040133Z", + "id": 88301987, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3971008, + 50.8395383 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:39:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T07:46:36.482772Z", + "id": 88301968, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3971008, + 50.8395383 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:37:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T07:48:18.056422Z", + "id": 88301869, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4002283, + 50.8387286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:36:56Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.98939000000982e-9, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T08:00:15.983082Z", + "id": 88301822, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40165255, + 50.835992149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:33:42Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T08:00:50.080733Z", + "id": 88301752, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4020978, + 50.8346904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:32:28Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 8.64614390004819e-7, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T08:06:40.094999Z", + "id": 88301726, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40304325, + 50.83308865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Ubipo", + "uid": "3797928", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:31:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T12:15:13.514009Z", + "id": 88301712, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37004, + 50.8582239 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:31:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T08:07:01.261634Z", + "id": 88301709, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4044554, + 50.8319664 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:30:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T08:07:05.811734Z", + "id": 88301686, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4044554, + 50.8319664 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:30:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T08:11:48.646419Z", + "id": 88301656, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4045869, + 50.8315462 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Ubipo", + "uid": "3797928", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:29:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T12:16:15.025217Z", + "id": 88301640, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3695009, + 50.8603064 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ubipo", + "uid": "3797928", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:28:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88301617, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3689939, + 50.8613645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ubipo", + "uid": "3797928", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:28:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88301583, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.367449, + 50.8621975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ubipo", + "uid": "3797928", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:27:33Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00000158465700000247, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88301552, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3720315, + 50.8632615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:27:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T08:16:20.954526Z", + "id": 88301524, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4052467, + 50.8274701 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:22:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.27078399993567e-8, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T08:15:54.904411Z", + "id": 88301396, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.408762299999999, + 50.8234587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:22:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T08:16:37.198343Z", + "id": 88301372, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4088167, + 50.8234003 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ubipo", + "uid": "3797928", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:17:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88301199, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3724674, + 50.8700252 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ubipo", + "uid": "3797928", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:16:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88301166, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3737924, + 50.872923 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T15:00:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88300566, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3247565, + 50.8452762 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:57:22Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T12:18:44.466702Z", + "id": 88300471, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3507791, + 50.8521774 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:55:19Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 1.88995400003488e-8, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T14:44:10.490907Z", + "id": 88300406, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34983225, + 50.852829299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:55:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T14:52:59.576796Z", + "id": 88300402, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4090586, + 50.8478244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:54:03Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 8.56920000014573e-9, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2020-07-23T08:25:02.544702Z", + "id": 88300349, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.349619000000001, + 50.852505050000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:52:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T08:25:27.242296Z", + "id": 88300278, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3496928, + 50.8523636 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:51:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T14:56:11.250065Z", + "id": 88300258, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4025274, + 50.8173789 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:51:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88300240, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3489471, + 50.8521317 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manon Bld", + "uid": "11526281", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:49:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T12:46:57.994633Z", + "id": 88300158, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3504545, + 50.8573248 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:48:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T12:47:27.139545Z", + "id": 88300151, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3525815, + 50.8564754 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:48:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T12:47:46.336390Z", + "id": 88300150, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.347783, + 50.8526634 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:47:18Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.90194000017962e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88300098, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3501367, + 50.85744905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manon Bld", + "uid": "11526281", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:46:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T13:41:06.539901Z", + "id": 88300085, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3452135, + 50.8585913 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:46:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T15:02:25.257438Z", + "id": 88300073, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3774751, + 50.8665262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:46:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T15:02:48.119341Z", + "id": 88300062, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3810263, + 50.8671864 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:45:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88300049, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3809235, + 50.8670815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:45:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88300040, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3802941, + 50.8669968 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:44:43Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88300007, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.381198, + 50.8646996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:44:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T12:51:31.637962Z", + "id": 88299980, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3793553, + 50.8641765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:43:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299961, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3429711, + 50.8606678 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:43:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299960, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3780109, + 50.8656585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:43:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299932, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.377536, + 50.8636299 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:41:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299869, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3770865, + 50.8634901 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:41:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299856, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3767719, + 50.86371 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:40:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299838, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3763727, + 50.8629043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:40:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299816, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3760169, + 50.8611902 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:40:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299810, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3357185, + 50.8674325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:39:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299797, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3748581, + 50.8591647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:39:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299775, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3739918, + 50.8579846 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:38:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 3.47786000029223e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299756, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33555165, + 50.867540399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:38:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299753, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3730628, + 50.8568965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:38:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299742, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3723431, + 50.856511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:37:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299733, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3715975, + 50.8550379 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:37:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299710, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3713355, + 50.8547681 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:37:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299707, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3714267, + 50.8547427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:36:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299703, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3345007, + 50.8677983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:36:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299677, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3707293, + 50.8536455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:35:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299663, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3705273, + 50.8539395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:35:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299657, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3347099, + 50.8682266 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:34:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299619, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3698978, + 50.852367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:34:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T08:42:40.508989Z", + "id": 88299615, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.417676, + 50.8267178 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:34:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299612, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3688569, + 50.8528166 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:33:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299583, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3428612, + 50.8595615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:33:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-26T13:34:33.580348Z", + "id": 88299576, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3411633, + 50.8367377 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:33:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299571, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3630689, + 50.8483497 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:33:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299547, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3656868, + 50.8522857 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:32:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299545, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3345302, + 50.8702039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:32:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.77876000001505e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299540, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41794425, + 50.826812700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:32:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299530, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3427405, + 50.8595801 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:32:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299529, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4050117, + 50.8462401 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:32:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299514, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.418081, + 50.8268635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:32:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299511, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3348628, + 50.8710452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:30:36Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.07096199999867e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299466, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40556905, + 50.8441968 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:30:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299438, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3376765, + 50.8719475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:28:22Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299391, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4061672, + 50.8423423 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:28:19Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.37612999980066e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299389, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3385012, + 50.87226915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:27:49Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 6.64483200004925e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299375, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4185531000000005, + 50.82766915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:26:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299327, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3409568, + 50.8727819 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:26:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.76887499999452e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299323, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4026763, + 50.84177715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:26:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299322, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4184619, + 50.8278513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:26:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-26T13:37:33.491283Z", + "id": 88299307, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3248099, + 50.8453104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:25:50Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299298, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3417212, + 50.8729988 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:24:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299256, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3411767, + 50.8729666 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:24:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299231, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3415791, + 50.8590959 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:20:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T09:50:47.148698Z", + "id": 88299187, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3439341, + 50.8585659 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:19:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:55:21.202961Z", + "id": 88299166, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3447199, + 50.8585507 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:18:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299143, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3983973, + 50.8427953 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:18:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T14:01:09.664509Z", + "id": 88299142, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3452135, + 50.8585913 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:17:53Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 1.03458280001422e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299083, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39732665, + 50.8425582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:16:24Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-26T13:38:16.332497Z", + "id": 88299065, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3426037, + 50.8328117 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:16:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299062, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3435264, + 50.8577515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:15:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299057, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3454415, + 50.8703209 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:15:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299036, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3636188, + 50.8504721 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:14:59Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 5.1920000003288e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299018, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3433493, + 50.8700027 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:14:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88299013, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3629348, + 50.8480545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:13:58Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.8082000002354e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298994, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39540145, + 50.8449886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:13:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298989, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3416703, + 50.8686069 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:12:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298981, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3636224, + 50.8496825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:12:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298978, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4124216, + 50.8259927 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:11:24Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298964, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4120166, + 50.8261773 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:10:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T15:05:56.894813Z", + "id": 88298949, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3433018, + 50.8325133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:10:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298947, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3932376, + 50.8471555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:10:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T15:07:42.553547Z", + "id": 88298943, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3433018, + 50.8325133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:10:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298934, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3433018, + 50.8325133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:09:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298923, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3948523, + 50.8473011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:08:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298901, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3433574, + 50.8327626 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:08:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298897, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4148329, + 50.8247355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:07:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298887, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3571587, + 50.8068178 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:07:20Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 5.32608000003957e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298868, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3975613, + 50.8477389 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:07:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298858, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3426493, + 50.8558823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:06:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T15:10:14.994859Z", + "id": 88298836, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3572754, + 50.8075263 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:06:24Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 6.6939119999599e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298835, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3424964, + 50.85560205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:05:10Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.21620999982949e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298789, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39981035, + 50.848322350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:04:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298757, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34196, + 50.8557096 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:04:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298756, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4127917, + 50.820469 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:04:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298754, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.356012, + 50.8075687 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:03:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298740, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4127917, + 50.820469 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:03:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298735, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3415549, + 50.8559077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:02:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298695, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3394145, + 50.8628778 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T14:00:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298633, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4080613, + 50.8501826 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:59:23Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.25133599991863e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298584, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4081956, + 50.8492639 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:57:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:22:08.971287Z", + "id": 88298521, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3102831, + 50.8574603 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:57:37Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298515, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4303558, + 50.8476864 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:56:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298484, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3421772, + 50.8610461 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:56:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T09:40:45.384789Z", + "id": 88298467, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.344732, + 50.8325957 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:56:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298466, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4084144, + 50.8482351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:56:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298465, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.344732, + 50.8325957 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:55:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-22T15:10:29.077113Z", + "id": 88298444, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.353818, + 50.8115585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:55:21Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.31013299998715e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298438, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33895585, + 50.85551145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:55:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298431, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3421772, + 50.8610461 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:54:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298426, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3533701, + 50.8118262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:54:28Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 1.19902830000932e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298402, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35359405, + 50.81169235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:53:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298373, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.341799, + 50.8591008 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:53:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-26T13:39:47.262564Z", + "id": 88298362, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37832, + 50.8667361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:53:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298359, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3774751, + 50.8665262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:52:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298353, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3535095, + 50.8116873 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:52:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298348, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4119526, + 50.8198782 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:52:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298327, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3420431, + 50.8589349 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manon Bld", + "uid": "11526281", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:51:50Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T08:49:20.143472Z", + "id": 88298306, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3398651, + 50.8563174 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:51:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298295, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4192344, + 50.8484603 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:50:46Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.50449999994778e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298263, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34938965, + 50.8710755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:50:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:17:52.654795Z", + "id": 88298258, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37832, + 50.8667361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:49:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298226, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3512243, + 50.8113771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:49:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:18:23.441374Z", + "id": 88298224, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3786418, + 50.866792 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:49:06Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.07837200004382e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298190, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3809749, + 50.867133949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:48:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298180, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4167507, + 50.8184864 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:48:49Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298175, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.415144, + 50.8443907 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:48:48Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.22389799989084e-8, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:18:49.263249Z", + "id": 88298172, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3789262, + 50.866851249999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:48:43Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298169, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3402621, + 50.8563443 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manon Bld", + "uid": "11526281", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:48:34Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.49453200010539e-8, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T09:10:53.288272Z", + "id": 88298165, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3388848, + 50.8555241 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:48:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298153, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35094, + 50.8111805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:47:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.41428100040579e-8, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:18:52.414264Z", + "id": 88298138, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37942505, + 50.86688595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:47:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298116, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4140148, + 50.8440774 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:46:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298094, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3802941, + 50.8669968 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:46:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298086, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3798032, + 50.8668953 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:45:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298063, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3811738, + 50.8648672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manon Bld", + "uid": "11526281", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:45:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298054, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3385831, + 50.8558653 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:45:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298052, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3378025, + 50.85621 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:45:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:22:43.443808Z", + "id": 88298037, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2964818, + 50.8612672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:45:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298036, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4105279, + 50.8432594 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manon Bld", + "uid": "11526281", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:45:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88298021, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3369094, + 50.8549391 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:45:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:34:18.242383Z", + "id": 88298013, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2964818, + 50.8612672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:44:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:23:16.017042Z", + "id": 88297993, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2964818, + 50.8612672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:44:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-21T14:05:43.310222Z", + "id": 88297982, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2964818, + 50.8612672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:44:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-21T14:08:39.707876Z", + "id": 88297979, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3372178, + 50.8558167 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:44:13Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.2060670000485e-8, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-21T14:09:25.461014Z", + "id": 88297964, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40872615, + 50.84291045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:43:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.7700605999815e-7, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-21T14:10:40.745869Z", + "id": 88297936, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38091365, + 50.8646971 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:43:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-21T14:11:03.000656Z", + "id": 88297927, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2964818, + 50.8612672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:43:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-21T14:38:28.984299Z", + "id": 88297914, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3376121, + 50.8554947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:42:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297907, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.342947, + 50.8345176 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:42:52Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297905, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.342947, + 50.8345176 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:42:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297902, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4091345, + 50.8425277 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manon Bld", + "uid": "11526281", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:42:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297884, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3397686, + 50.8533729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:42:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297877, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3497491, + 50.8712157 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:41:49Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297868, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3806535, + 50.864527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:41:38Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 2.69176050000366e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297857, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40922305, + 50.84187815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:41:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297850, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3363595, + 50.8546935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:41:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297831, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3793553, + 50.8641765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:40:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297825, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3429953, + 50.83446 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:40:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297810, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3786258, + 50.864874 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:40:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297804, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4088596, + 50.8146141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:39:43Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297769, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3383014, + 50.8534929 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:39:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297765, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4088596, + 50.8146141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:39:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297761, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4088596, + 50.8146141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:38:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297716, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3435585, + 50.8101178 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:38:08Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.50838000000444e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297691, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4107613, + 50.842228750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:38:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297690, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3780109, + 50.8656585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:38:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297688, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3786258, + 50.864874 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:38:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297685, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3361315, + 50.8547901 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:38:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297684, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4102114, + 50.8144057 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:37:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297651, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3779981, + 50.8652143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:36:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297619, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4104019, + 50.8141345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:36:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297617, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3779981, + 50.8652143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:36:08Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 8.6146829999257e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297582, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41417975, + 50.842864750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:35:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-21T13:46:38.175353Z", + "id": 88297546, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4110376, + 50.8141243 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:33:52Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-21T13:55:45.974040Z", + "id": 88297501, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4118342, + 50.8140311 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:33:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-21T13:57:45.671847Z", + "id": 88297472, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3775433, + 50.863739 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:33:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-21T14:00:08.442564Z", + "id": 88297470, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4120273, + 50.8141515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:33:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-21T14:00:40.308206Z", + "id": 88297467, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4120273, + 50.8141515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:33:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-21T14:01:38.069564Z", + "id": 88297461, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3373251, + 50.8102755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:32:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297449, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3455273, + 50.8364521 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:32:47Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.88864699997571e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297448, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4154766500000004, + 50.84304175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:32:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297437, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3774585, + 50.8635053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:32:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297424, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3451196, + 50.8509104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:32:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297418, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3398947, + 50.8533779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:31:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297371, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4171382, + 50.8440639 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manon Bld", + "uid": "11526281", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:31:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:29:02.159940Z", + "id": 88297370, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3567175, + 50.8489193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:30:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297356, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4150823, + 50.8139871 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:30:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297346, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.340643, + 50.8532222 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:30:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297332, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3452269, + 50.8364385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:30:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297330, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4150823, + 50.8139871 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:30:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297323, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3762767, + 50.8635623 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:30:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297314, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3763323, + 50.8634976 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:29:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:30:21.757564Z", + "id": 88297301, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3537107, + 50.8725521 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:29:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:31:24.383477Z", + "id": 88297298, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3063536, + 50.8552321 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:29:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:31:37.211444Z", + "id": 88297297, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4097823, + 50.8001662 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:29:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:31:43.364973Z", + "id": 88297294, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4097823, + 50.8001662 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:28:28Z", + "reviewed_features": [], + "create": 3, + "modify": 1, + "delete": 0, + "area": 1.21555200001729e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297239, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.417856199999999, + 50.8425023 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:28:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297232, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3552423, + 50.8713569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:27:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297194, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4171745, + 50.8144463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:27:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297184, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.337545, + 50.8066992 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:26:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297167, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4171745, + 50.8144463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:26:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297153, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3760169, + 50.8611902 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:26:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297150, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4169948, + 50.814587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manon Bld", + "uid": "11526281", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:26:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297148, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3567175, + 50.8489193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:25:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297139, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3384328, + 50.8055618 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:25:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297136, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3761167, + 50.8616121 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:25:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297115, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4169948, + 50.814587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:25:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-23T06:24:26.714875Z", + "id": 88297104, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4112977, + 50.7990626 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:24:58Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 7.71041879999003e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297088, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42077265, + 50.8439741 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:24:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297061, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3384328, + 50.8055618 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:24:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297053, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3759409, + 50.8606027 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:23:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88297045, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3435156, + 50.8525025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:22:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296996, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3383953, + 50.8054042 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:22:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296988, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3573107, + 50.8473322 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manon Bld", + "uid": "11526281", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:22:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296985, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3573107, + 50.8473322 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:22:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296965, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3383953, + 50.8054042 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:22:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296961, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4241858, + 50.8441265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:22:12Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 2.76273800001148e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296958, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3557908, + 50.87209815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:22:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:32:11.956984Z", + "id": 88296951, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4110966, + 50.7976318 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:22:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296944, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3748581, + 50.8591647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:21:50Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296933, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3442693, + 50.8517862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:20:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296888, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4259453, + 50.8447261 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:20:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296870, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3448755, + 50.8515068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:19:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296833, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4263154, + 50.8442231 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:19:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296820, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3446904, + 50.8512545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:18:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": true, + "checked": true, + "check_date": "2020-07-21T13:40:38.911656Z", + "id": 88296778, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3741599, + 50.8585981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:18:15Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 4.56652279999118e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296771, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.427546550000001, + 50.8437967 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:17:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296738, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3739918, + 50.8579846 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:17:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296732, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3451384, + 50.8509632 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:17:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296729, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3727356, + 50.8568897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:17:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296716, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.395779, + 50.8660741 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:16:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296690, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3738282, + 50.8566758 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:16:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:35:50.582856Z", + "id": 88296677, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.309237, + 50.851031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:15:31Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.10890500000963e-8, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:40:25.930045Z", + "id": 88296651, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39545155, + 50.867200749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:15:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:35:47.121138Z", + "id": 88296631, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3097922, + 50.8511173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:14:50Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.08117600002028e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296626, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42547725, + 50.8434872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:14:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296620, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3483624, + 50.8388065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:14:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296609, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3730628, + 50.8568965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:14:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296608, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3727356, + 50.8568897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:14:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:30:14.788814Z", + "id": 88296594, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3529463, + 50.8710276 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:14:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:48:00.063433Z", + "id": 88296590, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3951313, + 50.8678769 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:13:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:36:54.495699Z", + "id": 88296584, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3108812, + 50.8512443 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:13:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296554, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4195831, + 50.7984455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:13:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T07:58:38.083435Z", + "id": 88296550, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3959068, + 50.8683526 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:12:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:38:10.354868Z", + "id": 88296533, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3477213, + 50.8390369 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:12:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296531, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4179979, + 50.8162071 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:12:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296530, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4259748, + 50.841094 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:12:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296519, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3725157, + 50.8566374 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:12:22Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296511, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3110394, + 50.8515441 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:12:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296497, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3477213, + 50.8390369 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:12:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296486, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4179979, + 50.8162071 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:11:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296477, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3725157, + 50.8566374 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:11:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296474, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3723431, + 50.856511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:11:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296470, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3395138, + 50.8032752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:11:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296459, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4195831, + 50.7984455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:11:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:00:51.339445Z", + "id": 88296455, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3969636, + 50.8700031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:11:16Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 1.10667359999718e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296454, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.351508600000001, + 50.8708099 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:11:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296441, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3395138, + 50.8032752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:10:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296431, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4195831, + 50.7984455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:10:37Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296425, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4195831, + 50.7984455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:10:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296424, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3395138, + 50.8032752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:10:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296413, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4200525, + 50.8176306 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:10:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296406, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3483034, + 50.8509971 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:09:49Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296391, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4256181, + 50.835113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:09:49Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296390, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3715975, + 50.8550379 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:09:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296387, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4200525, + 50.8176306 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:09:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296385, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3393072, + 50.8035633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:09:37Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296380, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3475497, + 50.8389624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:09:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296379, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3393072, + 50.8035633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:09:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296363, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4206452, + 50.8175069 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:08:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296347, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3469837, + 50.8391927 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:08:42Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.86296999976823e-9, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:04:24.718389Z", + "id": 88296343, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40321655, + 50.86735565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:08:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296341, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3714267, + 50.8547427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:08:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296332, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3713355, + 50.8547681 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:08:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296329, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3398196, + 50.8038362 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Piotr Barczak", + "uid": "11526233", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:08:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296324, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4206452, + 50.8175069 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:08:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296319, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4267258, + 50.8371728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:07:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:04:48.429391Z", + "id": 88296298, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.346922, + 50.8392351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:07:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296282, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3398196, + 50.8038362 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:07:24Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296281, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4191888, + 50.7987507 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:06:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296258, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3705273, + 50.8539395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:06:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.85983999956655e-9, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:05:34.347451Z", + "id": 88296231, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39623045, + 50.8709299 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:06:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296230, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4272448, + 50.8369619 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:05:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296203, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3707696, + 50.8537149 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:04:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:05:57.673550Z", + "id": 88296181, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3479869, + 50.8397906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:04:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296180, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3707293, + 50.8536455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:04:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296178, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4190627, + 50.7984523 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:04:49Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.25460000036224e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296174, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42787785, + 50.8372253 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:04:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296172, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4190627, + 50.7984523 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:04:32Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 1.22896199995038e-8, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:09:08.400538Z", + "id": 88296165, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.404670250000001, + 50.8669833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:04:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296156, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3419573, + 50.8029921 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:04:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296155, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3479332, + 50.8398872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:03:56Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 2.25516060000664e-7, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:14:56.984141Z", + "id": 88296143, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.351720500000001, + 50.87199165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:03:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296126, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3479332, + 50.8398872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:02:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296098, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3480727, + 50.8398855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:02:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296094, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4186569, + 50.7983248 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:02:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296073, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4295596, + 50.8369196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:01:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296050, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.369587, + 50.8525395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:01:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296036, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4038954, + 50.8660834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:01:08Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 9.62669399973408e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296008, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43064785, + 50.8370712 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:01:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88296006, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4183077, + 50.7982302 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T13:00:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295987, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.352847, + 50.8500183 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katlijndc", + "uid": "10954098", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:59:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295944, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.352847, + 50.8500183 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:59:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295933, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3698978, + 50.852367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:59:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295908, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4031173, + 50.8639462 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:58:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295895, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4031504, + 50.8637262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:58:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295875, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4174749, + 50.7982879 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:58:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295863, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.354915, + 50.8044109 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:57:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295840, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4167158, + 50.7980624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:57:56Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 9.62130000024667e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295839, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40303505, + 50.863534 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:57:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295833, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3691173, + 50.8526329 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:57:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295825, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4335762, + 50.8372092 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:57:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295820, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.330126, + 50.852113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:57:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295795, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3494326, + 50.8408086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:56:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295765, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4032074, + 50.8632851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:55:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295749, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4167158, + 50.7980624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:55:37Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295743, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4034615, + 50.8630301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:54:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295676, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4358239, + 50.8402607 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:53:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295646, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3482068, + 50.8723833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:53:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295618, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.348121, + 50.872292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:53:01Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.60445999984925e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295616, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4353491, + 50.84090345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:53:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295615, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3961808, + 50.8709155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:52:22Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295583, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4020621, + 50.8605864 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:52:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295580, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.348121, + 50.872292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:52:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295578, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3961808, + 50.8709155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:51:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295537, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4017757, + 50.8601498 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:51:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295526, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3656573, + 50.8523755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:50:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295517, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3656868, + 50.8522857 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:50:33Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.17722400003037e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295496, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4351439, + 50.8414793 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:49:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295473, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3359813, + 50.8496661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:49:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295443, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3995083, + 50.8581958 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:48:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295435, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.364904, + 50.8518379 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:48:52Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295432, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4353947, + 50.8436032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:48:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295402, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3479091, + 50.871076 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:47:47Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.11285999938519e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295388, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43563845, + 50.8440905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:47:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295366, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3501823, + 50.8416436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:47:22Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295364, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3980068, + 50.8572745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:47:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295347, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3960145, + 50.8684696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:45:56Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 7.59919999996293e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295294, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4359446, + 50.8445601 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:44:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295245, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3478179, + 50.8715415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:44:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295235, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3942469, + 50.8687133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:44:33Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 7.34647999952802e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295233, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3945314, + 50.857505849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:43:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295190, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3644374, + 50.85094 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:43:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295174, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3636188, + 50.8504721 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:42:58Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 1.39188640001254e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295163, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.435716599999999, + 50.84489375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:42:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295135, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3389371, + 50.8501267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:42:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295127, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3938038, + 50.8580383 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:41:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295121, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3587023, + 50.8019784 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:41:55Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295119, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3930185, + 50.8678906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:40:47Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 4.29655680001546e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295078, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3927379, + 50.8577739 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:40:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295070, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3636224, + 50.8496825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:40:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295046, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4366325, + 50.8468668 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:39:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295040, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3477669, + 50.8713689 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:39:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88295010, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3636224, + 50.8496825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:38:43Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294985, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3477669, + 50.8713689 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:37:45Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.13957600000169e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294938, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3930574, + 50.8663815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:37:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294923, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3386018, + 50.8496491 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:37:21Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 1.8007528000043e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294920, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3905080000000005, + 50.8574691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:37:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294914, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.363305, + 50.8483198 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:37:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294909, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3584784, + 50.8054322 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Elise_Cerise", + "uid": "11526278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:36:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294895, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3386018, + 50.8496491 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alice_Detollenaere", + "uid": "3664236", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:36:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294893, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.363305, + 50.8483198 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:35:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294847, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.357903, + 50.8060347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:35:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294838, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4294778, + 50.8485916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:34:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294795, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3630689, + 50.8483497 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:34:10Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.60653600004421e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294779, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4292122, + 50.848564100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:32:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294704, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4254759, + 50.8482622 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:32:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294698, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3630189, + 50.8483378 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:32:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294695, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3837246, + 50.8657509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:31:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294673, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3519843, + 50.8440983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:31:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294664, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4163376, + 50.7981539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:31:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294652, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.425154, + 50.8476441 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:31:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294650, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3519843, + 50.8440983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:30:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294616, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4163376, + 50.7981539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:29:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294597, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.382472, + 50.8661098 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:28:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294536, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4251259, + 50.8476458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:27:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294510, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3830568, + 50.8686117 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:27:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294498, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4163537, + 50.7981472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:26:14Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.70389000026179e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294449, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38805565, + 50.85961185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:25:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294434, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4163537, + 50.7981472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:25:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294416, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3630341, + 50.8097975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:25:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294409, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3531743, + 50.8445076 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:24:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294377, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3531743, + 50.8445076 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "PierreBarban", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:24:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2020-07-27T08:47:23.644005Z", + "id": 88294375, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3795002, + 50.8678415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:24:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294371, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4192089, + 50.8000429 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:24:40Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.27132079997898e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294369, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41747285, + 50.8454543 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:24:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294357, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3574899, + 50.8100162 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:23:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294317, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3584609, + 50.8095602 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:22:46Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 4.74890599998883e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294294, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3839962, + 50.86089315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:22:24Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294275, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4173957, + 50.8462224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matterYflow", + "uid": "7924617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:21:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294256, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3576133, + 50.808145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:21:44Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000102883602001411, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294250, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3780303, + 50.868904549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:21:25Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.65019199993414e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294237, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4175198, + 50.84609915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:21:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294229, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4192089, + 50.8000429 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:20:15Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00000141198936000331, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294188, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3842179, + 50.8601782 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:19:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294140, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4202295, + 50.8011579 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:18:18Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 2.32729470000073e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294113, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3742148499999995, + 50.86801165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toon Nelissen", + "uid": "6390681", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:17:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.24639100005919e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294072, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.372696550000001, + 50.86730875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:16:50Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.09166399999089e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294054, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3832006, + 50.85935975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vVYou", + "uid": "11526185", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:16:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294052, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4080979, + 50.8480251 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jeannette_b", + "uid": "11526066", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:15:29Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.78936259999178e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88294000, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3725118, + 50.86722925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:15:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88293988, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3838555, + 50.8585287 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:12:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88293861, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3850178, + 50.859431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:11:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88293818, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.385824, + 50.8587364 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:10:10Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 5.5676798000093e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88293786, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38656715, + 50.8585491 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:06:36Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.33292000104762e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88293643, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3874906, + 50.858695850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:05:13Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.10729999990535e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88293587, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3892119, + 50.85896985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:02:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88293504, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3894533, + 50.859096 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:02:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88293492, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3576747, + 50.8454515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T12:01:49Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 8.13332999954078e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88293452, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38952215, + 50.85902205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T11:59:59Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.03937999984424e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88293375, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38885625, + 50.8580712 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T11:58:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88293294, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3888321, + 50.858223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "VéloJesse", + "uid": "7490172", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T11:56:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88293250, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3890279, + 50.8581823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tbowdecl97", + "uid": "11460222", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T11:41:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88292596, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3530723, + 50.8463519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T11:38:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88292458, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3738112, + 50.8401918 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annelies21", + "uid": "11525597", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T09:52:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000597087039000546, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88287986, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43062795, + 51.17362995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annelies21", + "uid": "11525597", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T09:51:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000113988111999676, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88287927, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.439880499999999, + 51.1732936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annelies21", + "uid": "11525597", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T09:49:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000113988111999676, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88287853, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.439880499999999, + 51.1732936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T09:47:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000358494405459963, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88287725, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3846173, + 51.099990250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T09:46:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000358494405459963, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88287663, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3846173, + 51.099990250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T09:45:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000358494405459963, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88287617, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3846173, + 51.099990250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annelies21", + "uid": "11525597", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T09:44:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88287607, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4456649, + 51.1702691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T09:43:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000358494405459963, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88287560, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3846173, + 51.099990250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7733494765", + "osm_id": 7733494765, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "Annelies21", + "uid": "11525597", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T09:43:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88287536, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4456649, + 51.1702691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-21T09:41:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000358494405459963, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88287452, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3846173, + 51.099990250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeGee50", + "uid": "11035016", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T19:53:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000028508434500018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88263495, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4908541500000005, + 51.07986775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeGee50", + "uid": "11035016", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T19:52:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000268168605000688, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88263438, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.490974250000001, + 51.08129115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeGee50", + "uid": "11035016", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T19:51:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000273006753600036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88263422, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.488636850000001, + 51.0799147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeGee50", + "uid": "11035016", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T19:12:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000520808646599633, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88262279, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4855931, + 51.079816050000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeGee50", + "uid": "11035016", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T19:12:24Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000109897412379961, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88262262, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48784575, + 51.0809826 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeGee50", + "uid": "11035016", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T19:10:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000197661869999963, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88262204, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.497158499999999, + 51.07989695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeGee50", + "uid": "11035016", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T19:09:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000275339501600146, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88262162, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4985888, + 51.075712499999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeGee50", + "uid": "11035016", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T19:08:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000521189410000515, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88262121, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46518055, + 51.1036978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeGee50", + "uid": "11035016", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T19:04:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000521189410000515, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88262037, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46518055, + 51.1036978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjoepap", + "uid": "11522827", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T19:00:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88261900, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3130866, + 50.8235527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjoepap", + "uid": "11522827", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T18:59:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88261857, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3130866, + 50.8235527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjoepap", + "uid": "11522827", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T18:58:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88261832, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3130866, + 50.8235527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjoepap", + "uid": "11522827", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T18:56:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88261781, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3130866, + 50.8235527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7732066377", + "osm_id": 7732066377, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "sjoepap", + "uid": "11522827", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T18:55:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88261756, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3130866, + 50.8235527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeGee50", + "uid": "11035016", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T18:54:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000521189410000515, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88261721, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46518055, + 51.1036978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeGee50", + "uid": "11035016", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T18:50:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000028508434500018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88261641, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4908541500000005, + 51.07986775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeGee50", + "uid": "11035016", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T18:43:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000275339501600146, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88261466, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4985888, + 51.075712499999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tbowdecl97", + "uid": "11460222", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T15:09:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88254014, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4017357, + 50.8218991 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tbowdecl97", + "uid": "11460222", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T14:48:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88253210, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4000083, + 50.8230648 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tbowdecl97", + "uid": "11460222", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T14:39:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88252889, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4009042, + 50.8224142 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T12:49:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88247884, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2687289, + 50.7478892 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T12:48:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88247807, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2688268, + 50.747963 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T11:58:20Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88245109, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3533956, + 50.845075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "CR4G", + "uid": "11481089", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T09:32:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000298623357700365, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88236476, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7644145499999997, + 50.86861965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TopheL", + "uid": "11482205", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T09:29:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00141629421869983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88236292, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.655791649999999, + 50.9995733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "CR4G", + "uid": "11481089", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T09:27:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000103802790000752, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88236169, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7973264, + 50.82029025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "CR4G", + "uid": "11481089", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T09:25:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000384921180500038, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88236045, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8104445499999997, + 50.82119885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TopheL", + "uid": "11482205", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T09:25:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00141629421869983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88236005, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.655791649999999, + 50.9995733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7730612545", + "osm_id": 7730612545, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + }, + { + "url": "node-7730612544", + "osm_id": 7730612544, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "Berchem Groen", + "uid": "11520190", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T09:23:36Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88235914, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4450775, + 51.1866264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7730625393", + "osm_id": 7730625393, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "Berchem Groen", + "uid": "11520190", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T09:23:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88235872, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4472662, + 51.1880066 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Berchem Groen", + "uid": "11520190", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T09:19:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000845438255999146, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88235643, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.425667, + 51.193186999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Berchem Groen", + "uid": "11520190", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T09:14:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000265229019400103, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88235329, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4300084, + 51.19560515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Berchem Groen", + "uid": "11520190", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T09:14:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000265229019400103, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88235283, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4300084, + 51.19560515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Berchem Groen", + "uid": "11520190", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-20T09:13:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000137071926000055, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88235225, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4372676, + 51.198637149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "VDHPatrick", + "uid": "11518437", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T22:03:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.95711679999985e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212868, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7671817, + 50.876973 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "VDHPatrick", + "uid": "11518437", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T22:02:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000105226999979999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212849, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7775063, + 50.88157725000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "VDHPatrick", + "uid": "11518437", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T22:00:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212820, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7598159, + 50.8744192 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "VDHPatrick", + "uid": "11518437", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T21:59:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212797, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7598159, + 50.8744192 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7729234604", + "osm_id": 7729234604, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "VDHPatrick", + "uid": "11518437", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T21:58:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212784, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7598159, + 50.8744192 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "VDHPatrick", + "uid": "11518437", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T21:57:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000145069321599978, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212759, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7616591, + 50.8841264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "KourosP", + "uid": "11518444", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T21:56:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000583393886399887, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212748, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0453585, + 51.069519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "KourosP", + "uid": "11518444", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T21:54:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000185903067900183, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212702, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1045767499999997, + 51.06856195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "KourosP", + "uid": "11518444", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T21:50:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.21336970003787e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212626, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11950525, + 51.05850625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "KourosP", + "uid": "11518444", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T21:50:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000178395743999712, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212617, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1216162, + 51.0541858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "KourosP", + "uid": "11518444", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T21:49:44Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000372713923799306, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212607, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11440915, + 51.053587300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "VDHPatrick", + "uid": "11518437", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T21:49:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000145069321599978, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212602, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7616591, + 50.8841264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "VDHPatrick", + "uid": "11518437", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T21:48:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000124828034999809, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212576, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75752635, + 50.87397245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "VDHPatrick", + "uid": "11518437", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T21:47:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000124828034999809, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88212566, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75752635, + 50.87397245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:53:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000223619896799721, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88204389, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.610867, + 50.8974388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:49:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.12863520000902e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88204280, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62386185, + 50.902992 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:46:35Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88204195, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0928659, + 51.0375967 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7728683547", + "osm_id": 7728683547, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:45:34Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 8.08281750001726e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88204161, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09326015, + 51.03713875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7728668114", + "osm_id": 7728668114, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:43:41Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 5.08568740001281e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88204114, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0932353500000005, + 51.0371489 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:42:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88204080, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0936518, + 51.0374542 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:41:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000148496879999189, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88204053, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6410793999999997, + 50.898093200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:39:38Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000010392429510002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88204013, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64063935, + 50.896533149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:38:20Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000351997229999714, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203987, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.637631, + 50.89459775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:36:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000035386300079998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203949, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6297286, + 50.893919350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:35:57Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000124779310399839, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203926, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6264713, + 50.8953765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:34:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000120473050000268, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203886, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6289713, + 50.89635695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:33:10Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000240836263200026, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203852, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6360139, + 50.896241149999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:31:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000197493357499691, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203808, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63595815, + 50.89778115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:30:18Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000180651087400193, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203778, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63548845, + 50.8985475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:29:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000137699847999762, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203743, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.635821, + 50.89986465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:28:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203730, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6287123, + 50.9005547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:27:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203704, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6287123, + 50.9005547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:26:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203682, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6259979, + 50.8997242 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:25:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.21234500001134e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203659, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.621587, + 50.90001305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:24:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.68772080003466e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203628, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62929615, + 50.8961439 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:23:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203599, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6218002, + 50.9002807 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:22:48Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 7.02589440001584e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203574, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6222706000000002, + 50.8999073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:20:41Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000163611974999271, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203524, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62663785, + 50.898960349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:19:11Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000750612973000044, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203491, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62787295, + 50.89944525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:17:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.68701849998584e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203449, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6275615500000002, + 50.89869575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:16:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.68701849998584e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203417, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6275615500000002, + 50.89869575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:15:38Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000125666197300066, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203400, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62069195, + 50.89791895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T15:13:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000250679974999729, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88203336, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61659225, + 50.89786035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T14:43:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.66965919998605e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88202539, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6197499, + 50.900567 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T14:42:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.66965919998605e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88202522, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6197499, + 50.900567 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T14:40:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.92523000000965e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88202469, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6206402, + 50.9006742 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T14:39:44Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000018797219699988, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88202315, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6224942999999996, + 50.89919745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T14:36:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000038280880000005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88202229, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6209657, + 50.898277 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T14:36:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88202214, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.617034, + 50.8982507 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7728535563", + "osm_id": 7728535563, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T14:34:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88202189, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.617034, + 50.8982507 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T14:34:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88202169, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6188471, + 50.8998629 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T14:28:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.71660819998159e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88202036, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61938105, + 50.9006129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T14:25:41Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000012754260400042, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88201955, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61868795, + 50.9004628 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T14:23:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.78824720002509e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88201903, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6185874, + 50.900162699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jorisvangarsse", + "uid": "11515752", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T14:22:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.78824720002509e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88201871, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6185874, + 50.900162699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T13:36:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000506167517280006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88200855, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2980628, + 51.1986561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T13:27:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000313192622400111, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88200650, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28474255, + 51.1995077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T13:05:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000313192622400111, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88200085, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28474255, + 51.1995077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T12:59:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000313192622400111, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88199941, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28474255, + 51.1995077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T12:59:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000313192622400111, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88199936, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28474255, + 51.1995077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T12:51:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000313192622400111, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88199787, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28474255, + 51.1995077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T12:49:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000313192622400111, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88199742, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28474255, + 51.1995077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T12:46:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000313192622400111, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88199680, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28474255, + 51.1995077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T12:42:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88199588, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2895148, + 51.201141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T12:42:24Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88199581, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2895148, + 51.201141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T12:41:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000506167517280006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88199547, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2980628, + 51.1986561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T12:10:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000506167517280006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88199005, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2980628, + 51.1986561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T10:35:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000346772758400742, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88196773, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3508994999999997, + 51.1305714 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T09:54:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000231362486000175, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88195733, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5018456000000002, + 51.1382758 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T09:54:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000514522000001237, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88195711, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5050882999999997, + 51.1367804 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #width", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-19T08:32:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.14973299997035e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88193952, + "theme": "width" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2286766499999997, + 51.21330365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T21:19:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000836495478400043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88186791, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4528277, + 50.950367099999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T21:19:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000044587407900118, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88186788, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46737855, + 50.96523815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T21:18:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000044587407900118, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88186775, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46737855, + 50.96523815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T18:53:58Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00121513517671006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88184078, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2920218500000002, + 51.15050085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T18:53:35Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00109198334016995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88184063, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29370895, + 51.15001345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:30:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180857, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2634313, + 51.1588626 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:17:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000232209641200067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180547, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2749929, + 51.1546655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:17:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000232209641200067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180535, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2749929, + 51.1546655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:14:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000232209641200067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180440, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2749929, + 51.1546655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaartenL", + "uid": "11513602", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:12:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000511353880000867, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180381, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3582886, + 50.9312506 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:11:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000232209641200067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180359, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2749929, + 51.1546655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaartenL", + "uid": "11513602", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:09:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000937392494199614, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180321, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41170085, + 51.0059228 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:09:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000232209641200067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180317, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2749929, + 51.1546655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:08:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000232209641200067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180278, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2749929, + 51.1546655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "way-234565426", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 234565426, + "reasons": [ + 489 + ], + "version": 5 + } + ], + "user": "MaartenL", + "uid": "11513602", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:07:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.123943400009e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180251, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36078665, + 51.0037077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaartenL", + "uid": "11513602", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:07:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000653970498000105, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180225, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35907555, + 51.0032827 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:07:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000232209641200067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180224, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2749929, + 51.1546655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:06:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180209, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2865858, + 51.1497939 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaartenL", + "uid": "11513602", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:05:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000011845339199989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180186, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3574842, + 51.00296315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaartenL", + "uid": "11513602", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:04:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000529954425000216, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180167, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31077565, + 50.930442549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaartenL", + "uid": "11513602", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:03:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000322381619999856, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180118, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3076343999999995, + 50.933198000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaartenL", + "uid": "11513602", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T16:01:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000322381619999856, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88180058, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3076343999999995, + 50.933198000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T15:59:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88179987, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3024627, + 51.1421623 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T15:57:42Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88179934, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3064234, + 51.1418585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T15:56:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000252393262499251, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88179905, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3134470499999997, + 51.14160085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T15:56:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000252393262499251, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88179878, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3134470499999997, + 51.14160085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T15:53:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000252393262499251, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88179802, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3134470499999997, + 51.14160085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T15:52:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000252393262499251, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88179753, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3134470499999997, + 51.14160085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T15:49:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000252393262499251, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88179693, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3134470499999997, + 51.14160085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T15:30:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000132328378659952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88179141, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3559691000000003, + 51.12926335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T14:40:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000132328378659952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88177912, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3559691000000003, + 51.12926335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T14:15:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000132328378659952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88177445, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3559691000000003, + 51.12926335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T14:07:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000132328378659952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88177282, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3559691000000003, + 51.12926335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T14:04:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000132328378659952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88177239, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3559691000000003, + 51.12926335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Nating", + "uid": "11513112", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T13:50:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000396157796000311, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88176953, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4016298000000003, + 50.88821075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Nating", + "uid": "11513112", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T13:49:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000396157796000311, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88176943, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4016298000000003, + 50.88821075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Evelinem", + "uid": "11513108", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T13:48:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.44436749999636e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88176933, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1135600500000002, + 50.86808845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Evelinem", + "uid": "11513108", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T13:46:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.94684090000188e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88176873, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7790079500000004, + 50.919962049999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Evelinem", + "uid": "11513108", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T13:44:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.0968027999897e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88176828, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78797, + 50.92165295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Evelinem", + "uid": "11513108", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T13:43:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.48613200000933e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88176812, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7952511, + 50.923246250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T13:34:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000132328378659952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88176595, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3559691000000003, + 51.12926335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T13:12:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000132328378659952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88176088, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3559691000000003, + 51.12926335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fredericp", + "uid": "11512821", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T12:10:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000877438913999052, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174879, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4644193, + 50.87955975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T12:04:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174790, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3360942, + 51.1331409 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:50:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174486, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2842925, + 51.150244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:49:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174462, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2836865, + 51.1504499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:49:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000128644287000959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174448, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28415155, + 51.15003815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:44:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174356, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.262859, + 51.1581519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:42:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174310, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2594848, + 51.1598374 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:40:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174286, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2594848, + 51.1598374 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:39:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174254, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2581356, + 51.1610032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:38:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174246, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2581356, + 51.1610032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:37:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174203, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2576475, + 51.1613615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:36:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174198, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2576475, + 51.1613615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:36:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174190, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2580471, + 51.1610806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:35:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174183, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2580471, + 51.1610806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:35:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174181, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2580471, + 51.1610806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T11:34:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88174148, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2576475, + 51.1613615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Veerle Dejaeghere", + "uid": "11512054", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T08:30:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000207800324000327, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88170260, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1988182, + 50.982229700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Veerle Dejaeghere", + "uid": "11512054", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T08:27:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000207800324000327, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88170206, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1988182, + 50.982229700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Veerle Dejaeghere", + "uid": "11512054", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T08:27:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000207800324000327, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88170197, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1988182, + 50.982229700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Veerle Dejaeghere", + "uid": "11512054", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T08:24:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000109012276640005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88170128, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2313720000000004, + 50.959137999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Veerle Dejaeghere", + "uid": "11512054", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T08:23:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000109012276640005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88170105, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2313720000000004, + 50.959137999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Veerle Dejaeghere", + "uid": "11512054", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T08:23:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000109012276640005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88170104, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2313720000000004, + 50.959137999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Merijn Van de Geuchte", + "uid": "3143814", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T08:13:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000313998102001258, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88169908, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9596172000000003, + 51.14859825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GeneralGman", + "uid": "7125513", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T07:57:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000682345985999942, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88169624, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3076216, + 51.08993805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GeneralGman", + "uid": "7125513", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T07:56:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000256148035599703, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88169608, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2929887, + 51.099601050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GeneralGman", + "uid": "7125513", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T07:55:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000580407575000245, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88169584, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30286295, + 51.095115750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GeneralGman", + "uid": "7125513", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T07:54:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000131023471799975, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88169570, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3076216, + 51.09058315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bruno Eugène", + "uid": "11511905", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T07:47:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000112784562000095, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88169460, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54498565, + 50.7701677 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bruno Eugène", + "uid": "11511905", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-18T07:45:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000112784562000095, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88169430, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54498565, + 50.7701677 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #width", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T22:54:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.09542000013789e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88163662, + "theme": "width" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22000735, + 51.2002915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T19:54:22Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88159433, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2286876, + 51.2008905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jef Deyaert", + "uid": "8521290", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T19:40:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88159033, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3276477, + 50.8503028 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jef Deyaert", + "uid": "8521290", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T19:37:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88158937, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3276477, + 50.8503028 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7725295917", + "osm_id": 7725295917, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "Jef Deyaert", + "uid": "8521290", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T19:36:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88158904, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3276477, + 50.8503028 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T19:28:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88158634, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2350606, + 51.203719 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #width", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T19:05:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.30195999999926e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88157870, + "theme": "width" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21640005, + 51.2150084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T18:44:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88157113, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2115447, + 51.2176632 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RutBar", + "uid": "11509833", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T18:43:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000349347606398927, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88157080, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.514403, + 50.964747700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RutBar", + "uid": "11509833", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T18:37:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000693902319999027, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88156833, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5206534000000005, + 50.971871199999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T18:19:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000422133605600103, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88156247, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2292307, + 51.18404165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T18:18:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000111197468800128, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88156218, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2066597, + 51.1745688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T17:54:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000483813243199048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88155379, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2812688999999997, + 51.228822199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T17:50:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000122378934999635, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88155243, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28818585, + 51.21280555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T17:49:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000335662334399882, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88155200, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2703341999999997, + 51.2003767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T17:48:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000335662334399882, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88155173, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2703341999999997, + 51.2003767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alex Van Loon", + "uid": "11509338", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T16:49:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000377566997499824, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88153253, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72196385, + 51.32333815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alex Van Loon", + "uid": "11509338", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T16:48:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000319357374000137, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88153223, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7350226, + 51.29897275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #width", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T16:45:54Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000202350772800113, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88153129, + "theme": "width" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2294147, + 51.21759885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alex Van Loon", + "uid": "11509338", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T16:40:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000759992371200237, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88152935, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7264051, + 51.293142 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #width", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T16:36:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.365552899964e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88152750, + "theme": "width" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22215615, + 51.21540295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "marijndewulf", + "uid": "1731822", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T15:41:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000373127837999846, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88150653, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00669445, + 50.8466155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "marijndewulf", + "uid": "1731822", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T15:41:06Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000691332114400621, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88150632, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9968114999999997, + 50.8515802 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "marijndewulf", + "uid": "1731822", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T15:39:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000157556668620021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88150567, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98686295, + 50.853200799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomas Verellen", + "uid": "11508923", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T15:07:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000824924300999212, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88149475, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35078955, + 50.80342465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #metamap", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-17T11:50:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88141902, + "theme": "maps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2647513, + 50.6506435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T22:03:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000895631702500027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88107671, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26850885, + 51.177712549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T22:02:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000895631702500027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88107650, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26850885, + 51.177712549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T22:01:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000895631702500027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88107625, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26850885, + 51.177712549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T21:52:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88107401, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3532469, + 50.8311614 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T21:51:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000206544994399659, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88107384, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.112303900000001, + 50.90053785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T21:37:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000145305719999977, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88107024, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1094115, + 50.903559200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T21:37:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000145305719999977, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88107012, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1094115, + 50.903559200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T21:36:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000145305719999977, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88106994, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1094115, + 50.903559200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "k_zoar", + "uid": "236217", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T12:45:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000326365130000717, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88089631, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 139.51400395000002, + 35.922686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "BavoVanderghote", + "uid": "11502284", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T12:38:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88089296, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7027761, + 50.8777923 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + }, + { + "id": 57, + "name": "Feature overlaps with existing features" + } + ], + "tags": [], + "features": [ + { + "url": "node-7721036874", + "osm_id": 7721036874, + "reasons": [ + 57, + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "BavoVanderghote", + "uid": "11502284", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T12:37:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88089251, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7027761, + 50.8777923 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T11:51:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000165729095999589, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88086585, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.059919000000001, + 51.09763865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T11:49:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00107458047378003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88086439, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0599089500000005, + 51.101628899999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T11:47:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000130383777099931, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88086354, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02603985, + 51.08862175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T11:46:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00107458047378003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88086277, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0599089500000005, + 51.101628899999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T11:44:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00107458047378003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88086153, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0599089500000005, + 51.101628899999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T11:43:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000001263110890001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88086113, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.030606049999999, + 51.08108815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T11:43:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00107458047378003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88086105, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0599089500000005, + 51.101628899999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T11:42:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000001263110890001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88086056, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.030606049999999, + 51.08108815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T11:41:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000021624140700016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88086004, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0326695, + 51.08277605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T11:41:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000001263110890001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88085971, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.030606049999999, + 51.08108815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T11:39:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000021624140700016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88085836, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0326695, + 51.08277605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T11:38:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000021624140700016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88085772, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0326695, + 51.08277605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "taveirnebert", + "uid": "11489279", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T10:34:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.69519150000871e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88081752, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30753735, + 50.86180865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "taveirnebert", + "uid": "11489279", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T10:33:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.76317999992296e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88081641, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3129078, + 50.8582773 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "taveirnebert", + "uid": "11489279", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T10:31:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.54472599999552e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88081544, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31518325, + 50.8601709 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katrijne", + "uid": "11500744", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T07:34:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.91901319999962e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88069921, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1480122, + 50.97805015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katrijne", + "uid": "11500744", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T07:31:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000301743879999293, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88069723, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1413796, + 50.96724185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katrijne", + "uid": "11500744", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T07:30:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.37568060006027e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88069637, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14744085, + 50.977749 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katrijne", + "uid": "11500744", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-16T07:29:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.37568060006027e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88069564, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14744085, + 50.977749 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T19:32:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00010037707744997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88048793, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50667785, + 50.981837049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T19:29:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.29690850000198e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88048701, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44245375, + 50.95686965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T19:25:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000395173579499631, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88048560, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47489515, + 50.961595349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T18:52:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000222796266139903, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88047430, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42577895, + 50.9699697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "EmilieSlabbinck", + "uid": "11498556", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T18:48:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000103169576720048, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88047330, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0792802000000004, + 51.09465185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "EmilieSlabbinck", + "uid": "11498556", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T18:48:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.84319880001038e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88047295, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0704181999999998, + 51.092884 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "EmilieSlabbinck", + "uid": "11498556", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T18:46:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000118288854500175, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88047255, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0655785499999997, + 51.09070625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "EmilieSlabbinck", + "uid": "11498556", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T18:45:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000118288854500175, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88047220, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0655785499999997, + 51.09070625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "EmilieSlabbinck", + "uid": "11498556", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T18:41:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000583393886399887, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88047061, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0453585, + 51.069519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annelies86", + "uid": "11498636", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T18:29:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000115399406500106, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88046597, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4322215499999995, + 51.193991749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annelies86", + "uid": "11498636", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T18:28:56Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000309198177660109, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88046577, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4383537, + 51.20189805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annelies86", + "uid": "11498636", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T18:26:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000133282310000222, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88046500, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4533707, + 51.215591149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annelies86", + "uid": "11498636", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T18:25:18Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000848539936000304, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88046461, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4561024, + 51.2134121 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Annelies86", + "uid": "11498636", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T18:23:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000273348704999931, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88046420, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4537273, + 51.21488515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T11:42:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88030837, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2115447, + 51.2176632 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T10:56:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88028271, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9989372, + 50.4072866 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7716573825", + "osm_id": 7716573825, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T10:55:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88028195, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9989372, + 50.4072866 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MvanT", + "uid": "11496423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T10:17:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000042905408000024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88025907, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8446789, + 51.333201200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MvanT", + "uid": "11496423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T10:16:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000729396269120077, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88025839, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81461, + 51.341896500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MvanT", + "uid": "11496423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T10:15:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000235869289479951, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88025764, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.811776200000001, + 51.3384403 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MvanT", + "uid": "11496423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T10:14:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000235869289479951, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88025678, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.811776200000001, + 51.3384403 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MvanT", + "uid": "11496423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T10:13:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000582369543199678, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88025605, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86464685, + 51.3330444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MvanT", + "uid": "11496423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T10:10:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000351240388750002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88025458, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89591275, + 51.32453135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MvanT", + "uid": "11496423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T10:10:05Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00146378906100008, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88025429, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8269122, + 51.33973925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MvanT", + "uid": "11496423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T10:08:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000042905408000024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88025313, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8446789, + 51.333201200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T08:36:46Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000437815788000776, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88019376, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.618468, + 50.8517577 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T07:43:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88016145, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0414613, + 51.0876541 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T07:36:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.88138960002809e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88015726, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0697657, + 51.068101 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T07:33:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.88138960002809e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88015554, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0697657, + 51.068101 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T07:32:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.88138960002809e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88015489, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0697657, + 51.068101 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T07:26:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000130383777099931, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88015151, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02603985, + 51.08862175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T07:25:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000306572851200374, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88015082, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1898556, + 50.8717779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T07:24:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000130383777099931, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88015062, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02603985, + 51.08862175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T07:19:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000199068289499997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88014719, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15997475, + 50.85758175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T07:17:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000199068289499997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88014577, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15997475, + 50.85758175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T07:16:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000199068289499997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88014511, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15997475, + 50.85758175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T07:12:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88014236, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1878563, + 50.8738251 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7715877360", + "osm_id": 7715877360, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T07:08:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88014039, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1878563, + 50.8738251 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T06:58:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.86330280004076e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88013444, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.149763, + 50.87579835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T06:57:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.86330280004076e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88013395, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.149763, + 50.87579835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T06:57:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.86330280004076e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88013379, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.149763, + 50.87579835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7715730717", + "osm_id": 7715730717, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T06:54:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88013215, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1491199, + 50.8758697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GPauwels", + "uid": "11495318", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T06:35:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000040979254679999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88012093, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8291717, + 51.09116175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T06:34:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000299543816399459, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88011975, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4227217, + 50.96488895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T06:31:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.96689219996152e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88011814, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41319335, + 50.963402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koenstr", + "uid": "2769604", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T05:30:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000157965667319932, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88008751, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3836357, + 51.0898067 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koenstr", + "uid": "2769604", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T05:28:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00025095557127002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88008701, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39766005, + 51.08570185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koenstr", + "uid": "2769604", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T05:28:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00025095557127002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88008661, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39766005, + 51.08570185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koenstr", + "uid": "2769604", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-15T05:27:03Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000572018621500035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88008622, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38243765, + 51.09636805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fluzz", + "uid": "11493650", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T21:29:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000130892558400088, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87997843, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.506774699999999, + 51.0829784 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fluzz", + "uid": "11493650", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T21:18:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000207962582400034, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87997553, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4937287999999995, + 51.0815185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fluzz", + "uid": "11493650", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T21:17:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000278522081999833, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87997523, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49803135, + 51.0833365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fluzz", + "uid": "11493650", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T21:16:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000278522081999833, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87997500, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49803135, + 51.0833365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Peter Timmerman", + "uid": "11492041", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T15:46:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000397292904000232, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87986399, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43025505, + 51.2090843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Peter Timmerman", + "uid": "11492041", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T15:45:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000397292904000232, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87986368, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43025505, + 51.2090843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Peter Timmerman", + "uid": "11492041", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T15:43:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000397292904000232, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87986259, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43025505, + 51.2090843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Peter Timmerman", + "uid": "11492041", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T15:42:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000397292904000232, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87986231, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43025505, + 51.2090843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Peter Timmerman", + "uid": "11492041", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T15:40:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000397292904000232, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87986147, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43025505, + 51.2090843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T14:12:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00261719797968005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87982845, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4644192, + 50.9635336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "janv", + "uid": "248580", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T14:12:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000149748102000148, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87982805, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86273465, + 50.839550200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T14:11:06Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000804283919999796, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87982762, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4880192, + 50.9714891 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T14:09:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000265756292100152, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87982694, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48062575, + 50.97080225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T14:07:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000146800939199986, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87982613, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4599823, + 50.9597153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T14:06:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000968635932300371, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87982570, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46413055, + 50.96487795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T14:04:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000103835400900217, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87982495, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45488445, + 50.958202549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T14:04:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000836495478400043, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87982465, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4528277, + 50.950367099999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T13:59:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000320819499600256, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87982237, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.470025, + 50.96631315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T13:24:12Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000331140307999934, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87980602, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5958926, + 50.8409595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T13:22:01Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000784820669800013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87980514, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58803365, + 50.8434125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T13:21:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000157696955999887, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87980472, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5932946, + 50.84334575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T13:20:05Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000279808001000739, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87980423, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59134975, + 50.841336150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T13:19:22Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000269791471799411, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87980385, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5887152999999996, + 50.845011650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T13:18:53Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000012148494819998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87980367, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58514855, + 50.8427758 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T13:18:25Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000041424475999987, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87980340, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.583722, + 50.8424304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T13:17:31Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000144424737199885, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87980303, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5827231, + 50.842903 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T13:17:06Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000583458418499611, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87980284, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58891285, + 50.84291145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T13:15:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000980878695002221, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87980218, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62202475, + 50.856977549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T13:14:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000257500079999597, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87980173, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6043811999999997, + 50.862952449999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T12:22:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000159068357249954, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87977722, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01385785, + 51.10211185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bertcarremans", + "uid": "11490677", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T10:41:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000620201201309825, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87971874, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38864865, + 50.961621449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bertcarremans", + "uid": "11490677", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T10:34:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.64539119997901e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87971450, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.345413000000001, + 50.9469291 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bertcarremans", + "uid": "11490677", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T10:33:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000075198335600049, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87971404, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.344146950000001, + 50.947755900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bertcarremans", + "uid": "11490677", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T10:31:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000392628125000552, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87971298, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33629045, + 50.951559 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bertcarremans", + "uid": "11490677", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T10:30:45Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000128222208100031, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87971219, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34621125, + 50.95217505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bertcarremans", + "uid": "11490677", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T10:29:29Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000488518192000036, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87971151, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3456999, + 50.951393100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bertcarremans", + "uid": "11490677", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T10:27:32Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000215504820000728, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87971027, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.344389700000001, + 50.950638049999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bertcarremans", + "uid": "11490677", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T10:25:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.16991840004662e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87970869, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3428921, + 50.95364465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bertcarremans", + "uid": "11490677", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T10:24:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000111270521500072, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87970819, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31000885, + 50.9793133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T09:15:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87966494, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1862056, + 51.2037968 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7713084593", + "osm_id": 7713084593, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "Groen St Gillis", + "uid": "11490053", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T08:33:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87964003, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3441379, + 50.832024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T08:03:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000316849456000592, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87962368, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1825307, + 50.8732991 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T07:55:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87961924, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1797185, + 50.8730262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7712937321", + "osm_id": 7712937321, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T07:50:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87961673, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1797185, + 50.8730262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T07:43:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000527510271999954, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87961294, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1902449, + 50.8710902 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T07:38:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000702704576000757, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87960975, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1938902, + 50.8673948 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T07:38:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000702704576000757, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87960961, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1938902, + 50.8673948 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T07:34:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000702704576000757, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87960766, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1938902, + 50.8673948 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T07:31:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000319343204420005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87960529, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11317745, + 50.8709444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vancauwelaertguido", + "uid": "7859613", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T07:28:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000319343204420005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87960411, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11317745, + 50.8709444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koentje", + "uid": "1417820", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T07:23:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000387036764999901, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87960109, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.744691850000001, + 50.858433000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "taveirnebert", + "uid": "11489279", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T05:23:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.79543679996479e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87953731, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26188815, + 50.907189599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "taveirnebert", + "uid": "11489279", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T05:21:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.33349560003688e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87953643, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2601750000000003, + 50.909938350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "taveirnebert", + "uid": "11489279", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-14T05:20:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.84656219998943e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87953608, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2592000499999996, + 50.9075956 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7711846552", + "osm_id": 7711846552, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T21:59:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87944068, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0987694, + 50.9268937 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T21:20:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000274856906999987, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87943233, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1289785, + 50.915012649999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T21:19:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000347950252000101, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87943209, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10793185, + 50.9241398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T20:11:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87941416, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3858907, + 50.9412038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T20:09:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000238980844799879, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87941355, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.386955, + 50.9571002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T20:08:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000238980844799879, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87941336, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.386955, + 50.9571002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T20:07:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000384860026499911, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87941283, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.395105750000001, + 50.97012395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T20:06:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000384860026499911, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87941234, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.395105750000001, + 50.97012395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T20:03:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87941143, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3791239, + 50.9606224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7711670323", + "osm_id": 7711670323, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T20:01:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87941091, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3791239, + 50.9606224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T20:00:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000018681786860014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87941016, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40777915, + 50.953843899999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T19:59:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000018681786860014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87940987, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40777915, + 50.953843899999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T19:58:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000018681786860014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87940963, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40777915, + 50.953843899999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T19:56:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000270298837998742, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87940895, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40783665, + 50.9496127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T19:55:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000270298837998742, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87940858, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40783665, + 50.9496127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "milotict", + "uid": "2436329", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T19:27:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.16958880002394e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87939914, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5488746, + 51.0158155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "milotict", + "uid": "2436329", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T19:26:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000199656603999254, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87939887, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5645518999999997, + 51.0212142 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "milotict", + "uid": "2436329", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T19:25:09Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000180719942399759, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87939848, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5624992, + 51.020253499999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "milotict", + "uid": "2436329", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T19:23:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000258690585000034, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87939765, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55925695, + 51.02377585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "milotict", + "uid": "2436329", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T19:22:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000258690585000034, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87939736, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55925695, + 51.02377585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T18:35:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87938218, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3296218, + 50.8592228 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T16:25:24Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87933827, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3296218, + 50.8592228 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T15:35:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.96636000001373e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87931718, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4440106999999998, + 51.0833456 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T15:33:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000408726800000329, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87931646, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4925595, + 51.0853096 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T15:32:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.5835870999823e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87931609, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48902985, + 51.09219625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T15:24:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.32085300001629e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87931302, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4474428, + 51.093392550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T15:23:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000219293636100001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87931266, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4432401500000003, + 51.087512849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T15:14:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000240742682999643, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87930907, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4518629499999998, + 51.09586675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T15:12:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.43898849998768e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87930827, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44826665, + 51.083352950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T15:06:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000600333975998457, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87930640, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3975533, + 51.116132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T15:03:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000102623411849936, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87930541, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4101636500000003, + 51.109664550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T15:02:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000102623411849936, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87930502, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4101636500000003, + 51.109664550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T15:01:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000102623411849936, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87930480, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4101636500000003, + 51.109664550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JonasWieleman", + "uid": "11486241", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T14:40:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000152841860699988, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87929716, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5602858, + 50.92557795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JonasWieleman", + "uid": "11486241", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T14:38:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000172889618999738, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87929652, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72887025, + 51.07650965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T14:37:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87929593, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39542, + 50.9324686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T14:35:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87929536, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39542, + 50.9324686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7710967446", + "osm_id": 7710967446, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T14:34:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87929486, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39542, + 50.9324686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katrijn Vermeiren", + "uid": "4798654", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T13:40:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.13937300000843e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87927387, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.842961300000001, + 51.32578945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katrijn Vermeiren", + "uid": "4798654", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T13:39:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000013848704099986, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87927343, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85130935, + 51.32383465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katrijn Vermeiren", + "uid": "4798654", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T13:38:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000074214861199872, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87927305, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8525411, + 51.324142800000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katrijn Vermeiren", + "uid": "4798654", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T13:37:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000171011039999995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87927238, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.852243850000001, + 51.326107199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Katrijn Vermeiren", + "uid": "4798654", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T13:36:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000582369543199678, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87927197, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86464685, + 51.3330444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bram Jaques", + "uid": "11485823", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T13:19:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.13959200007659e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87926463, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.918635, + 51.22498065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bram Jaques", + "uid": "11485823", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T13:16:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000210237299999217, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87926324, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8786572, + 51.2089128 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bram Jaques", + "uid": "11485823", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T13:14:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000210237299999217, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87926249, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8786572, + 51.2089128 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bram Jaques", + "uid": "11485823", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T13:13:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000220324260000057, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87926211, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8947456000000003, + 51.2139437 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bert Van Herck", + "uid": "11485529", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T12:52:49Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000749987502001106, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87925329, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7155057, + 51.10741415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bert Van Herck", + "uid": "11485529", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T12:50:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000495476548199808, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87925212, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6734443, + 51.06210175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "way-154186703", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 154186703, + "reasons": [ + 489 + ], + "version": 3 + }, + { + "url": "way-154186705", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 154186705, + "reasons": [ + 489 + ], + "version": 4 + }, + { + "url": "way-154186702", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 154186702, + "reasons": [ + 489 + ], + "version": 3 + }, + { + "url": "way-169232688", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 169232688, + "reasons": [ + 489 + ], + "version": 3 + }, + { + "url": "way-154186704", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 154186704, + "reasons": [ + 489 + ], + "version": 3 + } + ], + "user": "Bert Van Herck", + "uid": "11485529", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T12:45:52Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000238760381600079, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87925003, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7227855, + 51.1324795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "way-154186699", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 154186699, + "reasons": [ + 489 + ], + "version": 5 + } + ], + "user": "Bert Van Herck", + "uid": "11485529", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T12:28:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000843882488000555, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87924140, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7237341500000003, + 51.1328909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bert Van Herck", + "uid": "11485529", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T12:24:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000321942150000037, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87923942, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7219869, + 51.13479645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bert Van Herck", + "uid": "11485529", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T12:23:57Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000220151134000068, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87923886, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72294245, + 51.1324795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bert Van Herck", + "uid": "11485529", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T12:23:17Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000455553428000533, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87923840, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7225854, + 51.13238575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bert Van Herck", + "uid": "11485529", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T12:22:35Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000128908033600088, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87923801, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7229737, + 51.1328909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bert Van Herck", + "uid": "11485529", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T12:21:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000843882488000555, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87923746, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7237341500000003, + 51.1328909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bert Van Herck", + "uid": "11485529", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T12:20:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87923710, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7041682, + 51.1190275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bert Van Herck", + "uid": "11485529", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T12:16:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.0000317915786199989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87923453, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70013435, + 51.117057200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T11:20:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00037156048029999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87920359, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.377396, + 50.98296845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T11:19:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00037156048029999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87920324, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.377396, + 50.98296845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T11:16:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87920120, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4001949, + 50.9539765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7710409367", + "osm_id": 7710409367, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T11:15:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87920038, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4001949, + 50.9539765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T11:11:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000663800059999456, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87919823, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.386395, + 50.949801300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T11:11:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000663800059999456, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87919779, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.386395, + 50.949801300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T11:09:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000663800059999456, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87919658, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.386395, + 50.949801300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T11:07:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000335100213899999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87919554, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38113115, + 50.94617665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T11:06:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000335100213899999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87919510, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38113115, + 50.94617665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 510, + "name": "Mapbox: Suspiciously large feature" + } + ], + "tags": [], + "features": [ + { + "url": "way-39738790", + "osm_id": 39738790, + "reasons": [ + 510 + ], + "version": 4 + } + ], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T11:02:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000497391274001122, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87919278, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38962275, + 50.9542725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T11:01:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000497391274001122, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87919232, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38962275, + 50.9542725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 510, + "name": "Mapbox: Suspiciously large feature" + } + ], + "tags": [], + "features": [ + { + "url": "way-141417458", + "osm_id": 141417458, + "reasons": [ + 510 + ], + "version": 3 + } + ], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T11:00:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.75103760003706e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87919177, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3897408, + 50.95378675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:58:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.75103760003706e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87919075, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3897408, + 50.95378675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:54:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000609847255999418, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87918821, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39931835, + 50.931332499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:52:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000609847255999418, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87918762, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39931835, + 50.931332499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:49:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000867402828400093, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87918525, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4048398, + 50.93190095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:48:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000867402828400093, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87918463, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4048398, + 50.93190095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Detuinfee", + "uid": "11484384", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:10:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000118535692800018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87916269, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2317954, + 51.2060431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Detuinfee", + "uid": "11484384", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:09:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000118535692800018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87916220, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2317954, + 51.2060431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Sven Heyndrickx", + "uid": "11485014", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:08:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000100777751099992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87916152, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21862765, + 51.259406350000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Detuinfee", + "uid": "11484384", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:07:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000118535692800018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87916109, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2317954, + 51.2060431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Detuinfee", + "uid": "11484384", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:05:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000118535692800018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87915987, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2317954, + 51.2060431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Detuinfee", + "uid": "11484384", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:02:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000118535692800018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87915769, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2317954, + 51.2060431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lore20", + "uid": "11484998", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:02:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000135644802000075, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87915760, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2229075, + 51.20133785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lore20", + "uid": "11484998", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:01:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000213385413119928, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87915698, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2585248, + 51.194638499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Detuinfee", + "uid": "11484384", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T10:00:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000118535692800018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87915670, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2317954, + 51.2060431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lore20", + "uid": "11484998", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T09:59:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000231222343799991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87915610, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25919225, + 51.2068285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T09:16:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87912844, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.374023, + 50.9363059 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7710056434", + "osm_id": 7710056434, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T09:12:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87912625, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.374023, + 50.9363059 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:53:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000189606822300102, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87911490, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22331695, + 50.91860065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:53:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.11729199999501e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87911439, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2437494, + 50.887142999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:52:29Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000180780282000248, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87911403, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2456757, + 50.88565225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:52:01Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000835843859899497, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87911376, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24095425, + 50.88712425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:51:09Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000185338263600003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87911312, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2403009000000003, + 50.88240245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:43:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000105211310400012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87910800, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37730515, + 50.9357658 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:42:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000105211310400012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87910751, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37730515, + 50.9357658 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:42:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000105211310400012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87910694, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37730515, + 50.9357658 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:41:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000105211310400012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87910653, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37730515, + 50.9357658 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:22:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000028017286000022, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87909541, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.386311, + 50.9449332 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:22:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000028017286000022, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87909508, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.386311, + 50.9449332 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:11:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87908895, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3858907, + 50.9412038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:11:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87908853, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3858907, + 50.9412038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:03:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000274122382000273, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87908429, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38523195, + 50.939696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:02:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000274122382000273, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87908379, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38523195, + 50.939696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T08:00:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000179510208499795, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87908251, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37923325, + 50.937191850000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StefaanTh", + "uid": "11484454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T07:51:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000179510208499795, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87907684, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37923325, + 50.937191850000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gijsgerits", + "uid": "11484425", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T07:43:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000526820447999449, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87907160, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1517542, + 50.965652000000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wouter Vanhove", + "uid": "11484390", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T07:33:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.73826759996522e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87906513, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7004556, + 51.07559515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wouter Vanhove", + "uid": "11484390", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T07:32:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.43589999995168e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87906456, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67531695, + 51.0727111 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lode Vandermeulen", + "uid": "4878186", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T07:21:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000379480562998998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87905715, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91416995, + 50.83327315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiezeV", + "uid": "11484274", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T07:08:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87904804, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.268218, + 51.2188734 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7709698745", + "osm_id": 7709698745, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "LiezeV", + "uid": "11484274", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T07:07:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87904741, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.268218, + 51.2188734 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lode Vandermeulen", + "uid": "4878186", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T06:19:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000200926824000914, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87901895, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9147853999999995, + 50.842335649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Erilc Lefebure", + "uid": "11484050", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T06:06:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000192874199999697, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87901183, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8659613, + 51.214064 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dyceman", + "uid": "11483824", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T04:45:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.69214759996643e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87897500, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57066975, + 50.7829604 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dyceman", + "uid": "11483824", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-13T04:44:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.02739020000764e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87897463, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57030125, + 50.7832466 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T21:33:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87889907, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2245804, + 51.215657 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T21:15:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87889587, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.206361, + 51.2163913 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SarahDfrt", + "uid": "11482755", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T21:10:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000313183899998978, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87889492, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9726187, + 51.0952484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SarahDfrt", + "uid": "11482755", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T21:09:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000313183899998978, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87889475, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9726187, + 51.0952484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SarahDfrt", + "uid": "11482755", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T21:07:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000313183899998978, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87889427, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9726187, + 51.0952484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T20:18:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000081619352499953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87888352, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92685935, + 51.13271865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T20:17:33Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000455794561199907, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87888330, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9272204, + 51.1351787 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T20:15:04Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000838564122000154, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87888254, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9272204, + 51.1360409 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T20:13:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000047594004569955, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87888203, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92686975, + 51.13759195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T20:12:24Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000503599999299572, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87888179, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9253712500000004, + 51.138565650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:59:49Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000146489833000251, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887838, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04000595, + 51.1555803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:58:37Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000791974624001296, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887818, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.040521699999999, + 51.154946949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "way-51745874", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 51745874, + "reasons": [ + 489 + ], + "version": 4 + } + ], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:56:57Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00003177288305999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887772, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.042627599999999, + 51.15933535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:55:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000947479802000458, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887738, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0266684999999995, + 51.176030850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:54:52Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0012391445738701, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887728, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00143025, + 51.16814995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:47:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000267620240999988, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887603, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9871179, + 51.11511115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:46:37Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000576837374499643, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887577, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99800545, + 51.10787755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:43:35Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000983564717100527, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887509, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00139175, + 51.11888035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:42:17Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000189855930000088, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887478, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99708195, + 51.1166902 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:40:17Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000229931006099956, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887435, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03113235, + 51.16171075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:39:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000870522962000701, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887409, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03340465, + 51.1676002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:38:28Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000116855369100007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887399, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.030183900000001, + 51.17000025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 510, + "name": "Mapbox: Suspiciously large feature" + } + ], + "tags": [], + "features": [ + { + "url": "way-151515142", + "osm_id": 151515142, + "reasons": [ + 510 + ], + "version": 2 + } + ], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:36:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000405999219998638, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887352, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9960594499999997, + 51.123307600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:32:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.00824510001368e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887275, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98690455, + 51.12341255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:31:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000201711913200154, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887253, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9874555000000003, + 51.1239136 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:30:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000631747743999643, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887229, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9913086, + 51.1169437 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 510, + "name": "Mapbox: Suspiciously large feature" + } + ], + "tags": [], + "features": [ + { + "url": "way-151515111", + "osm_id": 151515111, + "reasons": [ + 510 + ], + "version": 4 + } + ], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:29:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000079271833499969, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887200, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99749395, + 51.123050199999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 510, + "name": "Mapbox: Suspiciously large feature" + } + ], + "tags": [], + "features": [ + { + "url": "way-151515117", + "osm_id": 151515117, + "reasons": [ + 510 + ], + "version": 3 + } + ], + "user": "Gpoilvet", + "uid": "9574710", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T19:28:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000548551547600274, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87887175, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9965040499999995, + 51.1201791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:56:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000677608749999746, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87885055, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.728671, + 50.850009650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:55:53Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000815072446499409, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87885040, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7371184500000005, + 50.87019135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:54:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000383817122499642, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87885015, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65012905, + 50.844967749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:53:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000368206241399347, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884986, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68180365, + 50.7902524 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:52:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000016532056680006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884969, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68114035, + 50.810474 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:51:02Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000196173492000029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884948, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7105298, + 50.82844385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TopheL", + "uid": "11482205", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:50:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00141629421869983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884941, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.655791649999999, + 50.9995733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:50:10Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000788777878799977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884926, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7063032499999995, + 50.8313605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TopheL", + "uid": "11482205", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:49:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00141629421869983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884923, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.655791649999999, + 50.9995733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TopheL", + "uid": "11482205", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:48:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00141629421869983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884896, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.655791649999999, + 50.9995733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:47:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000154096949999965, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884875, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7020077, + 50.80608225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TopheL", + "uid": "11482205", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:47:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00141629421869983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884863, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.655791649999999, + 50.9995733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TopheL", + "uid": "11482205", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:46:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00141629421869983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884841, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.655791649999999, + 50.9995733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:43:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00574565565077018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884762, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6887244500000005, + 50.811985050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:37:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000158255406000329, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884614, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4531862, + 51.09652215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:34:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00240481604978981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884558, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68246695, + 50.80106025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:33:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.85609969998252e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884538, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69326665, + 50.832764350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:30:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000485645455998687, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884476, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.709398, + 50.8724029 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:29:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000557095680000766, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884431, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7188793, + 50.85227265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:28:42Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000338360400000298, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884424, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7168201, + 50.85372315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:27:48Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000319587717699655, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884403, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71162885, + 50.85850735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:26:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.14891159999568e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884374, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71170055, + 50.867123899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:25:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884341, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7130114, + 50.8680402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:24:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000189588490000491, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884321, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7125698, + 50.86493965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:24:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000322123132800184, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884294, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7158241, + 50.8663545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:20:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000038914661499991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884211, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71452195, + 50.86696475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:17:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.93762799992863e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884142, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70576615, + 50.8657624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:14:41Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000046587044490037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884071, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7152825499999995, + 50.87045905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:12:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000121616018299926, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87884023, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.710205950000001, + 50.86806685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:11:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000507778822800356, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883996, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7049970000000005, + 50.86542635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:09:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000332933553999818, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883957, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2442014500000003, + 51.216427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:08:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000140660208000116, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883950, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6984061, + 50.848818 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:07:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00183506978991018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883926, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68739605, + 50.83915615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:07:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.60267500003017e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883914, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2886483, + 51.209568250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:07:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000201781892699963, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883906, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70102125, + 50.85408285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:06:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000125323528929914, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883890, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29631505, + 51.211480449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:05:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000948307079200152, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883873, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7107373, + 50.8557146 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:05:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000442821236000069, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883867, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26389135, + 51.2175608 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Polyglot", + "uid": "15188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:04:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000948307079200152, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883855, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7107373, + 50.8557146 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:03:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.90091000003169e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883805, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2768355, + 51.2164614 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:01:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.13032819999716e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883777, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27086615, + 51.2145777 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T17:00:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000012296543999984, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883741, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2701015, + 51.22664455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T16:57:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000101619453599993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883683, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2672546000000002, + 51.2220126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T16:56:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.79194800000852e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883664, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2724243, + 51.2199172 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T16:55:41Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000106786223699867, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883642, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27075145, + 51.22012705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T16:53:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.63575199996838e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883604, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.277532, + 51.220131699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T16:51:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000160542060000102, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883560, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2806945, + 51.2210674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hendrikd", + "uid": "559146", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T16:50:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000160542060000102, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883520, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2806945, + 51.2210674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tim Vandenberghe", + "uid": "11482014", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T16:49:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000022896892000032, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883516, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33057085, + 50.8600081 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tim Vandenberghe", + "uid": "11482014", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T16:48:44Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000161306523200021, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883483, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3311427, + 50.858004699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "way-270591792", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 270591792, + "reasons": [ + 489 + ], + "version": 2 + } + ], + "user": "Tim Vandenberghe", + "uid": "11482014", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T16:46:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000328013010000442, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87883434, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33460365, + 50.8520695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefwy", + "uid": "7186933", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:44:48Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000330460291600249, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881690, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.753038, + 50.87769565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Laure_L", + "uid": "11481762", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:41:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000250375830000316, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881597, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76224465, + 51.0840137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefwy", + "uid": "7186933", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:40:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.16209839998385e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881582, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71904435, + 50.887514100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefwy", + "uid": "7186933", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:40:18Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000226764835009993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881568, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73707745, + 50.89149625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefwy", + "uid": "7186933", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:39:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000450000372599896, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881533, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74283605, + 50.9013101 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + }, + { + "id": 57, + "name": "Feature overlaps with existing features" + } + ], + "tags": [], + "features": [ + { + "url": "node-7707403095", + "osm_id": 7707403095, + "reasons": [ + 57, + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "Laure_L", + "uid": "11481762", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:38:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 3.25869270001621e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881531, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70123255, + 51.07203185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + }, + { + "id": 57, + "name": "Feature overlaps with existing features" + } + ], + "tags": [], + "features": [ + { + "url": "node-7707397398", + "osm_id": 7707397398, + "reasons": [ + 57, + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "Laure_L", + "uid": "11481762", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:37:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881502, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7008691, + 51.0718077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefwy", + "uid": "7186933", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:37:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000212991387999959, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881489, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70620765, + 50.9065429 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Laure_L", + "uid": "11481762", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:35:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.80799799995959e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881443, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74828545, + 51.07342 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlpDennis", + "uid": "11481674", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:35:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000767687719999927, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881430, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2034545, + 51.1819208 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlpDennis", + "uid": "11481674", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:34:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000767687719999927, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881401, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2034545, + 51.1819208 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefwy", + "uid": "7186933", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:32:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000707899023000581, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881375, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78830095, + 50.91118185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlpDennis", + "uid": "11481674", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:32:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00534366378419993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881362, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1526505, + 51.22793975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefwy", + "uid": "7186933", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:31:33Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0011057500303999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881332, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75092605, + 50.910893200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlpDennis", + "uid": "11481674", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:30:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.18585890004897e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881283, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08343235, + 51.30011495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefwy", + "uid": "7186933", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:29:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000203724556799931, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881266, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7150168, + 50.9054125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlpDennis", + "uid": "11481674", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:29:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000205122521779961, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881252, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0196126000000003, + 51.26788955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefwy", + "uid": "7186933", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:28:02Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000254450952000084, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881221, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7242386, + 50.894419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefwy", + "uid": "7186933", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:25:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000588922319999865, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881151, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73879455, + 50.911266 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlpDennis", + "uid": "11481674", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:25:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000698606165899549, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881139, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04742715, + 51.27917295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlpDennis", + "uid": "11481674", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:25:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000666254035999483, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881124, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0424335, + 51.27793615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlpDennis", + "uid": "11481674", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:22:58Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000272296788399858, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87881063, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0112845, + 51.2482995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StevenNaert", + "uid": "11481650", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:12:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.46014399999023e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87880817, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0854521, + 51.1713443 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StevenNaert", + "uid": "11481650", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:12:12Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000441035474399716, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87880802, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08159305, + 51.1693561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "way-197810964", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 197810964, + "reasons": [ + 489 + ], + "version": 3 + } + ], + "user": "CR4G", + "uid": "11481089", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:11:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000148505040000729, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87880789, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72175855, + 50.9709279 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StevenNaert", + "uid": "11481650", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:10:44Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000459779361599614, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87880768, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0804427, + 51.168590699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StevenNaert", + "uid": "11481650", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:09:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000463660333500155, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87880738, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07042025, + 51.16785405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StevenNaert", + "uid": "11481650", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:08:28Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000100179223199955, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87880719, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.071687, + 51.17280545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StevenNaert", + "uid": "11481650", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T15:07:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000327974591399768, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87880702, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0698594999999997, + 51.17060175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RRRDDD653", + "uid": "11481582", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:45:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000103114367999967, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87880197, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12946425, + 51.2615418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RRRDDD653", + "uid": "11481582", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:44:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000103114367999967, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87880164, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12946425, + 51.2615418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jan8970", + "uid": "11481569", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:43:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000371194149999707, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87880137, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7132638499999997, + 50.845930100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jan8970", + "uid": "11481569", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:42:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000371194149999707, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87880107, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7132638499999997, + 50.845930100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jan8970", + "uid": "11481569", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:41:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000371194149999707, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87880073, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7132638499999997, + 50.845930100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "zors1843", + "uid": "233248", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:34:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000280559340000366, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87879906, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9375340999999997, + 51.16008635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "zors1843", + "uid": "233248", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:33:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000035338067699882, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87879883, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9064827500000003, + 51.17383675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Capibara", + "uid": "11481523", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:33:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000113161799000331, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87879876, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9016873499999996, + 51.12609075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Capibara", + "uid": "11481523", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:32:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000874627527200713, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87879868, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91391525, + 51.1215443 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "zors1843", + "uid": "233248", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:32:15Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000143099434500169, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87879865, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93929595, + 51.17566705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Capibara", + "uid": "11481523", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:31:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000129517311799995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87879825, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8986985, + 51.1225242 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "zors1843", + "uid": "233248", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:30:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000114005699999561, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87879821, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9243442, + 51.1770791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "zors1843", + "uid": "233248", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:30:09Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000229365449999141, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87879799, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92369245, + 51.1770791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "zors1843", + "uid": "233248", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:29:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.68473690003313e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87879774, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92025165, + 51.171400649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "zors1843", + "uid": "233248", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:26:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.9878259999949e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87879686, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.912227, + 51.17531985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "zors1843", + "uid": "233248", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T14:25:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000475742663000523, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87879652, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91991485, + 51.17884565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ilian Sales", + "uid": "11481278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T13:22:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87878154, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.133529, + 51.1406882 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7707089444", + "osm_id": 7707089444, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + }, + { + "url": "node-7707089443", + "osm_id": 7707089443, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "Ilian Sales", + "uid": "11481278", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T13:21:14Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.38373600001045e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87878125, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1333813, + 51.140614 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Sberivu", + "uid": "8312444", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T13:20:36Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000198138616399977, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87878112, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0632066499999997, + 50.9851316 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Sberivu", + "uid": "8312444", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T13:18:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000183935274000534, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87878071, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0652570499999996, + 50.9847126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:53:05Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00546956889180007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87877037, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9174806, + 51.01203769999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:40:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.9435779999744e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87876524, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22073075, + 51.2028804 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:40:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.9435779999744e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87876512, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22073075, + 51.2028804 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:39:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.40272000005447e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87876484, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2208067, + 51.202819500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:37:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.55742599990692e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87876430, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22049545, + 51.201382100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "armando3cd6", + "uid": "146888", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:36:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.99161050002261e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87876393, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76641855, + 51.147173249999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:35:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.62192000016097e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87876354, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2202229, + 51.20077325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:31:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.41040000008127e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87876232, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2232662000000003, + 51.200075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:27:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87876156, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2223496, + 51.2017359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:25:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87876099, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2223496, + 51.2017359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:23:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87876046, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2223496, + 51.2017359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:16:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.28559999992527e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87875825, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2245488499999997, + 51.203465800000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7706913228", + "osm_id": 7706913228, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "JJomski", + "uid": "11481044", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:08:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87875633, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7170589, + 51.1133364 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JJomski", + "uid": "11481044", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:07:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000147782879999811, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87875612, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7222975, + 51.1166372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:06:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.17084800009311e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87875583, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.218065, + 51.2132406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "BernardEeckhout", + "uid": "1623059", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-12T12:00:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000522204473999594, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87875440, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5456555000000005, + 51.0708518 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T18:54:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000270955294000029, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87861343, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1078231, + 50.92484975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T18:53:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000424161339999695, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87861329, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1087381999999995, + 50.920971249999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T18:51:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000424161339999695, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87861288, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1087381999999995, + 50.920971249999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T18:49:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000150975428239976, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87861244, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08803585, + 50.927911300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T18:49:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000150975428239976, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87861241, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08803585, + 50.927911300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T18:19:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87860711, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2693902, + 51.1889883 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T16:29:13Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.92020349999345e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87858397, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2248483500000003, + 51.21269155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T16:27:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.94282800006628e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87858343, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2249377, + 51.2117263 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T16:25:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.72706000021327e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87858287, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2265271, + 51.20976615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T16:23:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.81029599988835e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87858255, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2265346, + 51.2094968 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T16:22:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.71483999999741e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87858231, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.226673, + 51.20941365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T16:21:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.98939999994509e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87858215, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2263249, + 51.2093747 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T16:06:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87857804, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2344212, + 51.2031691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T15:47:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87857359, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2693902, + 51.1889883 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T15:45:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87857305, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2693902, + 51.1889883 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T15:45:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87857303, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2693902, + 51.1889883 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T15:44:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87857275, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2693902, + 51.1889883 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T12:04:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000849788666099582, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87852045, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26860415, + 51.15388695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-11T10:07:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87849108, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3531877, + 50.8311549 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-10T17:09:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87827539, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2130498, + 51.2047361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-10T17:08:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87827499, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2130498, + 51.2047361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-10T15:35:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87824438, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3531877, + 50.8311549 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-10T15:35:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87824430, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3531877, + 50.8311549 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-10T15:34:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87824414, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3531877, + 50.8311549 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-09T16:32:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87775439, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3808359, + 50.8626495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-09T16:31:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87775395, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3808359, + 50.8626495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Isabelle Vanhoutte", + "uid": "11465636", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-09T10:52:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000902057529999837, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87760839, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44611625, + 51.382282399999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Isabelle Vanhoutte", + "uid": "11465636", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-09T10:51:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00075799380012999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87760772, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44344125, + 51.356337350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-08T15:12:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87717804, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2153406, + 51.2156501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-08T14:23:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000254359533999427, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87715983, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2124587499999997, + 51.2118236 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ubipo", + "uid": "3797928", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-08T12:08:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87710063, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2153406, + 51.2156501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-08T11:24:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000320769591999278, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87707418, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2179088499999997, + 51.209275500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s8evq", + "uid": "3710738", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-07T18:23:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000331219044000418, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87669369, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48870755, + 51.1008951 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s8evq", + "uid": "3710738", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-07T18:22:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000695818512001526, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87669336, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46776045, + 51.1189535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-07T15:39:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87663336, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2382765, + 50.7333846 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-07T15:37:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87663250, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2421925, + 50.7345615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-07T15:36:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87663219, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2421925, + 50.7345615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #pomp", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-07T15:31:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87663025, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2389458, + 50.7346319 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-06T10:31:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000250030294800086, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87594916, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.363653449999999, + 50.84458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T16:21:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.60254000005769e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559753, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2162214999999996, + 51.21488215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T16:19:45Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.46900609999905e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559697, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21561845, + 51.21385155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T16:15:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.92030000019704e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559576, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21506095, + 51.2125327 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T16:12:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.0824319998776e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559502, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2148695, + 51.212374 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T16:12:21Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 2.12526019997186e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559483, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21490145, + 51.2122162 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T16:10:17Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.19910979998856e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559416, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2150764499999998, + 51.2114751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T16:08:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.36771799983406e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559366, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2158141000000002, + 51.21071015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T16:06:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.15342199991553e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559314, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21633235, + 51.2100018 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T16:05:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.69045899992803e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559283, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21678675, + 51.209529149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T16:04:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.18477100004521e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559250, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21703925, + 51.209136349999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T16:03:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.5562879999583e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559234, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2169963, + 51.208757 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T16:02:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000320769591999278, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559210, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2179088499999997, + 51.209275500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:59:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000320769591999278, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559106, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2179088499999997, + 51.209275500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:59:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.01445600003319e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559101, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2174667, + 51.2102295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:56:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.50902499996951e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559035, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2200630500000003, + 51.21131805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:55:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.08750000008796e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87559002, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2200215500000002, + 51.211624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:52:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.93805800010977e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87558940, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21975165, + 51.2118422 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:47:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.19200500003496e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87558779, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2185222500000004, + 51.21224265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:45:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.06141200000237e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87558712, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21806605, + 51.2124146 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:44:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.91205199999642e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87558681, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21788535, + 51.212894000000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:38:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.05137780002534e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87558542, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166172, + 51.213796349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:38:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.05137780002534e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87558522, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166172, + 51.213796349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:37:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.88668000018804e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87558492, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2171931000000002, + 51.21366415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:33:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.50622000019723e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87558414, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166775999999997, + 51.21429835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:32:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.65220000002372e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87558369, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2163996, + 51.2146839 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:30:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.4797850000602e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87558322, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21640235, + 51.21481125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:29:02Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.94819470004379e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87558287, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21751105, + 51.21469235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:26:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.37355899996987e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87558234, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21798085, + 51.21477415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-05T15:24:24Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.02217000002235e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87558203, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2185324, + 51.2150364 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-04T16:11:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000112005701199972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87535363, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26158565, + 50.738721999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-04T16:11:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000038142961599956, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87535357, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2636069, + 50.736328799999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-04T16:10:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000598800251999811, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87535346, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2577043, + 50.73971075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-04T16:10:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000598800251999811, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87535344, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2577043, + 50.73971075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-04T13:55:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000849788666099582, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87532054, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26860415, + 51.15388695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-04T13:12:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000849788666099582, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87530915, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26860415, + 51.15388695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-03T23:27:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.91276000005065e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87519702, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3769329500000005, + 50.8636301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-03T23:27:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.4173200002739e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87519699, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3773204, + 50.863640950000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-03T23:27:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000420465836000188, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87519696, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37911965, + 50.8638024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-03T20:31:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000767188329600132, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87517182, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3588215, + 51.3564444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-03T20:31:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000767188329600132, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87517178, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3588215, + 51.3564444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-03T20:30:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000767188329600132, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87517174, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3588215, + 51.3564444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-03T20:30:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000767188329600132, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87517158, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3588215, + 51.3564444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-03T14:17:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000391323888799602, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87507730, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3323859000000002, + 51.357063600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-02T20:59:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.13769800000344e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87470785, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2139268999999997, + 51.20659485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #grb", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-02T20:59:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.13769800000344e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87470780, + "theme": "grb" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2139268999999997, + 51.20659485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sanderd17", + "uid": "253266", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-02T17:36:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.3790307999808e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87465375, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05156165, + 50.9333719 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sanderd17", + "uid": "253266", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-02T17:36:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.3790307999808e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87465369, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05156165, + 50.9333719 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sanderd17", + "uid": "253266", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-02T17:34:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000384679185000685, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87465307, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07666495, + 50.939593450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sanderd17", + "uid": "253266", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-02T17:33:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000384679185000685, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87465301, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07666495, + 50.939593450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sanderd17", + "uid": "253266", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-02T17:33:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.37135920002837e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87465291, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0800590000000003, + 50.93803425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sanderd17", + "uid": "253266", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-02T17:33:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000005381517910013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87465277, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07479855, + 50.93721305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sanderd17", + "uid": "253266", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-02T17:33:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000005381517910013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87465267, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07479855, + 50.93721305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-01T17:45:49Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87412606, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2302031, + 51.2044904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-01T17:41:52Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87412419, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2197237, + 51.215709 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-01T14:05:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.10738640005312e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87404982, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1094165499999997, + 50.9628026 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-01T14:05:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000190195299999011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87404977, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10911045, + 50.9624821 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-01T14:03:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.15808839997284e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87404897, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11548845, + 50.9629883 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-01T14:02:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000427645982999613, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87404874, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11416425, + 50.96610165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-01T14:02:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000285435474000734, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87404866, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1148289, + 50.96694565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-01T14:02:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.89667659998006e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87404855, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1069954500000003, + 50.9645168 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-01T14:02:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.17455829996852e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87404845, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10633965, + 50.96551155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-01T14:01:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000123830486000221, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87404826, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11165775, + 50.963838100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-01T14:01:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000123830486000221, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87404824, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11165775, + 50.963838100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tobias Daneels", + "uid": "11426642", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-01T09:29:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87390913, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1936044, + 51.1867407 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met MapComplete voor vragenset #groen", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-07-01T00:00:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000522458892799696, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 87369682, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2561551, + 51.1574858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7c mutlizoom", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-31T17:36:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90204516, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2234547, + 51.1986366 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.7c mutlizoom", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-31T15:35:46Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00783997650163935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90200013, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2294319, + 48.83659635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cimm", + "uid": "3921", + "editor": "MapComplete 0.0.7c mutlizoom", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-31T11:28:36Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.0000118828822000144, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90189154, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6969215, + 50.8638045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Carol Cartigny", + "uid": "11696121", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-30T13:16:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000520463389000504, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90145239, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22766015, + 51.15603245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AntonioLago", + "uid": "11626760", + "editor": "MapComplete 0.0.7c mutlizoom", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-30T08:49:50Z", + "reviewed_features": [], + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.0368220656663411, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90139064, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.69899195, + 42.1809969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.7c mutlizoom", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-30T08:38:01Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90138809, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1291771, + 48.8003915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7d Refactored", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-29T23:07:42Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90132646, + "theme": "bookcases", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2188596, + 51.2185334 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7c mutlizoom", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-29T19:03:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90128198, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2264881, + 51.2241947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7c mutlizoom", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-29T19:01:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000173138261000263, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90128155, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2259807499999997, + 51.225047849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s8evq", + "uid": "3710738", + "editor": "MapComplete 0.0.7c mutlizoom", + "comment": "Adding data with #MapComplete for theme #OnlyWays", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-29T11:34:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000740960245199788, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90116827, + "theme": "onlyways", + "theme-creator": "s8evq" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46961005, + 51.1007131 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ielham", + "uid": "462218", + "editor": "MapComplete 0.0.7c mutlizoom", + "comment": "Adding data with #MapComplete for theme #Velocidad", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-28T09:39:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000339333566000438, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90072264, + "theme": "velocidad", + "theme-creator": "yopaseopor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.94409845, + 37.2627612 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fnordson", + "uid": "1723567", + "editor": "MapComplete 0.0.7c mutlizoom", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-28T08:06:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90066820, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7204406, + 50.1409767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tordans", + "uid": "11881", + "editor": "MapComplete 0.0.7c mutlizoom", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-28T04:42:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90055323, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4458979, + 52.4790464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T22:30:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90048040, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2154662, + 51.2179199 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T22:30:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90048023, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.206361, + 51.2163913 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #Velocidad", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T21:56:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.59377760004282e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90047277, + "theme": "velocidad", + "theme-creator": "Not logged in" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7038723999999998, + 41.228134850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ielham", + "uid": "462218", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #Velocidad", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T21:43:16Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000153605384080036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90046969, + "theme": "velocidad", + "theme-creator": "yopaseopor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.92429395, + 37.266006000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lucumon", + "uid": "2365149", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #Velocidad", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T21:41:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.47727999999965e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90046930, + "theme": "velocidad", + "theme-creator": "yopaseopor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.7329967, + 42.912284299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robot8A", + "uid": "393359", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #Velocidad", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T20:11:44Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000330072717360069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90044452, + "theme": "velocidad", + "theme-creator": "yopaseopor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8651723, + 41.6555645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #Velocidad (solo faltantes)", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T14:42:13Z", + "reviewed_features": [], + "create": 0, + "modify": 100, + "delete": 0, + "area": 0.00205495992442009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90033359, + "theme": "velocidad (solo faltantes)", + "theme-creator": "yopaseopor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71650645, + 41.2311452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #Velocidad (solo faltantes)", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T14:42:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000720313020001676, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90033351, + "theme": "velocidad (solo faltantes)", + "theme-creator": "yopaseopor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6931243500000002, + 41.2249537 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #Fietsstraten", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T13:31:43Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0140588068589497, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90030286, + "theme": "fietsstraten", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2011927499999997, + 50.96881105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T12:08:25Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00185002329742008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90026467, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3743944500000005, + 50.8392631 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lordroger", + "uid": "168779", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #Velocidad", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T10:56:26Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000159816523998862, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90022347, + "theme": "velocidad", + "theme-creator": "yopaseopor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1870954, + 40.827571899999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dónal", + "uid": "574926", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T10:18:22Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90020122, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.4780579, + 51.990067 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T09:52:41Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000165166677999984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90018500, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4331719, + 46.93840625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Simon Bil", + "uid": "2797899", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T09:52:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000125492828699886, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90018478, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68421455, + 50.95522245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T09:51:44Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90018448, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4382152, + 46.9467199 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T09:49:35Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000237679882200168, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90018302, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45096, + 46.95875665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jqngarcia", + "uid": "5126253", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T09:46:56Z", + "reviewed_features": [], + "create": 0, + "modify": 71, + "delete": 0, + "area": 0.000325481823879938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90018126, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20995725, + 41.4503203 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T09:29:51Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000812321339939904, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90017087, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4359245000000005, + 46.94985885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T09:29:06Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 5.05080700001002e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90017040, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42847315, + 46.951845199999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T09:07:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90015665, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4490046, + 46.9552762 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "KoboldTheGreat", + "uid": "5469229", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T09:07:23Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000638898058600206, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90015643, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6920039, + 50.96659475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "KoboldTheGreat", + "uid": "5469229", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T09:04:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000120042758580014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90015488, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6212992, + 50.978605849999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "KoboldTheGreat", + "uid": "5469229", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T09:04:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.38491999999e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90015427, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63230765, + 50.9553731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Carlos López Quintanilla", + "uid": "95752", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #Velocidad", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T08:57:28Z", + "reviewed_features": [], + "create": 0, + "modify": 105, + "delete": 0, + "area": 0.00478640703939987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90015021, + "theme": "velocidad", + "theme-creator": "yopaseopor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9128007500000002, + 41.4154871 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #Velocidad", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T08:47:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.84257030000447e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90014375, + "theme": "velocidad", + "theme-creator": "yopaseopor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72504635, + 41.22594305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robot8A", + "uid": "393359", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #Velocidad", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T08:30:36Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.37844539998353e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90013423, + "theme": "velocidad", + "theme-creator": "yopaseopor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8955676, + 41.629858150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldfndr", + "uid": "7247", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T04:46:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90001065, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.10240505, + 47.6215814 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T04:05:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000180393458559993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89999280, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1241114, + 50.917639 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "The Frenchman", + "uid": "648645", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T03:04:06Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89997595, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -120.22323825, + 50.6561607 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ppjj", + "uid": "6771650", + "editor": "MapComplete 0.0.7b Less changesets", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T02:14:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89996590, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -118.3517271, + 34.1602734 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ydel", + "uid": "3842332", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T00:47:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89995176, + "theme": "toilets", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.5620095, + 48.5973999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ydel", + "uid": "3842332", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T00:46:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.95999000020473e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89995170, + "theme": "toilets", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.572407849999999, + 48.58688495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T00:45:02Z", + "reviewed_features": [], + "create": 2, + "modify": 10, + "delete": 0, + "area": 1.25575599999474e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89995147, + "theme": "toilets", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22046265, + 51.2149328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T00:37:58Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89995070, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2196808, + 51.2158073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T00:33:52Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 1.98334000004894e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89995035, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2197565, + 51.2157418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T00:30:05Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89995003, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198322, + 51.2156978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T00:30:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89995002, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198322, + 51.2156978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T00:21:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89994916, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198322, + 51.2156978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T00:20:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89994902, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198322, + 51.2156978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T00:18:30Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89994877, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198322, + 51.2156978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T00:18:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89994876, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198322, + 51.2156978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-27T00:01:06Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89994672, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198322, + 51.2156978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T23:58:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89994637, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198322, + 51.2156978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T23:42:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89994440, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2196379, + 51.2156897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T23:21:11Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 1.42099999943837e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89994126, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21985915, + 51.2156981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7a ¿hablas español?", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T23:21:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89994125, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2197881, + 51.2156931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fraham", + "uid": "3336141", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:55:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89991077, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.8384772, + 53.5162236 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fraham", + "uid": "3336141", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:54:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89991062, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.8384772, + 53.5162236 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fraham", + "uid": "3336141", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:51:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89990961, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.2978324, + 53.4735524 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fraham", + "uid": "3336141", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:50:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89990938, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.2978324, + 53.4735524 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fraham", + "uid": "3336141", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:47:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89990819, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.8380561, + 53.530797 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fraham", + "uid": "3336141", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:46:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89990781, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.8386381, + 53.5172658 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:09:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989645, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4446244, + 46.9571176 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:08:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989628, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4446244, + 46.9571176 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:08:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.48836000028345e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989623, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23289195, + 51.2135004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:08:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989618, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4476853, + 46.9585884 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:07:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989594, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4476853, + 46.9585884 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:05:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989541, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.423602, + 46.9452633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:05:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989506, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.423602, + 46.9452633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:03:30Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.9694720001303e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989450, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2332460000000003, + 51.213626399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Vucod", + "uid": "7814237", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:01:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989376, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3867528, + 50.8469176 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:01:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.41296400004386e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989371, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2333803, + 51.21314135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:00:59Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 9.67113900008071e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989365, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23341915, + 51.212974849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Vucod", + "uid": "7814237", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:00:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989354, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3867528, + 50.8469176 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T20:00:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989339, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4223105, + 46.9446537 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "HoneyFox", + "uid": "10031443", + "editor": "MapComplete 0.0.7", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T19:55:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89989191, + "theme": "bookcases", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5632923, + 51.426493 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tom V d Borne", + "uid": "11712922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T13:00:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000073413074549955, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89974136, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42551395, + 51.23008165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:34:17Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000463303124999933, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89965962, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64724395, + 46.7757912 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:31:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89965785, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2737057, + 46.4174789 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:30:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000163489117499754, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89965762, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26261975, + 46.42287965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:25:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89965407, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1933649, + 46.3162684 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:25:07Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000169731169500226, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89965400, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22943245, + 46.37045655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:22:13Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.00310250584454984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89965215, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24055995, + 46.40623395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:20:36Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0223203491572802, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89965115, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3725533, + 46.4743196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:18:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89965001, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8486258, + 46.5103042 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:14:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89964677, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.860401, + 46.4772182 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:13:57Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000444005891380026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89964665, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.867744650000001, + 46.462102900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:12:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000385574854859941, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89964580, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84522785, + 46.4603085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:11:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89964547, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8422228, + 46.4700996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:10:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000209060544001069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89964427, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8408681, + 46.4642701 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:09:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89964413, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8409332, + 46.4629763 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rémi Bovard", + "uid": "129299", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-26T10:09:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89964365, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8442735, + 46.4607518 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T17:30:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89927795, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6548612, + 48.841249 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T17:29:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89927784, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6548612, + 48.841249 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T17:28:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89927744, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6548612, + 48.841249 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T17:27:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89927719, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6548612, + 48.841249 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T15:27:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000487707663300102, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89923234, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1444823, + 51.21996935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alan Bragg", + "uid": "443130", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T15:03:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89922269, + "theme": "artworks", + "theme-creator": "Not logged in" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.661273, + 41.9363493 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alan Bragg", + "uid": "443130", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T15:02:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89922194, + "theme": "artworks", + "theme-creator": "Not logged in" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.661273, + 41.9363493 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alan Bragg", + "uid": "443130", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T15:00:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89922132, + "theme": "artworks", + "theme-creator": "Not logged in" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.661273, + 41.9363493 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alan Bragg", + "uid": "443130", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T14:58:43Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89922041, + "theme": "artworks", + "theme-creator": "Not logged in" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.661273, + 41.9363493 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T13:43:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89918711, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1509752, + 51.2120753 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T13:42:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89918675, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1509752, + 51.2120753 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T13:42:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89918631, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1509752, + 51.2120753 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T13:40:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000487707663300102, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89918590, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1444823, + 51.21996935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T13:39:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000487707663300102, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89918557, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1444823, + 51.21996935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T13:38:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000487707663300102, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89918496, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1444823, + 51.21996935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T13:38:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000487707663300102, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89918491, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1444823, + 51.21996935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T13:37:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000487707663300102, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89918483, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1444823, + 51.21996935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.6c", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T13:37:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000487707663300102, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89918453, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1444823, + 51.21996935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.6b", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T09:16:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.68080000010359e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89903500, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3965329, + 51.0407638 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.6b", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T09:14:17Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 1.68080000010359e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89903362, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3965329, + 51.0407638 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.6b", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T09:13:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89903280, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3964947, + 51.0407528 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wardmuylaert", + "uid": "296252", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T08:49:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000427326970999944, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89901819, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3240172999999995, + 50.887301050000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wardmuylaert", + "uid": "296252", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-25T08:48:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000251587186600067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89901763, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30336795, + 50.884410200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.6", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-24T18:39:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89873464, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6584017, + 48.8364966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.6", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-24T18:38:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89873437, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6631385, + 48.8345104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.6", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-24T18:36:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89873379, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1559863, + 44.9036805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.6", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-24T16:41:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89869480, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1559863, + 44.9036805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.6", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-24T16:40:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89869436, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1559863, + 44.9036805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.6", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-24T16:39:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89869379, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1559863, + 44.9036805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "aseques", + "uid": "140745", + "editor": "MapComplete 0.0.6", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-24T11:27:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89854556, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1107006, + 41.8482517 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.6", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-24T09:30:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89847129, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2380503, + 50.7366736 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.6", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-24T09:29:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89847053, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2380503, + 50.7366736 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lynsey Steyaert", + "uid": "11582617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-23T20:36:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000115764133800064, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89821362, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60966935, + 51.1992736 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lynsey Steyaert", + "uid": "11582617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-23T20:34:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000115764133800064, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89821327, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60966935, + 51.1992736 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.5e", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-23T10:40:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89804554, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2216308, + 51.2127326 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.5e", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-23T10:40:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89804545, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2216308, + 51.2127326 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.5h", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-23T10:32:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89804341, + "theme": "datos de tienda", + "theme-creator": "yopaseopor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1753489, + 41.39646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.5h", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-23T10:25:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89804128, + "theme": "datos de tienda", + "theme-creator": "yopaseopor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1859067, + 41.411405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.5h", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-23T10:07:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89803709, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4695853, + 51.1980216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.0.5h", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-23T10:06:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89803685, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4695853, + 51.1980216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.5f", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T22:17:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.31390829999115e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89794266, + "theme": "superficie", + "theme-creator": "Not logged in" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17846695, + 51.188119349999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.5e", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T18:49:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89789965, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1976354, + 51.1938125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.5e", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T18:12:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000232452687999071, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89789070, + "theme": "fietsstraten", + "theme-creator": "Not logged in" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2029620000000003, + 51.2029874 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.5e", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T18:04:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000111796160000214, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89788850, + "theme": "fietsstraten", + "theme-creator": "Not logged in" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.212708, + 51.213596300000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.5e", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T18:03:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000589605081999558, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89788822, + "theme": "fietsstraten", + "theme-creator": "Not logged in" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21425225, + 51.2139105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.5e", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T18:02:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000234107367199921, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89788812, + "theme": "fietsstraten", + "theme-creator": "Not logged in" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2180943, + 51.21785705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.5e", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T17:52:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000673566894000599, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89788587, + "theme": "fietsstraten", + "theme-creator": "Not logged in" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20718125, + 51.2159145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Quote2106", + "uid": "7646797", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T11:09:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000727604687999413, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89777909, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39879875, + 50.9011452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Quote2106", + "uid": "7646797", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T11:06:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000291195190000105, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89777843, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36701125, + 50.850499299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Quote2106", + "uid": "7646797", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T11:04:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000541686535002547, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89777782, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31493985, + 50.851315650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Quote2106", + "uid": "7646797", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T11:03:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000143642721000067, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89777754, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30943565, + 50.83629235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Quote2106", + "uid": "7646797", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T11:02:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000025517674800001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89777720, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3028420999999994, + 50.830019199999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Quote2106", + "uid": "7646797", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T10:58:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89777635, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2553782, + 50.8236491 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Quote2106", + "uid": "7646797", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T10:58:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89777620, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2553782, + 50.8236491 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Quote2106", + "uid": "7646797", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T10:56:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000861719850300407, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89777568, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.269735750000001, + 50.81331255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Quote2106", + "uid": "7646797", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T10:55:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000338319006000515, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89777558, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2720398500000005, + 50.8135859 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Quote2106", + "uid": "7646797", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T10:52:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000338319006000515, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89777492, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2720398500000005, + 50.8135859 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Quote2106", + "uid": "7646797", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T10:52:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000516682382999342, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89777464, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27663515, + 50.80962815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Quote2106", + "uid": "7646797", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T10:51:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000504931380000033, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89777446, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2820231, + 50.808999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Quote2106", + "uid": "7646797", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T10:50:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000342308904000349, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89777414, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2829195, + 50.8085799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.5", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T10:06:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89776281, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.211914, + 51.212396 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.5", + "comment": "Adding data with #MapComplete", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-22T10:05:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89776268, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2120445, + 51.2135593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "majkaz", + "uid": "255254", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-21T19:20:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0150856379543211, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89761097, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6071219, + 49.029244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kaxtillo", + "uid": "436132", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Restaurants", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-21T15:09:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89752874, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.6015651, + 2.4425714 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kaxtillo", + "uid": "436132", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Restaurants", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-21T15:08:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89752826, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.6015651, + 2.4425714 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Pieter_Verstraete", + "uid": "11686286", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-21T11:45:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000818018171999802, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89743882, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7544889, + 50.974154 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Pieter_Verstraete", + "uid": "11686286", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-21T11:45:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000818018171999802, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89743820, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7544889, + 50.974154 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Pieter_Verstraete", + "uid": "11686286", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-21T11:43:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000258925397999528, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89743728, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74319635, + 50.9753425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Sentido único", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-21T10:37:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.42016000001064e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89740126, + "theme": "sentido único" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9850952, + 41.2691439 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Leno Suciamazmorra", + "uid": "8744626", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-21T03:49:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89718813, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.0163191, + -31.4012905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Zalitoar", + "uid": "79602", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #metamap", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T21:24:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89712301, + "theme": "maps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5411295, + -34.6006801 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Manelmdiaz", + "uid": "10755264", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Restaurants", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T21:18:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89712151, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.158265, + 41.392842 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Manelmdiaz", + "uid": "10755264", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Restaurants", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T21:16:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89712123, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.158265, + 41.392842 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Manelmdiaz", + "uid": "10755264", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Restaurants", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T21:16:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89712111, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.158265, + 41.392842 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Manelmdiaz", + "uid": "10755264", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Restaurants", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T21:16:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89712097, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.158265, + 41.392842 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Manelmdiaz", + "uid": "10755264", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Restaurants", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T21:15:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89712077, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.158265, + 41.392842 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hocu", + "uid": "374342", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T19:32:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89709008, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.3195215, + 51.3922301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hocu", + "uid": "374342", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T19:28:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89708913, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.3195215, + 51.3922301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hocu", + "uid": "374342", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T19:26:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000834399071299683, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89708836, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29852075, + 51.38834505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hocu", + "uid": "374342", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T19:24:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89708795, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2944376, + 51.3848655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Manelmdiaz", + "uid": "10755264", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Restaurants", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T18:59:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89708088, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1574889, + 41.3929979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Manelmdiaz", + "uid": "10755264", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Restaurants", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T18:58:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89708034, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1574889, + 41.3929979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Manelmdiaz", + "uid": "10755264", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Restaurants", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T18:56:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89707983, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1574889, + 41.3929979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Manelmdiaz", + "uid": "10755264", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Restaurants", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T18:56:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89707964, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1574889, + 41.3929979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Manelmdiaz", + "uid": "10755264", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Restaurants", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T18:55:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89707958, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1574889, + 41.3929979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Manelmdiaz", + "uid": "10755264", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Restaurants", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T18:55:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89707924, + "theme": "restaurants" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1574889, + 41.3929979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Manelmdiaz", + "uid": "10755264", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #metamap", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T17:49:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89705487, + "theme": "maps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1694189, + 41.3858368 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T14:19:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89697089, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6524393, + 45.8368895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-20T14:17:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89697014, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6524393, + 45.8368895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-19T09:25:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89622951, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5966869, + 45.8897673 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-19T09:24:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89622923, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5965547, + 45.8897271 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-19T09:24:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89622886, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5966869, + 45.8897673 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-19T09:23:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89622807, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5965547, + 45.8897271 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-19T05:38:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89608014, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3932532, + 51.0336855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-19T05:34:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89607809, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3932532, + 51.0336855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-19T05:33:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89607765, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3932532, + 51.0336855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-18T18:56:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89591688, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9050333, + 51.2060669 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-18T18:55:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89591653, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9050333, + 51.2060669 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-18T18:55:22Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89591643, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9050333, + 51.2060669 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Agustin", + "uid": "30004", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #metamap", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-18T16:13:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89585554, + "theme": "maps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.1281611, + 42.9867733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-18T14:46:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89581804, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3932532, + 51.0336855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #test theme name", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-18T10:00:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89566523, + "theme": "test theme name" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7150406, + 41.2227771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Juan Carlos G F", + "uid": "3071067", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-17T20:15:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89537077, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.0680179, + 43.262091 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Stops", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-17T16:42:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89529460, + "theme": "stops" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7160987, + 41.2190819 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #Bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-17T16:20:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89528596, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7148677, + 41.2217551 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-16T09:38:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000112516511579917, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89466819, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4830018, + 51.065841750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-16T09:36:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.65713899998832e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89466775, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4798548499999997, + 51.0739112 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-16T09:35:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000039167267999985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89466758, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48230695, + 51.0749823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-16T09:30:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89466648, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5337501, + 52.9947596 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-16T09:27:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89466590, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5337501, + 52.9947596 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-16T09:27:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89466577, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5337501, + 52.9947596 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-16T09:26:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89466568, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5337501, + 52.9947596 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-16T09:24:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89466534, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5668792, + 53.0053151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-16T09:23:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89466521, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5668792, + 53.0053151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-16T09:23:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89466505, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5668792, + 53.0053151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-16T09:02:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.33678039998633e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89466101, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5707414, + 52.9924829 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-15T20:51:58Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000159264166599997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89456596, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1252327, + 50.92013165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-15T20:50:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000872954807100044, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89456554, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10313295, + 50.92484975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-15T20:47:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000138350525999876, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89456494, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.107366000000001, + 50.91010435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jolamberts", + "uid": "11026925", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-15T20:46:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000027182715199928, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89456470, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1112871, + 50.90844735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Decardo", + "uid": "11653319", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-14T19:24:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000287298460000827, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89427074, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2081006, + 51.18652615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-14T14:40:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89417205, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4815663, + 51.502385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-14T14:40:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89417169, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4815663, + 51.502385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-13T07:04:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89338725, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3876887, + 51.0458411 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-13T06:48:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89337783, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3876887, + 51.0458411 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yannick A", + "uid": "11641637", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T16:38:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000677822825300255, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89314575, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87329405, + 50.82452025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yannick A", + "uid": "11641637", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T16:37:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000677822825300255, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89314554, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87329405, + 50.82452025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yannick A", + "uid": "11641637", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T16:37:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000162417858000033, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89314545, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8438855, + 50.8354473 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T14:12:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89309318, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7222589, + 51.0464217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T11:19:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89301027, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.491458, + 51.0920052 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T08:59:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000290078877770027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89292111, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93601625, + 51.19777975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T08:58:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000290078877770027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89292039, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93601625, + 51.19777975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T08:43:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.26999409995005e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89291100, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46433495, + 51.04666985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ElienSohier", + "uid": "11575929", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T05:44:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.03665819996105e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89280973, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3798798, + 50.83544405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ElienSohier", + "uid": "11575929", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T05:41:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000393177366001187, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89280844, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3860681, + 50.83444245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Iliro", + "uid": "11638770", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T05:40:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000379189152000064, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89280801, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.119292, + 51.1606908 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ElienSohier", + "uid": "11575929", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T05:39:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000393177366001187, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89280763, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3860681, + 50.83444245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Iliro", + "uid": "11638770", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T05:34:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000875468958000146, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89280500, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1579925, + 51.14645005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Iliro", + "uid": "11638770", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-12T05:33:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000875468958000146, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89280456, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1579925, + 51.14645005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MichaelVdV_tw", + "uid": "11637440", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T21:59:42Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000566201874799633, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89271173, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0408494, + 51.1447271 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MichaelVdV_tw", + "uid": "11637440", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T21:58:52Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000117038879400035, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89271153, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05122175, + 51.1411996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MichaelVdV_tw", + "uid": "11637440", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T21:58:15Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000704324579400101, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89271142, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04237895, + 51.137787 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MichaelVdV_tw", + "uid": "11637440", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T21:57:44Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000110375087789922, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89271129, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03203145, + 51.14036695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MichaelVdV_tw", + "uid": "11637440", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T21:57:18Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000117704041069958, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89271122, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03097545, + 51.13476225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MichaelVdV_tw", + "uid": "11637440", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T21:56:32Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000876854701199761, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89271109, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03192945, + 51.1341935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MichaelVdV_tw", + "uid": "11637440", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T21:54:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000201475419000546, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89271079, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21623215, + 51.171460350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MichaelVdV_tw", + "uid": "11637440", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T21:54:24Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00244242134659993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89271069, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2334555, + 51.14821785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MichaelVdV_tw", + "uid": "11637440", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T21:52:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00015086271627006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89271033, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.121991250000001, + 51.158854649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MichaelVdV_tw", + "uid": "11637440", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T21:51:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000875468958000146, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89271010, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1579925, + 51.14645005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MichaelVdV_tw", + "uid": "11637440", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T21:49:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000932877692400564, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89270968, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7611414, + 50.9167484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MichaelVdV_tw", + "uid": "11637440", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T21:48:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.8434300000326e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89270937, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6979848, + 50.87341565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MichaelVdV_tw", + "uid": "11637440", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T21:47:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.8434300000326e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89270921, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6979848, + 50.87341565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brecht56", + "uid": "11637279", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T20:46:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.82873669997186e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89269423, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36453485, + 51.09465055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T10:00:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89243471, + "theme": "bookcases" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6495759, + 48.8361426 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T09:26:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000511743895800125, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89241493, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9730525500000002, + 51.0440237 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T09:24:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000203945623800058, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89241311, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.016833050000001, + 51.0451834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T09:22:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000321119619400163, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89241213, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0388611999999995, + 51.039164150000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T09:19:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000650750031998901, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89241077, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.042820900000001, + 51.0419274 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T09:19:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000941291154399877, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89241036, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.038808550000001, + 51.0387741 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T09:15:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000930375684000488, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89240842, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09352395, + 51.068232300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T09:14:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000930375684000488, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89240747, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09352395, + 51.068232300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T09:11:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000201130182000668, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89240601, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.059616549999999, + 51.0781319 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "groenwerker", + "uid": "11495525", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T09:10:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000201130182000668, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89240517, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.059616549999999, + 51.0781319 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "taveirnebert", + "uid": "11489279", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T08:29:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.84656219998943e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89238094, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2592000499999996, + 50.9075956 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "taveirnebert", + "uid": "11489279", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T08:27:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000024278945249983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89238015, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25670455, + 50.91830865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "taveirnebert", + "uid": "11489279", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-11T08:26:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.23683089999358e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89237924, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20168295, + 51.09632655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:40:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89216341, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3373278, + 50.8763909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:40:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89216328, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3373278, + 50.8763909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:39:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89216288, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3373278, + 50.8763909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:39:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89216285, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3373278, + 50.8763909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:38:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89216244, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3373278, + 50.8763909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:37:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89216216, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3373278, + 50.8763909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:36:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89216202, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3373278, + 50.8763909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:36:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89216186, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3373278, + 50.8763909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:30:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89216012, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3287995, + 50.8727951 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:28:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89215951, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3345362, + 50.8892402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:26:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89215883, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3345362, + 50.8892402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:22:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89215746, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3241726, + 50.8733567 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:20:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89215678, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3249033, + 50.8901985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomz34", + "uid": "11631714", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T20:18:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89215613, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3373338, + 50.8762849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T11:33:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89196683, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4502948, + 51.0838006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T11:30:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89196554, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4478284, + 51.0919485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T11:30:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89196531, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4504684, + 51.0841602 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chimel38", + "uid": "148831", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T07:38:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89183359, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7463646, + 45.1471565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chimel38", + "uid": "148831", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-10T07:38:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89183346, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7469842, + 45.1461997 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nigelramsay", + "uid": "2049284", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T20:00:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89163669, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.7751029, + -41.2911835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nigelramsay", + "uid": "2049284", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T20:00:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89163658, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.7732663, + -41.2943922 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nigelramsay", + "uid": "2049284", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T19:59:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89163637, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.7768396, + -41.2938043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nigelramsay", + "uid": "2049284", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T19:57:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89163594, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.7768396, + -41.2938043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T17:47:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.57069999966071e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89160626, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4479772, + 51.09358135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T17:45:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89160587, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4521481, + 51.0846264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lukfunk", + "uid": "9333062", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T15:37:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89157318, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7426479, + 48.396588 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mlamote", + "uid": "1129107", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T14:31:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 4.4000400000124e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89155785, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48350105, + 51.158655100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mlamote", + "uid": "1129107", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T14:29:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89155722, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4834515, + 51.1586773 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mlamote", + "uid": "1129107", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T14:28:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89155709, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4834515, + 51.1586773 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "map_jay", + "uid": "2211751", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T14:20:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89155506, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.7278771, + 50.7331389 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mlamote", + "uid": "1129107", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T14:12:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89155299, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5721879, + 51.1935559 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mlamote", + "uid": "1129107", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T14:11:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89155260, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5721879, + 51.1935559 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mlamote", + "uid": "1129107", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T13:55:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89154853, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5634473, + 51.1858258 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mlamote", + "uid": "1129107", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T13:54:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89154816, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5634473, + 51.1858258 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mlamote", + "uid": "1129107", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T13:52:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89154775, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5634473, + 51.1858258 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mlamote", + "uid": "1129107", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T13:51:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89154755, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5634473, + 51.1858258 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mlamote", + "uid": "1129107", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T13:48:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89154668, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5634473, + 51.1858258 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mfbehrens99", + "uid": "9645335", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-09T12:48:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.97344460002222e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89153051, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.23136835, + 50.004933199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-08T10:31:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89123603, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2362217, + 50.735992 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T20:53:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89108914, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2248056, + 51.2092223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T20:53:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89108910, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2248056, + 51.2092223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:32:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000315995830199919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89105341, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0944316499999998, + 51.2954728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:13:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104798, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0052811, + 51.1969375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:13:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104790, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0052811, + 51.1969375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:13:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104787, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0052811, + 51.1969375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:13:22Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104783, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0052811, + 51.1969375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:10:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104721, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0233408, + 51.2056615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:10:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000691014449999555, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104698, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0217175000000003, + 51.20566005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:09:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000691014449999555, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104690, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0217175000000003, + 51.20566005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:04:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000111356727569994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104516, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41225065, + 51.108698849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:03:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000111356727569994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104494, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41225065, + 51.108698849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:03:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000111356727569994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104482, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41225065, + 51.108698849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:02:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000111356727569994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104449, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41225065, + 51.108698849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:01:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000111356727569994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104426, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41225065, + 51.108698849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T18:00:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104410, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4023929, + 51.1114488 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T17:57:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104320, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1768785, + 51.2531839 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T17:56:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104278, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1768785, + 51.2531839 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T17:55:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89104235, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1901945, + 51.1229593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T17:10:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89102969, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2227391, + 51.2065955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T17:09:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89102934, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 31.1099339, + 70.3703315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T17:06:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89102835, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1108904, + 51.2049475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T17:04:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89102790, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1509752, + 51.2120753 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T16:53:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89102424, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1730194, + 51.1109037 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T16:47:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89102251, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2389458, + 50.7346319 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T16:42:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89102045, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2322594, + 50.7335461 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T16:36:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89101863, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.2096589, + 59.7362226 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T16:34:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89101785, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2204532, + 50.748126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T16:31:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89101713, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.2597331, + 60.1712451 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T16:22:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89101381, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.3890297, + 60.2401427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T16:21:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89101354, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.3890297, + 60.2401427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T16:20:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89101346, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.3890297, + 60.2401427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T16:14:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89101149, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.5006364, + 60.422103 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T16:13:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89101117, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.5006364, + 60.422103 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T15:34:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89099807, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2212821, + 51.2090847 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T15:32:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89099737, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.219121, + 51.2099687 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T15:16:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89099143, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2184148, + 51.2135223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T15:15:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89099112, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2184148, + 51.2135223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T14:02:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89096354, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2444, + 51.1929219 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #personal", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T14:02:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89096346, + "theme": "personal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2444, + 51.1929219 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jessica Vermeire", + "uid": "11615814", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T10:39:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00020856363760001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89087248, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6291763, + 51.169062350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jessica Vermeire", + "uid": "11615814", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T10:39:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00020856363760001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89087207, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6291763, + 51.169062350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jessica Vermeire", + "uid": "11615814", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T10:38:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00020856363760001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89087139, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6291763, + 51.169062350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jessica Vermeire", + "uid": "11615814", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T10:33:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00020856363760001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89086868, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6291763, + 51.169062350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jessica Vermeire", + "uid": "11615814", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T10:31:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000510954589440062, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89086780, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5660527999999996, + 51.16406145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jessica Vermeire", + "uid": "11615814", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T10:30:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000510954589440062, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89086727, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5660527999999996, + 51.16406145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jessica Vermeire", + "uid": "11615814", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T10:29:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000510954589440062, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89086689, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5660527999999996, + 51.16406145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jessica Vermeire", + "uid": "11615814", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T10:29:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000510954589440062, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89086647, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5660527999999996, + 51.16406145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jvandenbergh", + "uid": "4252462", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-07T07:05:16Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00515287932585974, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89074899, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.542434, + 50.95698095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-06T23:29:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89061220, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2197988, + 51.2156645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-06T21:56:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89059723, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198417, + 51.2156611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-06T19:16:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89054743, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.219898, + 51.215688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-06T18:01:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89052742, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2177094, + 51.2143136 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-06T18:01:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 89052737, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2177094, + 51.2143136 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-05T15:41:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88990444, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0492688, + 59.9565895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-05T15:41:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88990428, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0492688, + 59.9565895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-05T15:40:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88990398, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0492688, + 59.9565895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-05T15:38:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88990354, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0492688, + 59.9565895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-05T15:37:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88990297, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0492688, + 59.9565895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mariekelagrou", + "uid": "11605981", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-05T13:26:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.19516240000742e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88985027, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.975473, + 51.07148635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mariekelagrou", + "uid": "11605981", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-05T13:24:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000127434601199978, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88984933, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9608334, + 51.07394035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mariekelagrou", + "uid": "11605981", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-05T13:19:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000312551167500024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88984719, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9669899500000003, + 51.06937155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-05T11:22:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88978711, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0425504, + 50.7768575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-05T11:21:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88978682, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0425504, + 50.7768575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-05T11:20:55Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88978650, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0425504, + 50.7768575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Robbe Buls", + "uid": "11601737", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T19:22:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000290078877770027, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88945041, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93601625, + 51.19777975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Robbe Buls", + "uid": "11601737", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T19:20:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000143478496699964, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88944951, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8756564000000004, + 51.19094615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Robbe Buls", + "uid": "11601737", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T19:19:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00891691745670029, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88944926, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89661745, + 51.2212458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T16:50:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88940196, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4494629, + 50.7663223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T16:49:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88940187, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4494629, + 50.7663223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T16:49:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88940182, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4494629, + 50.7663223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T16:49:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88940172, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4494629, + 50.7663223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T15:27:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88937201, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2421925, + 50.7345615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T15:27:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88937197, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2421925, + 50.7345615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T07:34:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88912957, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2209914, + 50.7147772 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T07:30:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88912716, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2204532, + 50.748126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T07:20:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88912135, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7609662, + 59.9253398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T07:20:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88912130, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7609662, + 59.9253398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T07:20:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88912126, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7609662, + 59.9253398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T07:19:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88912116, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7609662, + 59.9253398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T07:18:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88912044, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7609662, + 59.9253398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T07:14:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88911817, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7609662, + 59.9253398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Morten Lange", + "uid": "337846", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T07:13:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88911794, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7609662, + 59.9253398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T07:06:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88911435, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2209923, + 50.7147216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T07:05:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88911393, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2209914, + 50.7147772 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T07:05:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88911383, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2209914, + 50.7147772 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-04T06:49:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88910488, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2204532, + 50.748126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T19:35:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88892458, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8879532, + 50.8489938 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T19:35:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88892445, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8879532, + 50.8489938 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T19:34:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88892415, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8879532, + 50.8489938 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T14:56:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88882756, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8879184, + 50.8499336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T14:55:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88882696, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8879184, + 50.8499336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T14:54:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88882672, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8879184, + 50.8499336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T13:07:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88878778, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2209923, + 50.7147216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T13:07:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88878757, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2209923, + 50.7147216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T13:06:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88878735, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2209923, + 50.7147216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T13:06:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88878713, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2210057, + 50.7147505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T13:06:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88878708, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2210057, + 50.7147505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T13:05:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88878701, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2210057, + 50.7147505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fien Van Damme", + "uid": "11593148", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T13:05:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000524110675199853, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88878686, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45779075, + 51.2634345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T13:05:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88878678, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2210057, + 50.7147505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fien Van Damme", + "uid": "11593148", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T13:03:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000524110675199853, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88878603, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45779075, + 51.2634345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T12:46:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88877940, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2204532, + 50.748126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T12:46:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88877938, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2204532, + 50.748126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T12:46:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88877934, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2204532, + 50.748126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T12:45:50Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88877903, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2204532, + 50.748126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ValentienGoethals", + "uid": "11594188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T12:10:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.82857320003108e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88876343, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20547975, + 51.0973851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ValentienGoethals", + "uid": "11594188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T12:09:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.82857320003108e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88876310, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20547975, + 51.0973851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ValentienGoethals", + "uid": "11594188", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T12:03:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000101235987300005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88876053, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17804725, + 51.11144955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thomas Anciaux", + "uid": "11593861", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-03T10:46:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000452375236000201, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88872316, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4092806499999995, + 50.864832500000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tine R", + "uid": "11590983", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T19:35:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000324771902300311, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88849201, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10192275, + 50.77658165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tine R", + "uid": "11590983", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T19:31:30Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000325180374399896, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88849120, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.092383, + 50.798316099999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tine R", + "uid": "11590983", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T19:29:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000993507749400142, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88849083, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0924328, + 50.79846675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tine R", + "uid": "11590983", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T19:27:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000157464624000511, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88849032, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.088327400000001, + 50.797120899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alwin Loeckx", + "uid": "11590749", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T18:17:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88847542, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1090798, + 50.7857738 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T17:19:38Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000457746017100013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88846161, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44145705, + 51.08931015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T17:16:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000487364591999831, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88846085, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44144335, + 51.0885375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T17:16:04Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000136692287940034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88846067, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43867775, + 51.087568000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T17:14:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000154215846299881, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88846029, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43790085, + 51.081050250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T17:13:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.46998200000248e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88845992, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42832635, + 51.0858166 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T17:12:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000160860972599943, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88845970, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4302798, + 51.08301265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T17:09:57Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000525545827999605, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88845906, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47508545, + 51.0680289 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T17:08:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000410729859999026, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88845874, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4771077999999997, + 51.06824315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T17:05:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000237329688899983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88845776, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4721493, + 51.07502605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T17:03:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000285168239999894, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88845735, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4832126, + 51.0749823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T17:03:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.27578900000103e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88845709, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43884065, + 51.0836402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T17:02:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000123816134000063, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88845697, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4311629999999997, + 51.08763985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T17:00:41Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000554391727998417, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88845637, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4307874, + 51.0882161 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T11:44:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000156826917600201, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88837531, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4315689999999996, + 51.088860600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-7777541838", + "osm_id": 7777541838, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "park" + } + } + ], + "user": "DennisMaes", + "uid": "11589234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T10:31:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88835815, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2016697, + 51.1277849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DennisMaes", + "uid": "11589234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T10:28:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.60221400000721e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88835732, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2353694, + 51.19762575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DennisMaes", + "uid": "11589234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T10:26:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000140538882299887, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88835686, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2407926499999995, + 51.19681445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DennisMaes", + "uid": "11589234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T10:23:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000236895081599848, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88835619, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.172453600000001, + 51.1190598 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DennisMaes", + "uid": "11589234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T10:21:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000121030584000139, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88835559, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.193551899999999, + 51.1240115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DennisMaes", + "uid": "11589234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T10:18:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000333404903999519, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88835506, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2073563, + 51.125288999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DennisMaes", + "uid": "11589234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T10:13:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.76402900000937e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88835384, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22210945, + 51.1281847 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DennisMaes", + "uid": "11589234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T10:11:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.64734000009627e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88835329, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.222246800000001, + 51.124354 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DennisMaes", + "uid": "11589234", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T10:09:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000260242383999754, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88835271, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1951882000000005, + 51.12745735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T08:56:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000219208970000538, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88833752, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4384484000000004, + 51.089057350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T08:55:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000219208970000538, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88833727, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4384484000000004, + 51.089057350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T08:54:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000463438569000742, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88833707, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43826975, + 51.08856575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mieke schauvliege", + "uid": "11465771", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T08:52:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.26894160001868e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88833670, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4375397000000003, + 51.087524200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T08:21:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000683430131999304, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88832970, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6171975, + 50.854112099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T08:20:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000013029637259989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88832936, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6171975, + 50.85339315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Moooook", + "uid": "11491369", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-02T08:19:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.23721999998673e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88832896, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59701465, + 50.8411694 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-01T21:48:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.02254550000737e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88825749, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40130365, + 51.04095375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-01T21:12:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.28175300000397e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88825141, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3976413, + 51.04105435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-01T21:08:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000123051091000392, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88825051, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39553515, + 51.04287375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-01T11:47:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88813196, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2581117, + 50.7507305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-01T11:47:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88813194, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2581117, + 50.7507305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-01T11:47:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88813191, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2581117, + 50.7507305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-01T11:47:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88813189, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2581117, + 50.7507305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-01T09:03:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88810288, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9867738, + 51.1071196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-01T08:50:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88810034, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9867738, + 51.1071196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-08-01T08:50:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 88810031, + "theme": "artworks" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9867738, + 51.1071196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-30T22:16:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91790167, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1238829, + 51.1675162 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "xavigramos", + "uid": "8955354", + "editor": "MapComplete 0.0.9", + "comment": "Adding data with #MapComplete for theme #dalemasvelocidad", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-09-30T16:27:56Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000485472960000293, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91779411, + "theme": "dalemasvelocidad", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0887805999999998, + 41.61364675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.9", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-09-30T13:55:06Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000575563837800575, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91773184, + "theme": "personal", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13137605, + 51.1686949 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rboven", + "uid": "11901712", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-30T09:59:33Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000125898981999167, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91759649, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4476073, + 51.25834055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rboven", + "uid": "11901712", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-29T18:24:15Z", + "reviewed_features": [], + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.00139284657380013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91724357, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.458389049999999, + 51.258767500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s548", + "uid": "1550938", + "editor": "MapComplete 0.0.9", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-29T03:14:04Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91673475, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5822456, + 50.6219693 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Meanderr", + "uid": "8554284", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #mcac_cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-28T22:08:45Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91667984, + "theme": "mcac_cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.5749322, + 43.5925976 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Meanderr", + "uid": "8554284", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #mcac_cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-28T22:08:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91667983, + "theme": "mcac_cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.5749322, + 43.5925976 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Meanderr", + "uid": "8554284", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #mcac_cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-28T22:08:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91667982, + "theme": "mcac_cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.5749322, + 43.5925976 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.9", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": null, + "source": "survey", + "imagery_used": "Not reported", + "date": "2020-09-28T18:05:33Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91660559, + "theme": "ghostbikes", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2158425, + 51.2205836 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dries Verdoodt", + "uid": "7250277", + "editor": "MapComplete 0.0.9", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-28T09:29:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91628909, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1895627, + 50.9697941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mikel Ortega", + "uid": "151106", + "editor": "MapComplete 0.0.9", + "comment": "Adding data with #MapComplete for theme #containeronvas", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-28T08:44:29Z", + "reviewed_features": [], + "create": 6, + "modify": 6, + "delete": 0, + "area": 4.46240000002699e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91625545, + "theme": "containeronvas", + "language": "es", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89612865, + 43.311429700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "karenvdp", + "uid": "2652124", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-28T08:12:42Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.00023099844071995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91623165, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7147712999999998, + 51.0802597 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-27T23:56:22Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91600328, + "theme": "bookcases", + "language": "nl", + "theme-creator": "MapComplete", + "embedded-website": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198605, + 51.2156964 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8i", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-27T21:50:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91598640, + "theme": "aed", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2120445, + 51.2135593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "xavigramos", + "uid": "8955354", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #dalemasvelocidad", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-27T20:09:40Z", + "reviewed_features": [], + "create": 0, + "modify": 36, + "delete": 0, + "area": 0.000178651297860036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91596369, + "theme": "dalemasvelocidad", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0916775, + 41.612907750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "adrigrillo", + "uid": "8553087", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #postalcode", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-27T17:01:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0404315540550011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91591043, + "theme": "postalcode", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.9520918, + 38.094740099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lordroger", + "uid": "168779", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #postalcode", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-27T16:56:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0201146062595997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91590879, + "theme": "postalcode", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20274625, + 40.806209300000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8h", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-27T15:10:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91587115, + "theme": "ghostbikes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2158425, + 51.2205836 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "xavigramos", + "uid": "8955354", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #dalemasvelocidad", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-27T15:01:01Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000391421530500198, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91586795, + "theme": "dalemasvelocidad", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0898913500000003, + 41.61150485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-27T10:57:14Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91578488, + "theme": "ghostbikes", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2158425, + 51.2205836 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-27T10:10:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91577107, + "theme": "ghostbikes", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2115447, + 51.2176632 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-27T10:05:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000296197872000004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91576955, + "theme": "cyclofix", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5799344, + 53.01687750000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ielham", + "uid": "462218", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #crossingtime", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-27T09:33:27Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000016098685199993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91575776, + "theme": "crossingtime", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.930975699999999, + 37.2694654 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #crossingtime", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-26T22:13:15Z", + "reviewed_features": [], + "create": 0, + "modify": 24, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91564964, + "theme": "crossingtime", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.793507, + 41.9504082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JohanBaijot", + "uid": "11885549", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-26T22:02:49Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.00000399593483000692, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91564798, + "theme": "cyclofix", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39520025, + 50.822956250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Simon Letellier", + "uid": "11886403", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-26T21:19:25Z", + "reviewed_features": [], + "create": 1, + "modify": 14, + "delete": 0, + "area": 0.00000990248609999729, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91564089, + "theme": "cyclofix", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3477061, + 50.82882355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bart Van der Spiegel", + "uid": "11886189", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-26T19:53:29Z", + "reviewed_features": [], + "create": 0, + "modify": 31, + "delete": 0, + "area": 0.00045364096745998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91562463, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4711957, + 51.13064795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Guido Laermans", + "uid": "11269816", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-26T16:32:49Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000652941715000275, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91557719, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9435875, + 50.77747195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-26T13:52:50Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91552473, + "theme": "aed", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6596409, + 48.838774 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Christopher", + "uid": "2956", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-26T08:20:18Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.0115487049248102, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91542705, + "theme": "cyclofix", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.20810255, + 52.339334449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-26T01:01:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91535355, + "theme": "bookcases", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2245804, + 51.215657 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lejo", + "uid": "298265", + "editor": "MapComplete 0.0.8e", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-25T18:54:47Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000293351224319996, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91527452, + "theme": "ghostbikes", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4248885, + 51.1873139 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.8e", + "comment": "Adding data with #MapComplete for theme #containeronvas", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-25T18:06:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91525513, + "theme": "containeronvas", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0852807, + 41.3606388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8e", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-25T15:34:26Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.06800000017934e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91518811, + "theme": "climbing", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.529738399999999, + 50.4033816 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8e", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-25T15:24:36Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00000153281890001013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91518314, + "theme": "nature", + "language": "nl", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5291298, + 50.40309585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-7942590315", + "osm_id": 7942590315, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-7942594070", + "osm_id": 7942594070, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-7942531449", + "osm_id": 7942531449, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8e", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-25T15:13:02Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00000153281890001013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91517794, + "theme": "maps", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5291298, + 50.40309585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.0.8d", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-24T19:40:10Z", + "reviewed_features": [], + "create": 6, + "modify": 20, + "delete": 0, + "area": 3.9635050000439e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91463977, + "theme": "boomgaarden", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3495105499999998, + 50.7937592 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rob Noort", + "uid": "5817148", + "editor": "MapComplete 0.0.8d", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-24T17:47:20Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000140310049990003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91457976, + "theme": "fietsstraten", + "theme-creator": "MapComlete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20222665, + 50.90495455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Phlcm", + "uid": "11857822", + "editor": "MapComplete 0.0.8c", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-22T07:38:12Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00044129857332003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91271957, + "theme": "buurtnatuur", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93345535, + 51.3428122 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.0.8c", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-21T18:22:39Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000616609088000205, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91244376, + "theme": "fietsstraten", + "theme-creator": "MapComlete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5702561, + 51.1312906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8d", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-21T16:24:04Z", + "reviewed_features": [], + "create": 3, + "modify": 9, + "delete": 0, + "area": 2.78068799999616e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91240064, + "theme": "climbing", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5700576, + 50.449631999999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8c", + "comment": "Adding data with #MapComplete for theme #metamap", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-21T12:24:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91229495, + "theme": "maps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5696392, + 50.4552997 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8c", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-21T11:58:38Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91227891, + "theme": "buurtnatuur", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5696714, + 50.4550456 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.8c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-21T10:10:37Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 1.61552721304785, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91220202, + "theme": "aed", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9816633, + 50.81438945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "way-38626186", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 38626186, + "reasons": [ + 489 + ], + "version": 6 + } + ], + "user": "Bezorgde Retenaar", + "uid": "11849298", + "editor": "MapComplete 0.0.8b", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-20T19:42:04Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000421367324400017, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91186735, + "theme": "buurtnatuur", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3892021, + 51.11071735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8b", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-20T19:28:18Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0004053928340001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91186361, + "theme": "buurtnatuur", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2050732, + 51.2065809 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ugo Sansen", + "uid": "11848519", + "editor": "MapComplete 0.0.8b", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-20T15:33:38Z", + "reviewed_features": [], + "create": 2, + "modify": 68, + "delete": 0, + "area": 0.00686941548409978, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91179439, + "theme": "buurtnatuur", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6466711, + 50.869434749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-20T15:10:07Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91178668, + "theme": "cyclofix", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2195174, + 51.2054346 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.0.8b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-20T12:48:18Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91174621, + "theme": "cyclofix", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.336233, + 50.8165646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8b", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-19T18:24:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.56356980000584e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91158300, + "theme": "buurtnatuur", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1258119, + 51.136023249999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wimvct", + "uid": "11839579", + "editor": "MapComplete 0.0.8b", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-18T14:55:55Z", + "reviewed_features": [], + "create": 0, + "modify": 41, + "delete": 0, + "area": 0.00084189388192006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91119338, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8906347500000003, + 50.978149099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8b", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-18T09:06:23Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91099444, + "theme": "buurtnatuur", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198122, + 51.2156779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8b", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-17T23:19:26Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 2.05159919997889e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91074626, + "theme": "buurtnatuur", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2194206, + 51.215589699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8b", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-17T23:17:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91074608, + "theme": "buurtnatuur", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.219839, + 51.2157166 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GeertenSabrina", + "uid": "11834564", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-17T18:34:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000127756486780008, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91064867, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3758485, + 50.88240625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GeertenSabrina", + "uid": "11834564", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-17T18:33:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000127756486780008, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91064861, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3758485, + 50.88240625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GeertenSabrina", + "uid": "11834564", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-17T18:30:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000455201768000445, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91064714, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3710229, + 50.8769488 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Valentino Langi", + "uid": "11833933", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-17T16:56:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000252079187979943, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91060765, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2018092, + 51.08852295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Valentino Langi", + "uid": "11833933", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-17T16:56:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000252079187979943, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91060755, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2018092, + 51.08852295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TeamWollie", + "uid": "234777", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-17T10:44:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.64211500001336e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91041161, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8800538, + 51.04887705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TeamWollie", + "uid": "234777", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-17T10:43:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000401653769999955, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91041061, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8785779, + 51.04608875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "TeamWollie", + "uid": "234777", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-17T10:41:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000401653769999955, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91040950, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8785779, + 51.04608875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Geert Verhaeghe", + "uid": "11828167", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T19:50:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000930905235000459, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91005229, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84622355, + 50.888813 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Geert Verhaeghe", + "uid": "11828167", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T19:50:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000362728585599954, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91005193, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8464065000000005, + 50.8963307 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Geert Verhaeghe", + "uid": "11828167", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T19:32:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000108617528399936, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91004594, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7557893, + 50.9033992 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Geert Verhaeghe", + "uid": "11828167", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T18:58:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000108617528399936, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91003424, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7557893, + 50.9033992 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "lieve54", + "uid": "11827932", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T18:13:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000284983770749944, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91001838, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.281584349999999, + 50.95677545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "lieve54", + "uid": "11827932", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T18:08:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000317644235580046, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91001663, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2532625500000005, + 50.9754246 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Duplief", + "uid": "11827861", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T18:01:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00031537930882, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91001370, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39361665, + 51.0596495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Duplief", + "uid": "11827861", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T18:00:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00031537930882, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91001352, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39361665, + 51.0596495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Duplief", + "uid": "11827861", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T17:58:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000884031695999584, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91001279, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.487890800000001, + 51.049881299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Duplief", + "uid": "11827861", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T17:56:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000295960211700261, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91001211, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.496159049999999, + 51.04920865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Duplief", + "uid": "11827861", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T17:54:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000295960211700261, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91001154, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.496159049999999, + 51.04920865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Duplief", + "uid": "11827861", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T17:54:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000295960211700261, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91001125, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.496159049999999, + 51.04920865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Duplief", + "uid": "11827861", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T17:52:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000079388767639966, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91001059, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5412682, + 51.001721450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Duplief", + "uid": "11827861", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T17:51:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000079388767639966, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91001022, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5412682, + 51.001721450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Duplief", + "uid": "11827861", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T17:49:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000414343488749968, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 91000952, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.515188350000001, + 51.02145215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stan Stukkens", + "uid": "11827758", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T17:22:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000997590171600238, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90999953, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3387316, + 50.97052155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mlaurez", + "uid": "11384345", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T17:18:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.14762849997501e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90999776, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46555415, + 51.08833215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mlaurez", + "uid": "11384345", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T17:17:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.76055080002317e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90999724, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4653986999999997, + 51.089831849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DirkGenar", + "uid": "1834562", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:43:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00028783728270001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90996138, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86214135, + 51.074384 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DirkGenar", + "uid": "1834562", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:42:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00028783728270001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90996120, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86214135, + 51.074384 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefwy", + "uid": "7186933", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:39:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000766871767998999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90996010, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7594335, + 50.90867145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:30:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.95295699965196e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90995645, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10122635, + 50.95237385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:29:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.31774760004992e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90995608, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1011762999999997, + 50.9531654 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:28:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000154436981000361, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90995564, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10323345, + 50.95367015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:26:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.2279782000114e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90995512, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1100862, + 50.95392805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:26:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000280503698999934, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90995491, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10721105, + 50.954020549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:23:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000280503698999934, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90995407, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10721105, + 50.954020549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:23:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000280503698999934, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90995382, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10721105, + 50.954020549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "stoicsteve", + "uid": "11827167", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:20:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000525946890299872, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90995270, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47779905, + 51.15964045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "stoicsteve", + "uid": "11827167", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:19:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000525946890299872, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90995245, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47779905, + 51.15964045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:18:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000973997037000165, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90995213, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13041035, + 50.919600849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:17:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000849292872600192, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90995177, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1333026, + 50.91954655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:15:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000912200184000743, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90995087, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1370412500000002, + 50.9221127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:14:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000912200184000743, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90995053, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1370412500000002, + 50.9221127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:11:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000912200184000743, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90994933, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1370412500000002, + 50.9221127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:10:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000912200184000743, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90994905, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1370412500000002, + 50.9221127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:09:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000912200184000743, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90994883, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1370412500000002, + 50.9221127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Janvdvn", + "uid": "11412423", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T15:08:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000912200184000743, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90994846, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1370412500000002, + 50.9221127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dreamin'Child", + "uid": "9601524", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T14:09:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000666430512000292, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90992147, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0508958, + 51.143290300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dreamin'Child", + "uid": "9601524", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T14:08:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000666430512000292, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90992125, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0508958, + 51.143290300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Se_Mo_Be", + "uid": "11319617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T13:20:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00060764522280007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90989855, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51616535, + 50.7957589 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Se_Mo_Be", + "uid": "11319617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T13:19:14Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 8.03087999967903e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90989775, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5087075500000005, + 50.8181149 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Se_Mo_Be", + "uid": "11319617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T13:16:09Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000463600888000633, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90989632, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5181011, + 50.8313699 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Se_Mo_Be", + "uid": "11319617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T13:15:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000673622341699299, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90989585, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55346255, + 50.832555549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Se_Mo_Be", + "uid": "11319617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T13:15:00Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00179610836306041, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90989561, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52408705, + 50.8288997 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Se_Mo_Be", + "uid": "11319617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T13:13:45Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00025466975663998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90989501, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5066500000000005, + 50.8213157 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Se_Mo_Be", + "uid": "11319617", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T13:13:00Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00200285846459993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90989462, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50329915, + 50.8157555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T12:40:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000064340890599976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90987807, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74912695, + 51.0326631 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jsta12", + "uid": "11825959", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T11:31:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000454507455219972, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90983747, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70191125, + 51.050111 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jsta12", + "uid": "11825959", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T11:27:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000241849475400327, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90983527, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4621377, + 51.14211855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jsta12", + "uid": "11825959", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T11:26:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000312517745999686, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90983465, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43009385, + 51.212760599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jsta12", + "uid": "11825959", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T11:25:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000635065145099829, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90983409, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43025505, + 51.21071935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jsta12", + "uid": "11825959", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T11:23:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.1974013999555e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90983264, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7278302, + 51.044352950000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jsta12", + "uid": "11825959", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T11:22:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000238522777200096, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90983212, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7143061, + 51.018052499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rudy De Maeyer", + "uid": "11825926", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T11:15:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000183902438899982, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90982722, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35596725, + 51.11952605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Joke Vermeulen", + "uid": "11825755", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T10:51:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90981224, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4735948, + 50.9742342 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Joke Vermeulen", + "uid": "11825755", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T10:50:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.80930499994497e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90981197, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47396625, + 50.97205115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Joke Vermeulen", + "uid": "11825755", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T10:50:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.80930499994497e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90981148, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47396625, + 50.97205115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Joke Vermeulen", + "uid": "11825755", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T10:49:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000178861929400014, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90981096, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47492915, + 50.974379400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Joke Vermeulen", + "uid": "11825755", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T10:48:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.62433399996842e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90981058, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4736874, + 50.975332949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Joke Vermeulen", + "uid": "11825755", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T10:48:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.62433399996842e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90981038, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4736874, + 50.975332949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Joke Vermeulen", + "uid": "11825755", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T10:48:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.62433399996842e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90981009, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4736874, + 50.975332949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LauriePC", + "uid": "11825670", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T10:34:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.97722460002154e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90980121, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7017808500000005, + 50.877448799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LauriePC", + "uid": "11825670", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T10:33:14Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 9.59865720003968e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90980033, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7061418, + 50.8774159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LauriePC", + "uid": "11825670", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T10:25:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000109480017000075, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90979502, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.182302699999999, + 50.84410165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "way-133635297", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 133635297, + "reasons": [ + 489 + ], + "version": 2 + } + ], + "user": "Van Cleemput", + "uid": "11512558", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T10:24:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.59621340005389e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90979432, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2958959, + 51.10309145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-16T00:37:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90950672, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3159181, + 50.8393283 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "janolezab", + "uid": "10630643", + "editor": "MapComplete 0.0.7m", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-15T22:53:42Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000142888014900017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90949407, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.17108215, + 52.52147105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-15T22:31:32Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.56926800000334e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90949013, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2353486, + 51.2255923 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.8", + "comment": "Adding data with #MapComplete for theme #id", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-15T22:26:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90948937, + "theme": "id", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7127857, + 41.2184744 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Christopher", + "uid": "2956", + "editor": "MapComplete 0.0.7m", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-15T19:34:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90944045, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2617957, + 52.3009814 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7m", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-15T17:59:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.57607000025717e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90940565, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10344635, + 51.30070455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7m", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-15T17:07:22Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 3.8123959999397e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90938570, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0806929, + 51.302400399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7m", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-15T16:43:09Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.0214599999688e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90937613, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1086309, + 51.29607865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7m", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-15T16:40:18Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00150791117274013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90937509, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1282772999999997, + 51.291391149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7m", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-15T13:09:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90928529, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198104, + 51.216471 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Meanderr", + "uid": "8554284", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #mcac_cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-14T23:35:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90888933, + "theme": "mcac_cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.63879, + 43.5829 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7m", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-14T18:34:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.46540800000417e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90881057, + "theme": "fietsstraten", + "theme-creator": "MapComlete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0724093, + 51.2136997 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-14T08:05:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000717539519999888, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90850604, + "theme": "fietsstraten", + "theme-creator": "MapComlete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2434196, + 50.898403599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #metamap", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-13T15:49:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90823549, + "theme": "maps" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0282936, + 50.4268354 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "way-154089626", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 154089626, + "reasons": [ + 489 + ], + "version": 7 + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7l", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-13T15:04:42Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000184563413100132, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90822349, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1100035, + 51.20460945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-13T13:46:47Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000139699066799646, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90820369, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0412641000000002, + 51.215109749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7l", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-13T12:04:58Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00315288879287999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90817864, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0935056000000003, + 51.2172018 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-12T20:33:59Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 5.37328000003461e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90804365, + "theme": "aed", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.784466, + 48.8690886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-12T16:12:39Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00635764485627974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90798265, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1306983500000003, + 51.2397265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Meanderr", + "uid": "8554284", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-12T14:26:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.84076029997709e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90795847, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.63845165000001, + 43.58340545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-12T13:39:37Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000315995830199919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90794795, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0944316499999998, + 51.2954728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-12T13:38:53Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000347774908320036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90794775, + "theme": "natuurpunt" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1155451000000003, + 51.291087700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #arbres", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-12T10:50:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90790543, + "theme": "arbres_llefia", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7129347, + 41.2189164 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.7l", + "comment": "Adding data with #MapComplete for theme #arbres", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-12T08:27:35Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90787182, + "theme": "arbres_llefia", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7129347, + 41.2189164 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.7l", + "comment": "Adding data with #MapComplete for theme #id", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-12T07:52:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90786503, + "theme": "id", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7129347, + 41.2189164 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-11T14:36:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90764596, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3127427, + 50.9974897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnkl", + "uid": "2855291", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-11T13:54:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90762633, + "theme": "aed", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5999932, + 52.370244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7l", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-11T11:17:32Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90754649, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3127427, + 50.9974897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cserpell", + "uid": "1714449", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-10T15:51:32Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00871428039599957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90711850, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.48286709999999, + -33.02933365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7k", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-09T18:45:49Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.0000112419704799898, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90661800, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2253160999999997, + 51.20772325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marcus Fihlon", + "uid": "1935779", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-09T14:35:31Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.0000325286910999856, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90652529, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.3030108, + 47.04814475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "charlie_OA", + "uid": "11782663", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T20:00:46Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90604349, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2464424, + -39.8147245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "charlie_OA", + "uid": "11782663", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T19:55:08Z", + "reviewed_features": [], + "create": 5, + "modify": 11, + "delete": 0, + "area": 0.000146100411499884, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90604182, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.25142325, + -39.8120184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "charlie_OA", + "uid": "11782663", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T19:53:04Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000519666685400018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90604111, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24659890000001, + -39.80883685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "charlie_OA", + "uid": "11782663", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T19:50:38Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000301306298200162, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90604050, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23839045, + -39.8138426 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "charlie_OA", + "uid": "11782663", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T19:50:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90604044, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2353919, + -39.8163547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "charlie_OA", + "uid": "11782663", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T19:41:25Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000323312824480217, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90603787, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24173475, + -39.8290979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "charlie_OA", + "uid": "11782663", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T19:18:31Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000270067767200651, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90603171, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24752939999999, + -39.8212003 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "charlie_OA", + "uid": "11782663", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T19:18:15Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90603167, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2475689, + -39.8148325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "charlie_OA", + "uid": "11782663", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T19:17:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90603151, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2475689, + -39.8148325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T19:15:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90603089, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2345805, + 51.2031733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "charlie_OA", + "uid": "11782663", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T19:13:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000523551209999395, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90603030, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24917115, + -39.814015600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "charlie_OA", + "uid": "11782663", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T19:04:21Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000050107774299954, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90602768, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.249939, + -39.81312705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T18:16:44Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90601225, + "theme": "artworks", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2484126, + 51.2111854 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T18:16:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000436137558997642, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90601201, + "theme": "fietsstraten", + "theme-creator": "MapComlete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25115145, + 51.21079115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T18:03:26Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90600775, + "theme": "artworks", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2358062, + 51.2114287 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T15:39:47Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.000102909530499957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90595733, + "theme": "artworks", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2275004000000003, + 51.22564835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T15:33:28Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00000321368893999889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90595520, + "theme": "artworks", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2212472, + 51.21898705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "janabau", + "uid": "10484014", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-08T09:48:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90577730, + "theme": "bookcases", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5607954, + 50.001676 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Meanderr", + "uid": "8554284", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-07T23:34:44Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90551017, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.6735588, + 43.5652092 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Meanderr", + "uid": "8554284", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-07T20:26:17Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.000626996999999747, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90548086, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.61553, + 43.590265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koastoas", + "uid": "7512983", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-07T18:39:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90545395, + "theme": "aed", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8328018, + 48.0944493 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7j", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-07T18:11:08Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90544563, + "theme": "toilets", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2067016, + 51.2297585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-07T04:35:29Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000021346925519976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90502031, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.228576, + -39.84806555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Adam Franco", + "uid": "27832", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-07T00:31:25Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90496495, + "theme": "ghostbikes", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.1942815, + 44.0447939 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Meanderr", + "uid": "8554284", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T19:57:43Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90491879, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.5897301, + 43.5507798 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T19:32:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90491318, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2343784, + -39.856532 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T17:33:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90488367, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2310726, + -39.8484284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Meanderr", + "uid": "8554284", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:58:47Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90485445, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.6308805, + 43.7138655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:34:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00110106810239998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484657, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1674286, + 51.12823349999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:32:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.20102470002745e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484603, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19871545, + 51.18413645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:32:10Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00054611969835006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484579, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19821455, + 51.17929545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:30:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000342085474999946, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484524, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21388825, + 51.18648695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:29:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.22392799997476e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484484, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2135037, + 51.1824861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:29:30Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 9.257853900032e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484476, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21358545, + 51.18188755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:29:07Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000495690516999501, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484462, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21452615, + 51.18125175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:28:36Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000527385600001218, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484441, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2155559, + 51.1806629 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:27:59Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000828546264999409, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484416, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2150161500000003, + 51.18217445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:27:38Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000203804383999767, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484407, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2132358, + 51.1820229 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:26:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.70406289993617e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484386, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21324725, + 51.181114449999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:26:18Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000148233887999982, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484362, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2155933, + 51.1807884 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:25:44Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000676058824979855, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484347, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1974762500000002, + 51.1855472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:24:25Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000786935350079912, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484292, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1670369000000003, + 51.17432595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:23:35Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00030417681048015, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484263, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1504135, + 51.16862815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:22:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000600489841740169, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484234, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1495923, + 51.16145125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:18:04Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00639580714017001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90484052, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1516784500000004, + 51.16528905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:16:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000275472337899968, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90483985, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2257728500000002, + 51.2081206 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:14:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.5209047999872e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90483916, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2245925, + 51.215393399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "janosb", + "uid": "11570302", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T15:12:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.40501400004301e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90483843, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22338255, + 51.2139502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T14:26:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90482341, + "theme": "aed", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6545139, + 48.8350604 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hoeilander", + "uid": "11769474", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T13:02:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000374278851000792, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90479608, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45979675, + 50.76612165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hoeilander", + "uid": "11769474", + "editor": "MapComplete 0.0.0", + "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T13:01:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0112621066125, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90479591, + "theme": "buurtnatuur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43590705, + 50.77419690000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wille", + "uid": "360183", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T12:30:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000647619233099807, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90478757, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.45069235, + -12.99260545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GoodClover", + "uid": "9645583", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T10:56:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.44046400003599e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90476470, + "theme": "toilets", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.4464396, + 53.7564724 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CjMalone", + "uid": "6816132", + "editor": "MapComplete 0.0.7h", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-06T08:45:40Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0053128504135201, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90473079, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23295815, + 50.6518272 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.0.7g", + "comment": "Adding data with #MapComplete for theme #velocidad", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-05T17:49:02Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.71126000032084e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90460448, + "theme": "velocidad", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7244895, + 41.22450325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7g", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-05T14:19:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90454739, + "theme": "ghostbikes", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4636974, + 50.9247651 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7g", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-05T12:11:14Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90451385, + "theme": "ghostbikes", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4636974, + 50.9247651 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7f", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-04T22:56:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90435151, + "theme": "aed", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2180207, + 51.197203 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7e Fixing all the bugs", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-03T17:16:28Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90374163, + "theme": "aed", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3383041, + 50.8361895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7d Refactored", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-03T11:16:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90358508, + "theme": "artworks", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2114893, + 51.2100257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7d Refactored", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-03T01:08:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90327941, + "theme": "cyclofix" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198712, + 51.2156964 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7d Refactored", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-02T22:07:23Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90325360, + "theme": "artworks", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2384697, + 51.2020032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7c mutlizoom", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-02T17:56:30Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90317681, + "theme": "artworks", + "theme-creator": "Not logged in" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2114893, + 51.2100257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7d Refactored", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-02T10:27:35Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90296993, + "theme": "artworks", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2147589, + 51.2024284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.0.7d Refactored", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-02T09:21:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90292472, + "theme": "bookcases", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2206893, + 51.2188868 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "laurent-38", + "uid": "3909835", + "editor": "MapComplete 0.0.7c mutlizoom", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": null, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2020-09-01T20:31:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000619713723500127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 90263965, + "theme": "aed", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15264095, + 45.609781049999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-31T21:33:57Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.00000423558117999938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98467725, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78030825, + 51.8105704 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-31T21:30:31Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000356845508750089, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98467603, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05467895, + 53.09147355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-31T18:01:03Z", + "reviewed_features": [], + "create": 5, + "modify": 22, + "delete": 0, + "area": 0.19363991798145, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98460295, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84320005, + 52.97507215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Blumrich", + "uid": "127000", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-31T16:27:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98456272, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0687313, + 49.0363479 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-1910522773", + "osm_id": 1910522773, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": { + "leisure": "picnic_table" + } + } + ], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-31T13:47:39Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000184429567000223, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98449135, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05604925, + 53.0974478 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-31T13:33:15Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 6.95646399999934e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98448481, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0512332, + 53.09623065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #picnictable", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-31T13:29:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98448320, + "host": "mapcomplete.osm.be", + "theme": "picnictable", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0378647, + 53.0978896 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Chuq", + "uid": "1649", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-31T06:45:25Z", + "reviewed_features": [], + "create": 0, + "modify": 30, + "delete": 0, + "area": 4.18817212755115, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98437369, + "host": "pietervdvn.github.io", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 146.5249843, + -42.0835224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-30T15:12:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98417963, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4986818, + 50.8026159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.7-rc2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-30T14:38:43Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.14632000006424e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98416814, + "host": "mapcomplete.braindeaddev.com", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4938024500000004, + 50.805554099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-30T12:37:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98412650, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5107419, + 50.8179282 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-30T11:39:04Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98410641, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.408983, + 50.8379633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-29T15:50:15Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98374817, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7380204, + 51.048925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-29T14:45:18Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000115446055400109, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98371877, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0517518, + 53.100541899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-29T09:49:51Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98352985, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4290511, + 46.953448 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-28T22:13:31Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98322167, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6937297, + 51.0523542 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-28T22:09:44Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98322082, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6964649, + 51.051195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-28T15:54:23Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.00000252684750000418, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98306989, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84122635, + 50.8831916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vrmap", + "uid": "852319", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-28T14:05:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000881409116799754, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98301641, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.910717349999999, + 45.392338 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-27T12:22:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98229218, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9008009, + 51.092196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-27T12:20:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98229099, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9006078, + 51.0918961 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "HMAID", + "uid": "12333329", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 6, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-27T05:25:24Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98198969, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6955127, + 51.082431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eleuthere", + "uid": "279790", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-26T20:47:15Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 6.36928999999173e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98183437, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4142504, + 50.80420265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Simon Bil", + "uid": "2797899", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-26T00:00:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98148467, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6898487, + 51.0655256 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-25T23:45:32Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98148236, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6898487, + 51.0655256 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CJam25", + "uid": "11605632", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-25T20:48:15Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98143845, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1300977, + 50.9478119 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.2.7-rc2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-25T16:39:15Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98134697, + "host": "mapcomplete.braindeaddev.com", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.748073, + 51.1599763 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-24T14:00:19Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98058241, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2304955, + 51.2069292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-24T13:37:18Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98057411, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.239902, + 51.2126842 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-24T10:38:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000330619079999894, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98049808, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3526679999999995, + 51.467340500000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-24T09:03:48Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000177301669519991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98046838, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.327279600000001, + 51.478874250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-24T08:43:33Z", + "reviewed_features": [], + "create": 8, + "modify": 19, + "delete": 0, + "area": 0.0011399523805998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98046406, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33888505, + 51.4792543 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-23T18:41:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000282660019200363, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98032028, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5649269, + 51.9735063 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-23T14:28:28Z", + "reviewed_features": [], + "create": 12, + "modify": 12, + "delete": 0, + "area": 0.000517591509640003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98022407, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5896743, + 51.97249165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-23T13:55:21Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000535202889899935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98021252, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5872924, + 51.97371755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-23T13:10:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98019711, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7288127, + 51.048693 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "relation-11907969", + "osm_id": 11907969, + "reasons": [ + 42 + ], + "version": 7, + "primary_tags": {} + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-22T22:55:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.5006587999254e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97999677, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6174839500000004, + 51.965218899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-22T15:07:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97982572, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7035888, + 51.0489731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-22T14:40:12Z", + "reviewed_features": [], + "create": 1, + "modify": 10, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97981296, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.557152, + 51.185359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-22T12:29:44Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97975013, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7035888, + 51.0489731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8348959472", + "osm_id": 8348959472, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-22T11:43:01Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000272694251999638, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97971861, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6868532, + 51.04162865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-22T11:18:52Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97970141, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "nl", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.692058, + 51.0418462 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-22T11:14:20Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.53989999995238e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97969812, + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69128425, + 51.0419482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-22T11:05:05Z", + "reviewed_features": [], + "create": 0, + "modify": 40, + "delete": 0, + "area": 0.00294680198581974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97969122, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61011945, + 51.9470903 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-22T10:57:49Z", + "reviewed_features": [], + "create": 10, + "modify": 9, + "delete": 0, + "area": 0.000570756834180061, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97968558, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6169493, + 51.94957995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tordans", + "uid": "11881", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-22T07:22:33Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.62911060002313e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97953003, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4468894, + 52.473835949999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "relation-11907969", + "osm_id": 11907969, + "reasons": [ + 42 + ], + "version": 5, + "primary_tags": {} + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-21T16:51:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.5006587999254e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97918475, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6174839500000004, + 51.965218899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kazing", + "uid": "4741702", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-21T12:25:08Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000578366384850076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97905093, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06433335, + 50.62497095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-21T12:24:21Z", + "reviewed_features": [], + "create": 0, + "modify": 29, + "delete": 0, + "area": 0.00169979492034012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97905043, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6283368, + 51.96641955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Riemer17", + "uid": "11296446", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-21T09:05:42Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00000897586180000443, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97890693, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90992415, + 52.3719899 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-20T17:04:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.37290300000272e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97850636, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67129995, + 51.05802625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "heretofore", + "uid": "1329494", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-20T15:09:09Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97845480, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0738197, + 39.0286883 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vorpalblade", + "uid": "2078753", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-20T10:07:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97827779, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "Stadia.AlidadeSmoothDark", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -108.558409, + 39.0674318 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "richardbrinkman", + "uid": "57652", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-19T07:02:52Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000105571934899947, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97744035, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86238855, + 52.211205250000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-18T21:29:45Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00969658587315008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97722280, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4432291500000005, + 51.00688235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rodolfovargas", + "uid": "1217047", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-18T20:42:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97720781, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -68.1551733, + -16.5252003 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rodolfovargas", + "uid": "1217047", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-18T20:37:30Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000493786904002162, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97720603, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -68.1550315, + -16.5260483 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rodolfovargas", + "uid": "1217047", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-18T20:26:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97720228, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -68.1514727, + -16.5199953 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #wiki:User:joost_schouppe/campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-18T15:06:44Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97706983, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4929643, + 51.0986615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-18T13:15:37Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97701599, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9787593, + 51.3347346 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-18T12:51:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97700317, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9168459, + 51.1042226 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjmarshalluk", + "uid": "10794960", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-18T10:57:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97692703, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.9362466, + 51.003765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wvdp", + "uid": "436419", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-18T09:40:18Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97686456, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2586477, + 51.822221 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-18T08:53:38Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97682765, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8668709, + 51.1136799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geim", + "uid": "2530858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-18T07:55:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97678655, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8928745, + 52.7546404 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geim", + "uid": "2530858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-18T07:30:29Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97676779, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8904708, + 52.7510038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "k4pl4n", + "uid": "11229531", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-17T17:18:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97646137, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4804918, + 49.105972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-17T14:52:24Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.28535000003479e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97640804, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25450545, + 51.1545927 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.4.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-17T09:20:42Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97629850, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0639534, + 14.6280472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dnikitin", + "uid": "277726", + "editor": "MapComplete 0.4.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-16T20:43:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00159334437405007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97619137, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 30.28399865, + 59.87948985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dnikitin", + "uid": "277726", + "editor": "MapComplete 0.4.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-16T20:39:32Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000192747287899984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97619006, + "host": "pietervdvn.github.io", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 29.84847735, + 58.73923485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tordans", + "uid": "11881", + "editor": "MapComplete 0.4.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-16T16:38:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97611926, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4499198, + 52.4740304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-16T09:47:41Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.00000501280560000484, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97596920, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6093002, + 51.9648766 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "damianeue", + "uid": "10124288", + "editor": "MapComplete 0.4.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-15T22:15:06Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.83815999971962e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97584579, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1866544, + 42.4237237 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-15T21:58:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000501280560000484, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97584125, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6093002, + 51.9648766 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.4.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-15T20:34:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000131156537919975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97581736, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.4577034, + 38.4095949 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.4.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-15T20:32:46Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 1.29359100000516e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97581678, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.47961885, + 38.41107215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.4.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-15T20:30:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.50785900000961e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97581595, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.47927245, + 38.411156649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-5537748693", + "osm_id": 5537748693, + "reasons": [ + 42 + ], + "version": 8, + "primary_tags": { + "leisure": "picnic_table" + } + }, + { + "url": "node-8254195188", + "osm_id": 8254195188, + "reasons": [ + 42 + ], + "version": 7, + "primary_tags": { + "leisure": "picnic_table" + } + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-15T19:55:58Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00000501280560000484, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97580462, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6093002, + 51.9648766 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-15T16:25:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97572054, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7210901, + 51.0539222 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-15T16:23:18Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 1.41883999999842e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97571925, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7211368499999997, + 51.0539201 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DagelijksGamer", + "uid": "6427149", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-15T11:56:44Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97558341, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8684052, + 51.1178203 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-15T11:39:29Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00017226156973005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97557058, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67296685, + 51.04182575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wiki-User-joost_schouppe-campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-15T11:18:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97555565, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9053767, + 43.0772952 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-15T08:27:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000501280560000484, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97543181, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6093002, + 51.9648766 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-14T22:25:36Z", + "reviewed_features": [], + "create": 7, + "modify": 64, + "delete": 0, + "area": 0.00000836724176000165, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97518237, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.418814, + 46.9360785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-14T12:01:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000313192622400111, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97494238, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28474255, + 51.1995077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-14T11:24:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97492404, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7080829, + 51.0402474 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-13T22:25:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97466773, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4166263, + 46.935583 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "HopsAndSpokes", + "uid": "5593540", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-13T19:49:25Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97461822, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -104.827921, + 38.8674445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Que2", + "uid": "107548", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-13T18:57:52Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000046626972549978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97460300, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 22.27739105, + 60.45108275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-13T13:07:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97443981, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1319288, + 52.0674761 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #wiki:User:joost_schouppe/campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-13T11:54:12Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97439355, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5930763, + 43.2923569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "BenjaminJacobs", + "uid": "12475456", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-12T20:26:09Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.000160400790330085, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97395648, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93146445, + 51.10134375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-12T19:26:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97393566, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.345046, + 50.8443827 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-12T18:03:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97390528, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1268258, + 52.0674413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-12T16:05:50Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0723991903767885, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97385016, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87487305, + 52.01154905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #wiki:User:joost_schouppe/campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-12T14:28:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97380227, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1891035, + 43.3552972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #wiki:User:joost_schouppe/campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-12T14:25:55Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97380110, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1891035, + 43.3552972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-12T13:04:28Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97375834, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7288407, + 51.0483444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pippo6", + "uid": "11052147", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-12T12:04:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97371956, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.2000838, + 40.9241603 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #wiki:User:joost_schouppe/campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-12T12:01:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97371774, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0494273, + 43.0161961 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-12T02:53:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97337096, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6891342, + -33.4534636 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Iván_", + "uid": "1773299", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-11T22:54:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97332769, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6786135, + 40.403126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-11T19:46:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.38741620001738e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97327412, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2163449, + 51.21957745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn Tallir", + "uid": "10333370", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-11T14:43:10Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97313582, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0423988, + 51.152854 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-10T21:02:53Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 8.10269880000356e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97263926, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21802935, + 51.205186299999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #wiki:User:joost_schouppe/campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-10T17:04:06Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97256687, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7348366, + 43.7906494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-09T22:51:35Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.0000214357331200249, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97231513, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5526015, + 51.0213521 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SenorHombre", + "uid": "9530610", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-09T17:35:34Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00255787474608007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97221773, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.64734555, + 49.439272900000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-09T15:41:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97217616, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2895117, + 51.1408107 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-09T13:07:46Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97211787, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3434648, + 50.8484042 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sanderd17", + "uid": "253266", + "editor": "MapComplete 0.4.7", + "comment": "Adding data with #MapComplete for theme #wiki:User:joost_schouppe/campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-09T12:26:57Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97210462, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0459655, + 51.027303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-09T00:50:33Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.49820000035196e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97195966, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7288113000000003, + 51.04838265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.5", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-08T18:46:42Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 14.7916480750634, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97185967, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1433869, + 46.39649645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.4.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-08T17:49:00Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 9.59111999995448e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97183915, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7871515, + 48.1047489 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.5", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-08T17:26:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.87920000031525e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97182987, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1382654, + 43.9850031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-08T02:47:13Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.513600000178e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97137285, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7593784, + 51.0597281 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Matija Nalis", + "uid": "52552", + "editor": "MapComplete 0.4.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-08T01:47:12Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000965140921800063, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97136113, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.920170800000001, + 45.79916775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pfiers", + "uid": "3797928", + "editor": "MapComplete 0.4.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-07T17:31:25Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.000011762438790007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97123454, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70600415, + 50.874980949999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ielham", + "uid": "462218", + "editor": "MapComplete 0.4.0", + "comment": "Adding data with #MapComplete for theme #crossingtime", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-07T11:34:57Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000191273151079964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97106307, + "host": "pietervdvn.github.io", + "theme": "crossingtime", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.9348564, + 37.2608212 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MaraLS", + "uid": "42613", + "editor": "MapComplete 0.4.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-07T05:04:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97083191, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.736922, + 48.1147527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.3.2", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-07T01:57:44Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97077181, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5929557, + -33.6050764 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "HMAID", + "uid": "12333329", + "editor": "MapComplete 0.3.0b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-06T06:58:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000148984253519971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97026167, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7321125, + 51.048674399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "HMAID", + "uid": "12333329", + "editor": "MapComplete 0.3.0b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-06T06:52:36Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97025792, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6955127, + 51.082431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.3.0b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-06T05:15:36Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97019882, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0196266, + 14.5561595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8295135893", + "name": "Fietsbieb Sint-Agatha-Berchem", + "osm_id": 8295135893, + "reasons": [ + 43 + ], + "version": 7, + "primary_tags": { + "amenity": "bicycle_library" + } + }, + { + "url": "node-8295008818", + "name": "Fietsbieb Laken", + "osm_id": 8295008818, + "reasons": [ + 43 + ], + "version": 8, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.3.1 ", + "comment": "Adding data with #MapComplete for theme #bicyclelib", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-06T00:33:39Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.00395644838523984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97010957, + "host": "127.0.0.1:1234", + "theme": "bicyclelib", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.321256, + 50.83582725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8294964784", + "name": "Fietsbieb Ukkel", + "osm_id": 8294964784, + "reasons": [ + 43 + ], + "version": 7, + "primary_tags": { + "amenity": "bicycle_library" + } + }, + { + "url": "node-8295008818", + "name": "Fietsbieb Laken", + "osm_id": 8295008818, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.3.0b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-05T22:47:23Z", + "reviewed_features": [], + "create": 2, + "modify": 12, + "delete": 0, + "area": 0.000098512521900014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 97008704, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3470441, + 50.83582725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.3.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-05T02:19:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96940791, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9867941, + 51.1845669 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.7-rc4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-04T22:38:52Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 6.16628999949062e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96936300, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70525315, + 51.05283935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dries Verdoodt", + "uid": "7250277", + "editor": "MapComplete 0.2.7-rc2", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-04T20:52:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000497074643999849, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96932914, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18412485, + 50.981702 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dries Verdoodt", + "uid": "7250277", + "editor": "MapComplete 0.2.7-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-04T20:49:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.94407599998679e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96932821, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1881071500000004, + 50.9742576 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.7-rc2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-04T20:36:47Z", + "reviewed_features": [], + "create": 4, + "modify": 8, + "delete": 0, + "area": 4.66876800007456e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96932361, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7044505, + 51.052711 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "IlesD", + "uid": "12432170", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-04T14:00:42Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96913831, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1617935, + 51.4192001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ukbabz", + "uid": "12430534", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-04T13:14:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96911158, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3140013, + 51.5752672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ukbabz", + "uid": "12430534", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-04T09:49:34Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.000921768357130073, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96896162, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2896106500000002, + 51.591760949999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ukbabz", + "uid": "12430534", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-04T08:41:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96891171, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.305209, + 51.5812212 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hejsja", + "uid": "12423825", + "editor": "MapComplete 0.2.5g", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-02T17:35:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96817720, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4011954, + 50.8255878 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "techie66", + "uid": "8818857", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-02T16:33:04Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 4.99419000049318e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96815194, + "theme": "charging_stations", + "language": "en", + "theme-creator": "" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.98178165, + 39.33653495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "techie66", + "uid": "8818857", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-02T16:04:30Z", + "reviewed_features": [], + "create": 2, + "modify": 10, + "delete": 0, + "area": 6.5433794999533e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96814012, + "theme": "toilets", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.98361585, + 39.33917945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Felix Edelmann", + "uid": "2274641", + "editor": "MapComplete 0.2.5g", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-02T13:21:45Z", + "reviewed_features": [], + "create": 9, + "modify": 34, + "delete": 0, + "area": 0.0000555279197399728, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96807227, + "theme": "benches", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.789217350000001, + 48.1013625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RW_Emerson", + "uid": "12422398", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-02T10:43:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96801175, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1115655, + 51.4864637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "NickFolzie", + "uid": "12421409", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-02T05:21:53Z", + "reviewed_features": [], + "create": 2, + "modify": 24, + "delete": 0, + "area": 0.0417936814663197, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96794904, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -84.3858937, + 39.1887971 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Amir S", + "uid": "77890", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-02T02:02:38Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.01300599993571e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96792786, + "theme": "toilets", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10361885, + 51.5700931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "yogeek23", + "uid": "11987315", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-01T21:35:10Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0602305630554551, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96788183, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.8960596, + 32.95640745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cdei", + "uid": "1871582", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-01T19:31:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96784719, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.111376, + 51.496571 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-01T15:37:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96776774, + "theme": "toilets", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2183307, + 51.2045141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "micheltz", + "uid": "10155250", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-01T14:07:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96772551, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.4381678, + 46.6138132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "micheltz", + "uid": "10155250", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-01T12:29:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96768531, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3104002, + 43.7173113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ImagineDavis", + "uid": "11796067", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-01-01T01:42:31Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96755150, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -118.09758925, + 34.1459056 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skifans", + "uid": "2800603", + "editor": "MapComplete 0.2.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-01-01T00:34:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.06333999997791e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 96754404, + "theme": "cyclofix", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4629238999999998, + 53.3775421 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nicolelaine", + "uid": "2997398", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-31T23:18:23Z", + "reviewed_features": [], + "create": 7, + "modify": 2, + "delete": 0, + "area": 0.0000495904921300044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113211661, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.912959749999999, + 53.568176550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "elmarburke", + "uid": "100952", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-31T21:20:58Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.0000417743625400102, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113209361, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9386236, + 52.39905455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "elmarburke", + "uid": "100952", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-31T20:35:55Z", + "reviewed_features": [], + "create": 0, + "modify": 170, + "delete": 0, + "area": 0.000759066831999958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113208196, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 263, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92671375, + 52.398450800000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-31T19:46:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113206794, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8502412, + 50.9537904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-31T18:06:47Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113203637, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.5216465, + 41.6315787 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SKlettke", + "uid": "14218100", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-31T16:30:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113200439, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7104317, + 52.5146233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-31T15:10:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.10072199998591e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113197196, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86096605, + 50.9959552 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-31T15:00:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113196838, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8571554, + 50.9910854 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85302", + "uid": "14030677", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-31T14:13:38Z", + "reviewed_features": [], + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.000751424071850168, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113194894, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.45534885, + 51.86195935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-31T13:56:10Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000248520095999939, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113194138, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 32, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.500363200000001, + 52.9994699 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dekarl", + "uid": "5760", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-31T13:49:41Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000744159989299727, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113193868, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 21, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.88316705, + 49.750030949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-31T13:33:04Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.000108551607840076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113193213, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 29, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5837175000000006, + 53.0112094 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-31T13:05:09Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113192072, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1877101, + 50.8138998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-31T12:59:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113191871, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1803919, + 50.815788 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-31T11:37:43Z", + "reviewed_features": [], + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.000135560857819959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113188983, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 112, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5944477500000005, + 53.0124767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dekarl", + "uid": "5760", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-31T09:59:22Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000246767415099986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113185480, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.88559165, + 49.75416515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-31T08:41:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113183368, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8711039, + 50.9838572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-31T02:14:53Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000224954496000215, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113178247, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 11, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -98.774433, + 38.520436000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-31T02:09:36Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000014007332630125, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113178210, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -98.77543514999999, + 38.51659705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #amenity", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-30T20:55:50Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 7.89779199996998e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113174278, + "host": "mapcomplete.osm.be", + "theme": "amenity", + "answer": 1, + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7251018, + 41.2235419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-30T18:39:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.78399996392555e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113171049, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "move:node/9212378672": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2134867, + 51.273909450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-30T18:31:18Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 2.87412000001961e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113170848, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 12, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2426008500000005, + 50.7399335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RoySiegel1409", + "uid": "14378838", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-30T16:24:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113167174, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5439431, + 52.5199993 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-30T16:11:57Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113166817, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "ghostbikes", + "answer": 3, + "imagery": "CartoDB.Positron", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2135355, + 51.2739099 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-30T14:58:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113164317, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2482913, + -39.8174256 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-30T14:08:43Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.000408211324799962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113162656, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 37, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.82372905, + 48.2770006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-30T11:14:33Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113156911, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2057786, + 51.2166419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Leinna", + "uid": "12622581", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-30T09:51:15Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000268037088499896, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113154144, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 149.10384465, + -35.307573649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dekarl", + "uid": "5760", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-30T08:24:32Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.101791488280228, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113151688, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 41, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.74889525, + 49.95250085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "valhalla", + "uid": "18818", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-30T07:37:57Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 1.18440000044692e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113150555, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "bookcases", + "answer": 4, + "imagery": "osm", + "language": "en", + "move:node/9211743706": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8225693, + 45.8180233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Milhouse", + "uid": "132695", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-30T02:27:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113146384, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.3195168, + 51.5108692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-30T00:36:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.508532213747214, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113145619, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "ghostbikes", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "en", + "move:node/6017635080": "improve_accuracy", + "move:node/7947512310": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9433354499999997, + 51.0501025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-29T20:59:57Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000652882675879943, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113141592, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2011024, + 50.9274822 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-29T16:57:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113133260, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2311544, + 50.7306946 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-29T16:33:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000299972683999146, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113132316, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.670592500000001, + 48.755136199999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.0-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-29T16:07:28Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000766361424000939, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113131130, + "host": "127.0.0.1:1234", + "theme": "grb", + "answer": 13, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.217245, + 51.2150345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-29T15:08:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000842175378999643, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113128981, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.71221775, + 48.75860525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tordans", + "uid": "11881", + "editor": "MapComplete 0.12.0-beta", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-29T14:38:40Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000011429471139987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113127802, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 13, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3532934999999995, + 50.82130345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.11.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": "2021-10-29T13:34:05Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000479602171999717, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113125295, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 6, + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.648593000000005, + -34.654215050000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.0-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-29T13:28:30Z", + "reviewed_features": [], + "create": 16, + "modify": 0, + "delete": 0, + "area": 8.40407999999901e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113125083, + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21610405, + 51.2132069 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hfs", + "uid": "9607", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-29T11:38:22Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.000624009004120114, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113120672, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 16, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.07104225, + 52.3901654 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hfs", + "uid": "9607", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-29T11:38:22Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113120671, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0475642, + 52.3835208 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.12.0-beta", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-29T09:56:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113116149, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7228588, + 51.0560322 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-29T06:31:05Z", + "reviewed_features": [], + "create": 0, + "modify": 77, + "delete": 0, + "area": 0.02190211551878, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113108382, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 124, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.797343649999998, + 48.7811608 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-28T17:53:51Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000030115317570002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113092656, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.89930975, + 48.74755225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-28T15:44:19Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00101334545940014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113088240, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.94291155, + 48.7458015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.11.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": "2021-10-28T13:17:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.000474947652719991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113082716, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 4, + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.70531, + -34.6556281 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-28T13:07:42Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113082381, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2165198, + 51.1951634 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-28T13:05:25Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113082319, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "charging_stations", + "answer": 7, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "move:node/-1": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2167532, + 51.1952601 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-28T12:59:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000176790010799898, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113082105, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "nl", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20747325, + 51.1927598 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-28T10:56:10Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000141756080139967, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113077093, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "food", + "answer": 13, + "imagery": "osm", + "language": "en", + "move:node/4227045139": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7208156, + 51.04977505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "CuzRocks2Heavy", + "uid": "14297970", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-28T01:01:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000561287491993851, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113059829, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -80.41969245, + 37.2199775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.11.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": "2021-10-28T00:36:01Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 9.21929999990372e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113059588, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 2, + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.76180895, + -34.6585943 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.0-beta", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-27T23:19:37Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000513364574499761, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113058608, + "host": "127.0.0.1:1234", + "theme": "sidewalks", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21771215, + 51.21593945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-27T18:35:39Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.44072231197635, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113051034, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 35, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.377141649999999, + 48.52651415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s8evq", + "uid": "3710738", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/VerkeerdeBordenDatabank.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-27T18:22:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113050669, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/verkeerdebordendatabank/verkeerdebordendatabank.json", + "answer": 1, + "imagery": "Stamen.TonerLite", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4836779, + 51.1044175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Pablo667", + "uid": "13166651", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-27T16:06:49Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.00000000023515e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113044898, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en", + "move:node/9205242210": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.5990736, + 46.66878385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alan Orth", + "uid": "10607774", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-27T13:38:04Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000112669229200142, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113038656, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.9190812, + 31.95690195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.11.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": "2021-10-27T13:16:26Z", + "reviewed_features": [], + "create": 6, + "modify": 9, + "delete": 0, + "area": 0.00346817202658938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113037755, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 28, + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.467542449999996, + -34.62377535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-27T11:46:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113034431, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.090876, + 52.5058044 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Willhelm_Mueller", + "uid": "308224", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-27T10:15:34Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113030047, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.544858, + 52.2558548 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-27T09:42:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113028520, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9171064, + 52.5588591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-27T08:00:45Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113024531, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9216479, + 52.5599441 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-27T06:03:22Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000618782399999229, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113019941, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 12, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.3125855, + 38.876784 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-26T20:58:46Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000482855057850024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113010848, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58372975, + 53.022156949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cmap99", + "uid": "13524250", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-26T19:41:15Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.000870479829929949, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113008229, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 36, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.106560349999999, + 53.26894645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-26T17:57:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113005319, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3665548, + 50.8442926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Pablo667", + "uid": "13166651", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-26T16:04:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113001200, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.5689426, + 46.6417558 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SpeedMcCool", + "uid": "2260722", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-26T15:34:08Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000738887609879628, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112999964, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 12, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -93.2252472, + 44.930924250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-26T15:31:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.1836374000094e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112999873, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3353766, + 50.87851705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.11.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": "2021-10-26T13:05:41Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000152801359999587, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112993571, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 3, + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6487649, + -34.6541886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-26T13:00:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112993400, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9755905, + 51.3370068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pbnoxious", + "uid": "356987", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-26T10:19:36Z", + "reviewed_features": [], + "create": 0, + "modify": 98, + "delete": 0, + "area": 0.000244158304410027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112986442, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 154, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.06280795, + 49.70883905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-26T06:44:48Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 2.66550299996821e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112977842, + "host": "pietervdvn.github.io", + "path": "mc/theme/street_lighting/", + "theme": "street_lighting", + "answer": 14, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57145815, + 53.01847585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Magnus1234", + "uid": "14305060", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-26T06:27:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112977275, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7512944, + 49.4243983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "millysoose", + "uid": "12537223", + "editor": "MapComplete 0.11.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-26T03:04:32Z", + "reviewed_features": [], + "create": 0, + "modify": 39, + "delete": 0, + "area": 98.2290617016559, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112972777, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 53, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -111.6257411, + 37.55735975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-25T23:30:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112970293, + "host": "pietervdvn.github.io", + "path": "mc/theme/street_lighting/", + "theme": "street_lighting", + "answer": 5, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2207445, + 51.2170027 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wesomat87", + "uid": "14348684", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-25T20:31:57Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.000129153733799985, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112966235, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.772265, + 53.160239000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DoubleA", + "uid": "1198074", + "editor": "MapComplete 0.11.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-25T20:11:08Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.000178141601459877, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112965511, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 32, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.90339645, + 48.3117862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Janjko", + "uid": "244754", + "editor": "MapComplete 0.11.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-25T20:00:03Z", + "reviewed_features": [], + "create": 0, + "modify": 101, + "delete": 0, + "area": 0.000473983942680102, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112965061, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 180, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.9909192, + 45.803434949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "doublah", + "uid": "4948143", + "editor": "MapComplete 0.11.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-25T19:53:59Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00000756348299000809, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112964829, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 11, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1522394500000002, + 52.957823149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.11.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-25T19:50:33Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000657416430629932, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112964711, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56146395, + 54.842731549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-25T15:40:45Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.000608780838980083, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112953730, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 22, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2111955500000002, + 51.2084446 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-25T15:37:09Z", + "reviewed_features": [], + "create": 0, + "modify": 34, + "delete": 0, + "area": 0.00696189244452022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112953572, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 48, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55397325, + 53.1172933 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-25T15:34:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000114807747000278, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112953457, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17585055, + 51.19023905 + ] + } + }, + { + "type": "Feature", + "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": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-25T15:20:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112952854, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.336863, + 51.538337 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wesomat87", + "uid": "14348684", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-25T15:12:52Z", + "reviewed_features": [], + "create": 7, + "modify": 5, + "delete": 0, + "area": 0.000076059832500056, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112952535, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.76875425, + 53.1585946 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-25T13:52:37Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000435810521999982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112949077, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5710394999999995, + 53.01940435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #street_lighting_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-25T12:24:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.23700000116805e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112945227, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/theme/street_lighting/", + "theme": "street_lighting_assen", + "imagery": "Actueel_ortho25_WMS", + "language": "nl", + "move:node/9187383555": "The location of this object is inaccurate and should be moved a few meter" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51085765, + 53.001246050000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DAKAR01", + "uid": "14345865", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-25T05:06:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 1, + "area": 0.000196215422279952, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112928541, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "fr", + "deletion:node/9119877457": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36371535, + 50.8215982 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Unkn0wnKevin", + "uid": "1855021", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-24T19:00:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.14218489998275e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112918213, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.912086850000001, + 53.73600945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-24T18:00:42Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000328507237499938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112916108, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22362865, + 50.89678165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-24T16:46:44Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112913626, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.9183158, + 43.3116971 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-24T15:22:13Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112910601, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5911317, + 50.8997234 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #street_lighting_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-24T14:27:05Z", + "reviewed_features": [], + "create": 18, + "modify": 33, + "delete": 0, + "area": 0.00017172360776989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112908415, + "host": "pietervdvn.github.io", + "move": 9, + "path": "mc/theme/street_lighting/", + "theme": "street_lighting_assen", + "answer": 54, + "imagery": "Actueel_ortho25_WMS", + "language": "en", + "move:node/7947792102": "The location of this object is inaccurate and should be moved a few meter", + "move:node/7947922318": "The location of this object is inaccurate and should be moved a few meter", + "move:node/7947922354": "The location of this object is inaccurate and should be moved a few meter", + "move:node/7947939127": "The location of this object is inaccurate and should be moved a few meter", + "move:node/7948227641": "The location of this object is inaccurate and should be moved a few meter", + "move:node/7948606596": "The location of this object is inaccurate and should be moved a few meter", + "move:node/7948764089": "The location of this object is inaccurate and should be moved a few meter", + "move:node/7950537416": "The location of this object is inaccurate and should be moved a few meter", + "move:node/7950537499": "The location of this object is inaccurate and should be moved a few meter" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.562534149999999, + 53.016830150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-24T14:17:55Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112908056, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2551906, + 50.8356085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-24T11:32:24Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112902452, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9058252, + 53.60786 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sualko", + "uid": "11086971", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-24T11:24:10Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112902215, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3855936, + 47.721562 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-24T10:33:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.85296490001699e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112900519, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14034775, + 51.16952665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Magnus1234", + "uid": "14305060", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-24T10:29:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112900339, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7575386, + 49.4237877 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #street_lighting_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-24T10:14:32Z", + "reviewed_features": [], + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.0000279340134400039, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112899746, + "host": "pietervdvn.github.io", + "path": "mc/theme/street_lighting/", + "theme": "street_lighting_assen", + "answer": 11, + "imagery": "Actueel_ortho25_WMS", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.566961, + 53.0171375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "KaiPankrath", + "uid": "4067009", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-24T05:01:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112893211, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5884734, + 47.5827878 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JoeG", + "uid": "73276", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-24T04:22:01Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000380892167997446, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112892700, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "answer": 8, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 149.0730838, + -35.236471449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kalepom", + "uid": "392288", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-23T23:37:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112890047, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1321904, + 43.6495348 + ] + } + }, + { + "type": "Feature", + "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": "2021-10-23T22:02:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112888673, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3029667, + 51.6403353 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-23T19:48:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112886005, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.3719193, + 47.6787492 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PabloDíaz", + "uid": "14309824", + "editor": "MapComplete 0.11.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": "2021-10-23T19:47:42Z", + "reviewed_features": [], + "create": 3, + "modify": 11, + "delete": 0, + "area": 0.00000164252304000334, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112885975, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 14, + "imagery": "HDM_HOT", + "language": "ca", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2374387000000002, + 41.4659886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-23T17:48:38Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112883053, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 9, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7526418, + 50.8032604 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-23T17:02:43Z", + "reviewed_features": [], + "create": 0, + "modify": 27, + "delete": 0, + "area": 0.0000756966803799547, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112881713, + "host": "pietervdvn.github.io", + "path": "mc/theme/street_lighting/", + "theme": "street_lighting", + "answer": 39, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55760685, + 53.0197808 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rosmarin", + "uid": "458474", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-23T15:54:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.02059999987284e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112879502, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5661171, + 49.86048745 + ] + } + }, + { + "type": "Feature", + "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": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-23T15:48:41Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000133025466999782, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112879289, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.31659155, + 51.6435015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rosmarin", + "uid": "458474", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-23T15:45:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112879190, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5660771, + 49.8604105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-23T15:04:04Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 6.64543400009737e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112877710, + "host": "pietervdvn.github.io", + "path": "mc/theme/street_lighting/", + "theme": "street_lighting", + "answer": 12, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5703112, + 53.019947450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Firefighter-112", + "uid": "14014754", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-23T14:13:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112875924, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5652936, + 51.9702387 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-23T13:11:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112873649, + "host": "pietervdvn.github.io", + "path": "mc/theme/street_lighting/", + "theme": "street_lighting", + "answer": 7, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.560159, + 53.0218087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-23T10:26:11Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.73013449999852e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112868634, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "answer": 4, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22622465, + 51.215635750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tux67", + "uid": "112465", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-23T10:04:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112868128, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2773693, + 51.1411478 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-23T09:30:44Z", + "reviewed_features": [], + "create": 4, + "modify": 9, + "delete": 0, + "area": 2.18606400002996e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112867160, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 8, + "imagery": "osm", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1008119, + 52.099058299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-23T09:01:48Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00000594585654001165, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112866456, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 6, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0932216, + 52.10242865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Valerio_Bozzolan", + "uid": "1875845", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-23T08:16:34Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000172946775000279, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112865466, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.876496449999999, + 45.469509200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-23T07:40:59Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112864730, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1485138, + 55.6929421 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "elipousson", + "uid": "137861", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-23T03:41:52Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112861808, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "answer": 3, + "imagery": "geodata.md.gov-MD_SixInchImagery", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.6471508, + 39.3191368 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SherbetS", + "uid": "12163682", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-23T02:52:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112861395, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.4725958, + 32.5885088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-22T20:48:35Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.3039000001708e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112856442, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "EsriWorldImageryClarity", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1164584499999997, + 52.805281449999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-22T20:38:04Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000179851790500498, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112856106, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 15, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2301747499999998, + 51.21353155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-22T20:35:19Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112856017, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2376945, + 51.2149454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-22T18:58:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.52583000006211e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112852101, + "host": "pietervdvn.github.io", + "path": "mc/theme/street_lighting/", + "theme": "street_lighting", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5489672, + 53.00156845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-22T17:42:39Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000557826108001154, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112849606, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 2, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2243017, + 51.21417825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-22T17:01:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112847851, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2399328, + 51.2127007 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-22T15:42:00Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 6.00107000008186e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112844464, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "move:node/4784533428": "The location of this object is inaccurate and should be moved a few meter", + "move:node/8202442918": "The location of this object is inaccurate and should be moved a few meter" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23990685, + 51.21273015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-22T15:12:49Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000560205234000119, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112843053, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23439405, + 51.2142788 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-22T14:19:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112840556, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2369476, + 50.7326341 + ] + } + }, + { + "type": "Feature", + "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": "2021-10-22T14:15:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112840419, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6420013, + 52.0122072 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fasse", + "uid": "302717", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-22T13:38:30Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000281234719320037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112838739, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "answer": 21, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18013695, + 50.6701891 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-22T13:35:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112838646, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2516995, + 41.4479352 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fasse", + "uid": "302717", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-22T13:17:04Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.000354915365209984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112838009, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 21, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.192269250000001, + 50.64757205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fasse", + "uid": "302717", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-22T13:07:24Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000261922623999657, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112837641, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1848693, + 50.6465303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fasse", + "uid": "302717", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-22T12:56:13Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000295375489599985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112837241, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 18, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1960489, + 50.641809699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fasse", + "uid": "302717", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-22T12:51:58Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112837065, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1838941, + 50.6471167 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-22T10:37:28Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000430079193159994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112831683, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1618764, + 51.18931585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PabloDíaz", + "uid": "14309824", + "editor": "MapComplete 0.11.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": "2021-10-22T09:12:04Z", + "reviewed_features": [], + "create": 5, + "modify": 5, + "delete": 0, + "area": 2.25029000006432e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112828266, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 6, + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.237775, + 41.464776549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-22T08:43:02Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0595550294646309, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112827018, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 17, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38805895, + 51.16272495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-22T08:09:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112825777, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1567132, + 51.1771083 + ] + } + }, + { + "type": "Feature", + "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": "2021-10-21T18:46:45Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112805789, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6371402, + 52.0175094 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-21T16:05:07Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000389195351998423, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112799378, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.205695, + 51.199634700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-21T15:01:11Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000255649753600052, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112796853, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 18, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2051369999999997, + 51.200769699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-21T11:45:46Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000679820047199543, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112788625, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.249359800000001, + 50.7380632 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bombibom", + "uid": "14326663", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-21T07:54:12Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112777915, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3294368, + 50.9907606 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-21T03:39:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.13366000002175e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112769664, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.031891, + 14.6058991 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tbkrtz", + "uid": "8453504", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-21T02:41:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112768775, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8219139, + 47.6452408 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tbkrtz", + "uid": "8453504", + "editor": "MapComplete 0.11.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-21T02:37:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112768712, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8237334, + 47.6456871 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tbkrtz", + "uid": "8453504", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T21:08:27Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 4.14392599999057e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112763424, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.82290715, + 47.6486087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T20:25:37Z", + "reviewed_features": [], + "create": 1, + "modify": 35, + "delete": 0, + "area": 0.00000531267543998709, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112761963, + "host": "pietervdvn.github.io", + "path": "mc/theme/street_lighting/", + "theme": "street_lighting", + "answer": 88, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5610204, + 53.020174350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hfs", + "uid": "9607", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-20T18:31:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112757603, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8910801, + 53.1005661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T17:55:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112756229, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2392313, + 50.7322621 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T16:44:20Z", + "reviewed_features": [], + "create": 0, + "modify": 124, + "delete": 0, + "area": 0.000361313963909915, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112753161, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 253, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59530655, + 53.219854850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T16:17:38Z", + "reviewed_features": [], + "create": 0, + "modify": 83, + "delete": 0, + "area": 0.00124148864118023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112752015, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 155, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54719435, + 52.984896899999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-20T15:01:06Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00281903555569985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112748629, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8254708, + 50.883697350000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T14:55:51Z", + "reviewed_features": [], + "create": 0, + "modify": 83, + "delete": 0, + "area": 0.0000051775410000084, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112748388, + "host": "pietervdvn.github.io", + "path": "mc/theme/street_lighting/", + "theme": "street_lighting", + "answer": 205, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5710559, + 53.0194197 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cmap99", + "uid": "13524250", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-20T14:31:51Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00018199749507012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112747371, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.113818850000001, + 53.26469535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sualko", + "uid": "11086971", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-20T13:50:23Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112745665, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2694622, + 47.7112794 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T13:36:47Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000276357743999712, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112745041, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22073675, + 51.2166899 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T11:40:55Z", + "reviewed_features": [], + "create": 0, + "modify": 73, + "delete": 0, + "area": 0.00010161552421001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112740347, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 130, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59041635, + 53.215512450000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T11:00:23Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000268780000710092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112738677, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "answer": 18, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22112885, + 51.21348495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T10:53:26Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000138766719909892, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112738403, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22629595, + 51.212732450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T08:53:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112733217, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8807272, + 51.0598072 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T07:28:32Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.3385519999965e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112729830, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71769175, + 51.0433044 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T07:21:42Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112729580, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7110539, + 51.0423597 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "plicploc", + "uid": "75871", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-20T06:47:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112728248, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5757919, + 50.6486646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sualko", + "uid": "11086971", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-19T21:32:56Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.00000691693359999474, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112718253, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.5887897, + 47.669135499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-19T18:37:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112712386, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2185596, + 51.2131485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-19T17:55:41Z", + "reviewed_features": [], + "create": 1, + "modify": 15, + "delete": 0, + "area": 3.31961629995937e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112710590, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2315223499999997, + 41.44713725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-19T17:47:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.61727799996861e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112710210, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2162637, + 51.20911015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-19T17:42:51Z", + "reviewed_features": [], + "create": 0, + "modify": 47, + "delete": 0, + "area": 0.0000550180066499869, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112709992, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "answer": 55, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2172443499999996, + 51.21327325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-19T16:06:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112705847, + "host": "pietervdvn.github.io", + "path": "mc/theme/street_lighting/", + "theme": "street_lighting", + "answer": 3, + "imagery": "Actueel_ortho25_WMS", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6043359, + 53.2170286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-19T14:37:27Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.0000014090391000027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112701458, + "host": "pietervdvn.github.io", + "path": "mc/theme/street_lighting/", + "theme": "street_lighting", + "answer": 35, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55694655, + 53.015631299999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-19T14:03:03Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112699968, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8807272, + 51.0598072 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-19T13:16:42Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000192103102399944, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112697990, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toerisme_vlaanderen", + "answer": 11, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2396974, + 50.73752155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-19T12:26:15Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000148140373999237, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112695953, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "answer": 2, + "imagery": "osm", + "language": "nl", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2300254, + 51.21528395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "plicploc", + "uid": "75871", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-19T11:58:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112694872, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5722951, + 50.6552402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-19T11:47:53Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000102447282600017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112694402, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "Metropole_Ruhr_RVR-DOP10", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2992904, + 51.468360450000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-rc-1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-19T11:29:13Z", + "reviewed_features": [], + "create": 3, + "modify": 67, + "delete": 0, + "area": 0.000157174070520011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112693435, + "host": "pietervdvn.github.io", + "path": "mc/theme/street_lighting/", + "theme": "street_lighting", + "answer": 229, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5650013, + 53.02120915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cmap99", + "uid": "13524250", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-19T10:20:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112690492, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.0755173, + 53.2752413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cmap99", + "uid": "13524250", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-19T10:11:20Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000376300626459817, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112690102, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.0888201, + 53.26975745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cmap99", + "uid": "13524250", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-19T09:53:53Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112689371, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.0455576, + 53.2748582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "livmilan", + "uid": "712033", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-19T08:22:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112685292, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2694676, + 45.5034727 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-18T23:31:59Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000407415941899557, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112673477, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21815375, + 51.21761825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "afgb1977", + "uid": "10218404", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-18T21:01:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000359112213800036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112670419, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.5030324, + 5.01846405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-18T20:14:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112668948, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "Actueel_ortho25_WMS", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5719056, + 52.9881679 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/RobinLinde/d22223ebe86469b0ff08e7f308ab109c/raw/774eb9ea5e8ad150b1d01868b4d51f5ca219101e/street_lighting.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-18T20:11:50Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 4.34124800000632e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112668843, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/robinlinde/d22223ebe86469b0ff08e7f308ab109c/raw/774eb9ea5e8ad150b1d01868b4d51f5ca219101e/street_lighting.json", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.561177900000001, + 53.0194654 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-18T20:03:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.98626000002504e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112668565, + "host": "127.0.0.1:1234", + "move": 2, + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "move:node/4796376181": "The location of this object is inaccurate and should be moved a few meter", + "move:node/8149481171": "The location of this object is inaccurate and should be moved a few meter" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2153756500000004, + 51.2156508 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tor H", + "uid": "6364105", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-18T19:26:42Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000571900399250001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112667042, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.93157325, + 57.687017350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-18T17:42:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000123601223899967, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112663580, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.480027849999999, + 51.93363535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sualko", + "uid": "11086971", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-18T15:48:08Z", + "reviewed_features": [], + "create": 6, + "modify": 21, + "delete": 0, + "area": 0.000702737051499987, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112658974, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.28114195, + 47.7105653 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sualko", + "uid": "11086971", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-18T15:30:52Z", + "reviewed_features": [], + "create": 4, + "modify": 27, + "delete": 0, + "area": 0.00014749386719993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112658231, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.274070250000001, + 47.6921054 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-18T15:10:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112657372, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0720514, + 50.8425665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-18T13:51:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.05711440001478e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112654375, + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2032195, + 51.216655700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sualko", + "uid": "11086971", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-18T13:10:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112652820, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2723456, + 47.6947613 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Max Kritic", + "uid": "414659", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-18T11:46:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112649426, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "fr", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7449888, + 50.2991705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Valerio_Bozzolan", + "uid": "1875845", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #vets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-18T08:31:12Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0234468214708002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112641505, + "host": "mapcomplete.osm.be", + "theme": "vets", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1566274, + 45.572282349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chimel38", + "uid": "148831", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-18T07:05:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000402760918999846, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112638273, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74540975, + 45.1502146 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chimel38", + "uid": "148831", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-18T06:57:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112637945, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.616621, + 44.827888 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mfbehrens99", + "uid": "9645335", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-18T06:56:43Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.222328007868329, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112637933, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.33639875, + 49.51315865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-18T06:30:16Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 2.79754800000698e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112636966, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.122651449999999, + 52.0783552 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Russ McD", + "uid": "346601", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-18T05:58:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112635876, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.3341011, + 52.275169 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-18T00:15:43Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112630581, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.37134710000001, + 47.6895039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mfbehrens99", + "uid": "9645335", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-17T21:20:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.08967040002884e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112628013, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4458634, + 49.0259931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "juminet", + "uid": "812669", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-17T19:57:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112625573, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5603149, + 49.7179279 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tanzbärli", + "uid": "11052582", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-17T18:43:02Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000349695402000281, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112623519, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.03050115, + 49.7243959 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-17T17:58:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112622176, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2097007, + 41.536822 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-17T17:50:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112621911, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2860721, + 51.3408964 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-17T17:26:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000132603266200045, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112621112, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.403972749999999, + 50.8373068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.11.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-17T16:51:07Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112619905, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6153278, + 51.9250815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.11.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-17T16:30:09Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.00000160810441999713, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112619236, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 12, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61919675, + 51.9271727 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skl1", + "uid": "311771", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-17T16:08:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000591138135999744, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112618493, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4225882, + 47.3830851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.11.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-17T16:04:37Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 4.01079999994501e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112618387, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 11, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6206936, + 51.931771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "staggerlee", + "uid": "38420", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-17T13:57:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112613205, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.9882162, + 51.1523834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "KaiPankrath", + "uid": "4067009", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-17T12:09:09Z", + "reviewed_features": [], + "create": 0, + "modify": 43, + "delete": 0, + "area": 0.000303925165999914, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112609243, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5786386, + 47.55422325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Magnus1234", + "uid": "14305060", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-17T12:02:29Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000164706367999686, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112609034, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7511352, + 49.4252185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Magnus1234", + "uid": "14305060", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-17T11:57:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112608864, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7597241, + 49.4281582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-17T11:23:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.09504000047643e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112607574, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23423980000001, + -39.8222105 + ] + } + }, + { + "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": "2021-10-17T10:36:20Z", + "reviewed_features": [], + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.00289460376464019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112605904, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3109959, + 48.83266545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RicoElectrico", + "uid": "604437", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-17T09:44:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112604326, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "pl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.5302743, + 54.5212696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #vets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-17T03:31:31Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112597311, + "host": "mapcomplete.osm.be", + "theme": "vets", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.7825092, + -36.85054 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-16T22:28:14Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112594776, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cafes_and_pubs", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2186897, + 51.2131816 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-16T18:51:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112589924, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "imagery": "osm", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4250032, + 51.1032661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-16T18:10:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000111040845, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112588973, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3966982000000003, + 51.09422865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.6", + "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": "2021-10-16T17:37:19Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00122981967526002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112588071, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "imagery": "osm", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3796369, + 51.10523445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-16T15:32:49Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000991976758000089, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112583752, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 13, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18995795, + 51.2048433 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-16T14:58:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112582519, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2469264, + 50.8334362 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-16T14:51:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000107440304999659, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112582263, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28218805, + 50.79997695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-16T12:35:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000155013990000798, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112577212, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4022695, + 51.14557645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-16T12:31:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112577079, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4033236, + 51.1453697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-16T12:27:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000012372647760016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112576927, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "answer": 2, + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2076766, + 51.2167716 + ] + } + }, + { + "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": "2021-10-16T10:05:22Z", + "reviewed_features": [], + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.0172824501696, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112572303, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3352518, + 48.7867554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-16T10:02:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.02292170000436e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112572196, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59831285, + 53.22696405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-16T09:49:22Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000384323188199805, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112571724, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0874594, + 52.028919450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-15T21:42:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112560800, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5537951, + 47.4627301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/RobinLinde/d22223ebe86469b0ff08e7f308ab109c/raw/425cd9fcbd0bacf96eb15d26f5ebe26c767d85ad/street_lighting.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-15T20:23:19Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 6.07979760003161e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112558686, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/robinlinde/d22223ebe86469b0ff08e7f308ab109c/raw/425cd9fcbd0bacf96eb15d26f5ebe26c767d85ad/street_lighting.json", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.570403649999999, + 53.0196132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Cotrox", + "uid": "14285310", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-15T20:00:04Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.0000734513669999993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112557963, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3228505999999998, + 51.0011353 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Cotrox", + "uid": "14285310", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-15T19:39:26Z", + "reviewed_features": [], + "create": 7, + "modify": 5, + "delete": 0, + "area": 0.000202445450889981, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112557189, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34752425, + 50.99425205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "zaniszfeld", + "uid": "14295889", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-15T18:17:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112553873, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1655667, + 41.3981923 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Semako", + "uid": "4240243", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-15T18:11:50Z", + "reviewed_features": [], + "create": 4, + "modify": 15, + "delete": 0, + "area": 0.000222494536880012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112553700, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.399506200000001, + 52.1643284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Roter Funke", + "uid": "14275290", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-15T15:42:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112548410, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1524539, + 51.2976371 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-15T15:17:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.98732479997246e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112547351, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1680352000000003, + 51.232391 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-15T14:04:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112544664, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.481883, + 51.9319697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ThomasThomasson", + "uid": "14296662", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-15T13:29:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112543270, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1823955, + 41.4108702 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-15T10:33:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112536982, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.481883, + 51.9319697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pgoergen", + "uid": "391431", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-15T08:11:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.11793999993826e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112531350, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.56607275, + 49.918052 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-15T08:09:56Z", + "reviewed_features": [], + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.000378459507600001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112531308, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 76, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58990405, + 53.2142381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-15T08:08:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.51763200000081e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112531267, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58525655, + 53.1874716 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-15T07:43:09Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00985995889749004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112530341, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.38599185, + 51.82969765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LACDH", + "uid": "4994674", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-15T04:02:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.55337420000489e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112526460, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.6949981, + -36.58832405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LACDH", + "uid": "4994674", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-15T03:59:25Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112526420, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.6937966, + -36.5924409 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-14T18:21:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112515540, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198739, + 51.2157048 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lukas_cz", + "uid": "13919826", + "editor": "MapComplete 0.10.6", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-14T16:59:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112512636, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.9414981, + 49.9173607 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gerital", + "uid": "174149", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-14T14:08:39Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112505740, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1361715, + 41.3775915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-14T07:54:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112491571, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5488, + 50.78225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-14T06:52:37Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.10796956967812, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112489507, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8708399, + 45.41475915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #./assets/themes/benches/bench_poi.svg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-13T23:51:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.74121199994149e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112482378, + "host": "127.0.0.1:1234", + "move": 1, + "theme": "./assets/themes/benches/bench_poi.svg", + "answer": 1, + "imagery": "osm", + "language": "en", + "move:node/2410018174": "The location of this object is inaccurate and should be moved a few meter" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2131888, + 51.2113047 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-13T23:51:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112482373, + "host": "127.0.0.1:1234", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2131332, + 51.2113153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Cotrox", + "uid": "14285310", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-13T21:31:57Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.00000377345306999596, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112479766, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3271837499999997, + 51.00164465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-13T19:06:18Z", + "reviewed_features": [], + "create": 0, + "modify": 191, + "delete": 0, + "area": 0.00184384021265989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112475285, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 218, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52409425, + 53.0093141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-13T17:56:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000157618110000009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112473004, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5902869, + 53.02214115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-13T17:52:10Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000165828845159907, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112472850, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 14, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6080606, + 53.1992982 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-13T16:08:27Z", + "reviewed_features": [], + "create": 0, + "modify": 113, + "delete": 0, + "area": 0.000221363925999984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112468967, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 121, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5812835, + 53.2261735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-13T16:02:26Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00081881235232011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112468748, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 16, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2218914, + 51.221960800000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Cotrox", + "uid": "14285310", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-13T15:46:50Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112468176, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3265132, + 51.0019611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-13T15:43:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 1, + "area": 2.27784059998521e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112468072, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "add-image": 1, + "deletion:node/1603226228": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21795765, + 51.2136088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Cotrox", + "uid": "14285310", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-13T15:37:20Z", + "reviewed_features": [], + "create": 8, + "modify": 0, + "delete": 0, + "area": 0.00000292325632000132, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112467810, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3275995, + 51.001628600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-13T14:04:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112464085, + "host": "mapcomplete.osm.be", + "theme": "hackerspaces", + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4827612, + 51.022074 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-13T12:45:06Z", + "reviewed_features": [], + "create": 0, + "modify": 156, + "delete": 0, + "area": 0.000918652342260119, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112461207, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 204, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5378054500000005, + 53.2237221 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-13T12:03:56Z", + "reviewed_features": [], + "create": 0, + "modify": 44, + "delete": 0, + "area": 0.00055657387851997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112459522, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 52, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1931679500000003, + 51.196686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marvin Geisler", + "uid": "13424339", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-13T11:50:55Z", + "reviewed_features": [], + "create": 5, + "modify": 6, + "delete": 0, + "area": 0.0001717785099998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112459018, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.772082099999999, + 51.82213955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-13T09:57:48Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112453960, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.435083, + 51.8153141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LACDH", + "uid": "4994674", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-13T08:43:47Z", + "reviewed_features": [], + "create": 1, + "modify": 14, + "delete": 0, + "area": 0.000589691007039988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112450541, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.67820849999998, + -36.5943207 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LACDH", + "uid": "4994674", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-13T08:40:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000412169060501787, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112450408, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.69592395, + -36.59287515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LACDH", + "uid": "4994674", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-13T08:35:37Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.000036802328159713, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112450212, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.69608060000002, + -36.5927718 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "peterkwells", + "uid": "14279295", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-13T08:31:11Z", + "reviewed_features": [], + "create": 9, + "modify": 10, + "delete": 0, + "area": 1.59516040000385e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112450049, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "imagery": "osm", + "language": "en", + "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4395996, + 55.042968200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LACDH", + "uid": "4994674", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-13T08:11:07Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112449329, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.6935928, + -36.5865098 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LACDH", + "uid": "4994674", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-13T08:03:36Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00000305842978998859, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112449036, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.69447925, + -36.58737235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LACDH", + "uid": "4994674", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-13T07:58:55Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00216501540580071, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112448844, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.7213635, + -36.617904100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michel Stuyts", + "uid": "62284", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-12T18:25:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112430185, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2908692, + 49.9150414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lt_Grillwurst", + "uid": "1244453", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-12T17:39:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112428336, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.0695743, + 52.6214429 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-12T17:33:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000823799443599863, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112428113, + "host": "mapcomplete.osm.be", + "theme": "hackerspaces", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.37799865, + 48.2186583 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Kr_gr", + "uid": "13059466", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-12T13:20:04Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000288775395999994, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112418276, + "host": "mapcomplete.osm.be", + "theme": "natuurpunt", + "imagery": "osmfr-basque", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5155221, + 51.02066775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-12T13:14:52Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00000265932659999907, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112418058, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 13, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2173504, + 51.214192 + ] + } + }, + { + "type": "Feature", + "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": "2021-10-12T11:34:05Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00000117335833999799, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112414153, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.81515585, + 52.8506941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-12T10:16:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112411027, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.383805, + 50.8459642 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-12T10:14:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112410942, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3297305, + 50.842323 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-12T10:12:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112410842, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5715597, + 50.9811194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-12T09:58:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112410216, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4238725, + 50.8124514 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-12T09:53:00Z", + "reviewed_features": [], + "create": 9, + "modify": 3, + "delete": 0, + "area": 0.000343018220139885, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112409961, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4223425, + 50.81698455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-12T09:10:50Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.00146636846858015, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112408152, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.498422699999999, + 51.93378145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-12T08:59:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112407680, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9473215, + 50.5150959 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-12T08:56:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112407555, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.533052, + 51.9740796 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-12T07:57:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112405230, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.4791678, + 51.9322283 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Roter Funke", + "uid": "14275290", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-12T07:44:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112404738, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1356432, + 51.312556 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-12T07:43:54Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00000829002168000859, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112404698, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.429483100000001, + 50.812178700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-12T07:14:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112403540, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3456802, + 50.7447245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.10.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-12T04:39:27Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112398731, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4167612, + 46.9492863 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-11T23:45:33Z", + "reviewed_features": [], + "create": 0, + "modify": 56, + "delete": 0, + "area": 0.00114602999958027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112394950, + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 63, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166657499999998, + 51.2217214 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-11T17:48:49Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112385386, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0968034, + 50.6463039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Созвездие", + "uid": "14191215", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-11T17:28:03Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000236229716249962, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112384671, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.79262065, + 48.77957845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Созвездие", + "uid": "14191215", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-11T17:20:34Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.2631919999989e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112384422, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.8024384, + 48.77384 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Созвездие", + "uid": "14191215", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-11T17:18:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000204248768420016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112384352, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.7998287, + 48.771801550000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Созвездие", + "uid": "14191215", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-11T17:05:38Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000179139124999395, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112383897, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "ru" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.78789895, + 48.783819449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Созвездие", + "uid": "14191215", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-11T16:57:13Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112383586, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "ru" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.7875503, + 48.785539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Созвездие", + "uid": "14191215", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-11T16:45:58Z", + "reviewed_features": [], + "create": 6, + "modify": 7, + "delete": 0, + "area": 0.000293407535520045, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112383135, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.7970775, + 48.774500599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Созвездие", + "uid": "14191215", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-11T14:40:04Z", + "reviewed_features": [], + "create": 17, + "modify": 6, + "delete": 0, + "area": 0.000556463857049984, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112378407, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.77056785, + 48.78209935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Созвездие", + "uid": "14191215", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-11T14:20:13Z", + "reviewed_features": [], + "create": 8, + "modify": 11, + "delete": 0, + "area": 0.000555283862320177, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112377559, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.7862656, + 48.779611849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-11T13:53:29Z", + "reviewed_features": [], + "create": 12, + "modify": 12, + "delete": 0, + "area": 0.00473493059616011, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112376494, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3707387, + 50.8297826 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Созвездие", + "uid": "14191215", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-11T13:17:45Z", + "reviewed_features": [], + "create": 4, + "modify": 10, + "delete": 0, + "area": 0.000117933737939964, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112375123, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "ru" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.78550545, + 48.7788982 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-11T11:09:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000232284136000083, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112370013, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1888856, + 51.165342800000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-11T10:10:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112367451, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2562439, + 44.5028704 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-11T10:02:34Z", + "reviewed_features": [], + "create": 1, + "modify": 10, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112367104, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5725876, + 53.0181578 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-11T08:31:28Z", + "reviewed_features": [], + "create": 2, + "modify": 23, + "delete": 0, + "area": 0.0548311658895052, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112363104, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.971854049999999, + 53.0506621 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Созвездие", + "uid": "14191215", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-11T05:58:51Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 0.00304884105100005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112357387, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.7711164, + 48.78088685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-10T20:05:47Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112347491, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.481934, + 51.9319846 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-10T19:07:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.88214600020889e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112345814, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72794355, + 51.075808699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-10T19:03:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.09372500003473e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112345632, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7287319500000002, + 51.07726325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-10T17:35:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.0427144000361e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112342965, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2258309, + 51.2115677 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "node-9163039942", + "osm_id": 9163039942, + "reasons": [ + 489 + ], + "version": 8 + } + ], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-10T16:16:04Z", + "reviewed_features": [], + "create": 9, + "modify": 16, + "delete": 0, + "area": 0.00239905300143971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112340366, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "Actueel_ortho25_WMS", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.542864, + 53.001787199999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skifans", + "uid": "2800603", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-10T15:41:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000874738204000624, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112338978, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49772605, + 53.6831021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-10T15:07:06Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.000348064123030047, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112337671, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20333995, + 51.18306645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-10T13:49:36Z", + "reviewed_features": [], + "create": 12, + "modify": 8, + "delete": 0, + "area": 0.00337004953549995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112334732, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "Actueel_ortho25_WMS", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5569094, + 52.99669335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-10T13:02:27Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000198401373000057, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112332930, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11564595, + 50.6684073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-10T12:00:52Z", + "reviewed_features": [], + "create": 5, + "modify": 3, + "delete": 0, + "area": 0.00136227210213009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112330699, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "Actueel_ortho25_WMS", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.539971250000001, + 52.995101649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-10T11:57:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000232284136000083, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112330574, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1888856, + 51.165342800000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-10T10:53:19Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00001748469579997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112328716, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35255875, + 50.863697200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-10T10:42:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000026888431500118, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112328411, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22398725, + 51.21287265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-09T22:20:48Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.000116087608600004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112316572, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5786191, + 53.0076921 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-09T21:59:49Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000543583978999923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112316272, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2230623, + 51.209445349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-09T20:37:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.43598899999758e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112314658, + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2238115, + 51.21037545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-09T20:32:48Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.61000001986567e-12, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112314551, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.31382995, + 47.60258815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "b-unicycling", + "uid": "1713634", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-09T17:21:16Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000648195832199684, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112309536, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.248762, + 52.65257185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-09T17:19:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112309468, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.5215392, + 41.6880243 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-09T11:53:55Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.61550000039922e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112298065, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.501671049999999, + 51.87052745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-09T11:38:07Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112297552, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0701776, + 52.0486685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-09T11:34:40Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112297440, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5748669, + 50.9809876 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-09T10:54:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000298077211079996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112296202, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57615245, + 53.0073278 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-alpha", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-09T10:48:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.56762620001188e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112296054, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56651355, + 53.2329675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-09T07:25:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000421967052000341, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112290463, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23207985, + 51.2128832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Semako", + "uid": "4240243", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-08T20:18:22Z", + "reviewed_features": [], + "create": 0, + "modify": 45, + "delete": 0, + "area": 0.000484515769399873, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112281434, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4046641, + 52.16430205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-alpha", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-08T19:19:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000114517099999834, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112279328, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53659075, + 53.236740600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Платина", + "uid": "14182994", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-08T19:07:13Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00107447688552011, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112278882, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.75584695, + 48.7900797 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Платина", + "uid": "14182994", + "editor": "MapComplete 0.10.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-08T18:58:53Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000231182557100237, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112278613, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "ru", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.75174815, + 48.78382465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.0-alpha", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-08T17:51:34Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000199574289600066, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112276370, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 12, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55950065, + 53.226440499999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-08T10:33:56Z", + "reviewed_features": [], + "create": 8, + "modify": 11, + "delete": 0, + "area": 0.00954663129329971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112257164, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.47458565, + 51.8776596 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-08T09:42:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000114894662999601, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112254501, + "host": "pietervdvn.github.io", + "path": "mc/alpha/", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7240183499999997, + 51.036150750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-08T07:23:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112248115, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.616224, + 48.5778044 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-08T01:42:07Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000190308147160078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112240027, + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2162762000000003, + 51.212619950000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.0-alpha", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-07T20:41:45Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.60186550017148e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112234645, + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2162022500000003, + 51.213040050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-07T18:24:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112229544, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "UrbISOrtho", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3878257, + 50.8516135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-07T16:04:24Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112224009, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.0928876, + 46.6108569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-07T11:32:20Z", + "reviewed_features": [], + "create": 4, + "modify": 6, + "delete": 0, + "area": 3.5109250002039e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112212373, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "UrbISOrtho", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.386752850000001, + 50.85080645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-07T11:17:28Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000959438234399317, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112211689, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.129721, + 52.09304925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-07T11:03:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112211183, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1190225, + 52.099802 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-07T10:19:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112209084, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.0928876, + 46.6108569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-07T10:03:12Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112208365, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.613513, + 13.938413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-07T09:11:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112205719, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.9333324, + 43.3501677 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-07T00:54:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112191771, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.34905245, + 47.6627929 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-06T20:36:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112186493, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "imagery": "osm", + "language": "en", + "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0874161, + 51.521625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-06T20:00:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.01773999987604e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112185465, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5671776, + 47.46142395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-06T17:12:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112179831, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3705592, + 50.8681773 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-06T16:56:02Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000218767313000053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112179174, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.369066350000001, + 50.86696385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-06T16:40:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112178507, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.3144417, + 45.9802635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.10.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-06T16:28:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112178005, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7686174, + -33.4876903 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.10.1-rc5", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-06T10:32:29Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112163110, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.356575, + 52.0068472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.1-rc5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-05T15:17:44Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112128443, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toerisme_vlaanderen", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.0093413, + 45.2198702 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-05T15:06:27Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112127869, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.0084396, + 45.2196975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marvin Geisler", + "uid": "13424339", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-05T14:39:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112126523, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8333693, + 51.8019113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-05T14:30:47Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112126121, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.7397665, + 48.7963799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-05T10:12:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112114876, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5613152, + 13.9638488 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-05T08:53:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112111343, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5121813, + 51.8986043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-05T07:35:17Z", + "reviewed_features": [], + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.00000535639367998169, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112108235, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.4750278, + 51.9357268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-05T06:16:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112104949, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5063305, + 51.8606347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #wheelchairsidewalks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-04T20:04:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.89866700012849e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112093739, + "host": "mapcomplete.osm.be", + "theme": "wheelchairsidewalks", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60234555, + 52.29296145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-04T19:48:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000389163592719983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112093106, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60871845, + 52.2906788 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-04T19:45:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00016600184362998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112092983, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60871845, + 52.284924450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-04T19:38:51Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000451447201799949, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112092780, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60092045, + 52.2890982 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eco-girls", + "uid": "14183151", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-04T17:34:42Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00272024458950023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112088657, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.773681350000004, + 48.7828724 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-04T12:52:42Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112076269, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8819718, + 43.3059589 + ] + } + }, + { + "type": "Feature", + "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": "2021-10-04T12:01:11Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.40377599997429e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112073969, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.738898800000001, + 52.8515778 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marvin Geisler", + "uid": "13424339", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-04T11:54:15Z", + "reviewed_features": [], + "create": 5, + "modify": 6, + "delete": 0, + "area": 0.00164536747564969, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112073624, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.79706295, + 51.81324105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.10.1-rc3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-04T09:48:58Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112068300, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.724899, + 51.0499839 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-04T07:56:18Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.000751707441310014, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112063015, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.86484325, + 43.33013425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-04T06:12:10Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112058690, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.8006153, + 48.7537343 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-03T17:21:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000132144389999776, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112042373, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05387265, + 38.831194800000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.1-rc2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-03T15:09:53Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112037485, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.130217, + 50.9493178 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-03T14:25:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112035851, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1227551, + 45.0855077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-03T14:13:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000793548247799951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112035466, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0995479, + 38.83998425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eco-girls", + "uid": "14183151", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-03T13:34:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112034198, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.7844895, + 48.7686502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.1-rc2", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-03T11:35:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000195930413500003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112030042, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15523895, + 51.122234250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-03T09:28:54Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112026025, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75222, + 51.0222208 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-03T09:23:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112025893, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7423676, + 51.0350283 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-03T09:18:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112025734, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7459369, + 51.0385867 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-03T07:48:57Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0917545198566369, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112023175, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.04198794999999, + 22.38017 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brachyxanthia", + "uid": "10755639", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-03T07:14:16Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112022340, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0403029, + 47.8228046 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brachyxanthia", + "uid": "10755639", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-03T07:06:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.737320000005e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112022181, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0720303, + 47.7212617 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-03T07:00:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112022086, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3081072, + 51.1069925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brachyxanthia", + "uid": "10755639", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-03T06:59:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112022070, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.01785, + 47.83914 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-03T04:17:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112020043, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 113.8603762, + 22.255137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-02T21:49:14Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.58800000016327e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112016293, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9788857, + 51.200323600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-02T20:58:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112015290, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2998665, + 46.5030342 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.14", + "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": "2021-10-02T20:10:29Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000762126352600228, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112014103, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "imagery": "osm", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3057494, + 51.10936375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-02T17:01:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000651364855699837, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112008969, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2573839499999995, + 50.739849899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-02T16:21:38Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.54607999991773e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112007497, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31459025, + 51.1094715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-02T15:46:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112006165, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3005826, + 51.1119062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-02T15:16:38Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112005129, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.0191546, + 51.822791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-02T15:09:46Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 3.83409000007348e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112004831, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.01948285, + 51.82287995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-02T14:33:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112003493, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.91486, + 44.7949588 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-02T14:15:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.79920959999225e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112002831, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0012414, + 48.5005077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.14", + "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": "2021-10-02T14:01:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112002251, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "imagery": "osm", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.301958, + 51.1063148 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-02T13:43:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112001500, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3145418, + 51.1094571 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-02T13:39:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112001382, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3081045, + 51.1070157 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-02T13:01:47Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 112000014, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3071047, + 51.1069017 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-02T11:55:37Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111997577, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8508368, + 43.4615596 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.1-rc1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-02T11:21:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111996531, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toerisme_vlaanderen", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.9119353, + 44.7711474 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JassKurn", + "uid": "4345757", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-01T17:02:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111973084, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.4385236, + 50.6269482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-01T13:24:31Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111963945, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6381551, + 45.0809245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-01T13:02:28Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000409234988000153, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111963037, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57081565, + 52.9938054 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-01T11:20:21Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00000469902796000368, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111958971, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.451087300000001, + 51.898761500000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-01T09:02:57Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111952857, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.7450022, + 48.7973659 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.10.1-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-01T07:54:24Z", + "reviewed_features": [], + "create": 5, + "modify": 15, + "delete": 0, + "area": 0.00843547601825007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111949930, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3738031500000005, + 51.10875915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-10-01T07:17:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111948340, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5591233, + 13.9638515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-10-01T06:01:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111945546, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0779099, + 50.6225479 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-30T18:14:22Z", + "reviewed_features": [], + "create": 8, + "modify": 0, + "delete": 0, + "area": 0.0000157954992800011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114413321, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 8, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7923628, + 48.0082558 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-30T07:53:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114390777, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "imagery": "osm", + "language": "de", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6657021, + 48.052183 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-30T07:18:33Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.0000682660181000155, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114389648, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7041117, + 48.03995555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CoyKoi", + "uid": "3757297", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-30T04:04:42Z", + "reviewed_features": [], + "create": 0, + "modify": 29, + "delete": 0, + "area": 0.000128250750119915, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114384752, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 52, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 172.64223175, + -43.528306 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pieterpaul", + "uid": "14539037", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T23:35:59Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114380980, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9165347, + 50.9266435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T22:14:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114379235, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7296998, + 49.8311215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mappilo", + "uid": "4763621", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T21:13:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114377590, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "it", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6599333, + 45.2261839 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T20:09:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114375671, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4445933, + 51.0832363 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T17:07:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114369149, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3931678, + 50.8743338 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pieterpaul", + "uid": "14539037", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T16:49:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114368553, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7631365, + 50.9219399 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T16:47:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114368491, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3873857, + 50.8607062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pieterpaul", + "uid": "14539037", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T16:41:39Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.000218297283750148, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114368266, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74033235, + 50.92323155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pieterpaul", + "uid": "14539037", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T16:33:34Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114367986, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7573459, + 50.9217664 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakuje", + "uid": "1641564", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T10:09:16Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000114239332499982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114354518, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 39, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.62298605, + 49.2292303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T08:49:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114351414, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2645948, + 50.7375044 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T07:59:45Z", + "reviewed_features": [], + "create": 5, + "modify": 1, + "delete": 0, + "area": 0.0000147728961899905, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114349593, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 5, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.79279395, + 48.00553045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T07:17:34Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114348251, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "imagery": "Mapbox", + "language": "de", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7620193, + 47.9896271 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T06:47:54Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 2.31018720001487e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114347399, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 2, + "change_within_25m": 2, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.789493499999999, + 48.009133950000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T03:57:19Z", + "reviewed_features": [], + "create": 0, + "modify": 94, + "delete": 0, + "area": 0.0000127603929000309, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114343276, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 133, + "imagery": "osm", + "language": "en", + "change_within_25m": 5, + "change_within_50m": 11, + "change_within_100m": 29, + "change_within_500m": 88 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.56077605, + 13.9636414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-28T23:29:38Z", + "reviewed_features": [], + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.0160545229045806, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114340268, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "answer": 41, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50383585, + 51.2238232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #containeronvas", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-28T23:20:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114340098, + "host": "mapcomplete.osm.be", + "theme": "containeronvas", + "answer": 1, + "imagery": "EsriWorldImagery", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7154551, + 41.2203449 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mappilo", + "uid": "4763621", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-28T22:14:08Z", + "reviewed_features": [], + "create": 7, + "modify": 12, + "delete": 0, + "area": 0.00014517395749991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114338984, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 29, + "imagery": "osm", + "language": "it", + "add-image": 2, + "change_over_5000m": 2, + "change_within_1000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.650590600000001, + 45.221955449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-28T20:04:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000335444575200145, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114335960, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2393975, + -39.8317206 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jessbeutler", + "uid": "3243541", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-28T16:11:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114329759, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "USDA-NAIP", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.6652284, + 42.9635538 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-28T10:48:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114319431, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.55931, + 13.9643912 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/cyclestreets/cyclestreets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-28T10:32:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.59660540000511e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114319021, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://osmbe/play/master/mapcomplete/cyclestreets/cyclestreets.json", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2539202, + 50.73936085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-28T09:02:42Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114316814, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8806976, + 51.0598838 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-27T20:36:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114306447, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3478238, + 50.85017 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-27T19:22:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114304836, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 5, + "imagery": "osm", + "language": "nl", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3478238, + 50.85017 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kewl", + "uid": "317259", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-27T19:07:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114304491, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0071197, + 49.6155871 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mahau", + "uid": "160164", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-27T18:02:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000029072655150009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114302874, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.688210250000001, + 49.39110865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #lit", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-27T17:28:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114301863, + "host": "mapcomplete.osm.be", + "theme": "lit", + "answer": 2, + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7148006, + 41.222486 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/osmlitmap/master/src/json/lit.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-27T17:15:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114301506, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/osmlitmap/master/src/json/lit.json", + "imagery": "PNOA-Spain-TMS", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7148006, + 41.222486 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dahave", + "uid": "14527619", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-26T22:03:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 2, + "area": 0.000133468081600138, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114279545, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "deletion": 2, + "language": "en", + "deletion:node/8860535700": "not found", + "deletion:node/9165200919": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.391632599999999, + 50.8360138 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-26T21:51:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114279284, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7352121, + 51.0451377 + ] + } + }, + { + "type": "Feature", + "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": "survey", + "imagery_used": "Not reported", + "date": "2021-11-26T18:01:32Z", + "reviewed_features": [], + "create": 25, + "modify": 22, + "delete": 0, + "area": 0.00221157224738992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114273016, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.184895350000001, + 52.27952485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-26T15:57:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114269075, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7214601, + 51.0370299 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-26T12:23:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114261635, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "AGIV", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6716263, + 51.0137209 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9285433246", + "osm_id": 9285433246, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "emergency": "Zisterne" + } + } + ], + "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": "2021-11-26T08:50:47Z", + "reviewed_features": [], + "create": 99, + "modify": 59, + "delete": 0, + "area": 0.0406402914336205, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114253236, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.007407449999999, + 52.0593209 + ] + } + }, + { + "type": "Feature", + "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": "2021-11-26T08:38:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114252798, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.212819, + 52.2821415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-25T21:26:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114238844, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.1234956, + -34.381268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AlexeyTyur", + "uid": "10509852", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-25T21:24:08Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114238775, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -80.1312574, + 25.7645181 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-25T20:07:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.1703719000108e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114236873, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25062635, + 50.742049449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-25T19:08:42Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.0000278555802700433, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114235477, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 12, + "imagery": "osm", + "language": "en", + "change_over_5000m": 3, + "change_within_25m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.31678285000001, + 47.69018905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nicolelaine", + "uid": "2997398", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-25T14:50:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114226221, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7128313, + 53.7345385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nicolelaine", + "uid": "2997398", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-25T14:47:09Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114226105, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7128581, + 53.7315318 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-25T12:55:31Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 7.90876400016128e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114222569, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 11, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4295827, + 46.95714955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nicolelaine", + "uid": "2997398", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-25T12:06:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114220664, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7128581, + 53.7315318 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sergiofenoll", + "uid": "14519825", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-25T11:25:22Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000157241840000448, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114218744, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4313486, + 51.2063858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #schools", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-25T10:33:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000661749590999616, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114216269, + "host": "mapcomplete.osm.be", + "theme": "schools", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3297712500000003, + 51.135440849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "olr", + "uid": "432746", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-25T08:02:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114209976, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3873519, + 52.5171181 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "plicploc", + "uid": "75871", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-25T07:44:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114209389, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5468411, + 50.6286394 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-24T20:00:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114195601, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2160907, + 51.195938 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-24T17:10:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114190549, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8804744, + 49.5957562 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-24T15:43:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.82276819993007e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114187255, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72091495, + 51.036722 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-24T12:11:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114179670, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2248056, + 51.2092223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "esdb", + "uid": "12752971", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T18:55:52Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000968267639999874, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114152917, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.511006999999999, + 52.5163817 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T15:25:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.00794999981806e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114145243, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23049675, + -39.837828349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geert Claessens", + "uid": "11913862", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T14:30:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114143108, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0478664, + 50.9285288 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T13:47:40Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114141649, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "imagery": "HDM_HOT", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1958205, + 50.9160088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Sometimesmapping", + "uid": "13607423", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T12:08:31Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000913761140000294, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114137991, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.769248950000001, + 59.9139277 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "arukuni", + "uid": "8534839", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T11:59:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000152986193999159, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114137682, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.936193000000003, + 50.27166355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T09:42:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114131999, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2304311, + 51.2099671 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-23T07:53:41Z", + "reviewed_features": [], + "create": 5, + "modify": 8, + "delete": 0, + "area": 0.0000226561488400754, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114127880, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 26, + "imagery": "osm", + "language": "en", + "change_within_25m": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.24989435, + 43.7830436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T21:00:31Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000097859180999836, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114114258, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.23882325, + 43.7816377 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joeybab3", + "uid": "8783843", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T18:40:07Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.000620345714450028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114110334, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 25, + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_within_25m": 10, + "change_within_100m": 4, + "change_within_500m": 4, + "change_within_5000m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.05661275, + 36.974851150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T18:01:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114109022, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0457394, + 49.8544206 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T17:55:18Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 4.13940500003485e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114108771, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 11, + "imagery": "osm", + "language": "en", + "change_within_25m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.24296635, + 43.782012449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T17:15:38Z", + "reviewed_features": [], + "create": 8, + "modify": 8, + "delete": 0, + "area": 0.0000944718887499518, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114107213, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 30, + "imagery": "osm", + "language": "en", + "change_within_25m": 19, + "change_within_50m": 10, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.264316749999999, + 43.77846855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T16:11:17Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 8.21412800010411e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114104745, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 8, + "imagery": "AGIV", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3640989, + 51.012136600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T15:20:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114102892, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2516995, + 41.4479352 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T15:15:36Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.11597900002716e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114102705, + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 3, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55976165, + 52.99559845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T13:37:42Z", + "reviewed_features": [], + "create": 11, + "modify": 13, + "delete": 0, + "area": 0.000117263026560204, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114099060, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 41, + "imagery": "osm", + "language": "en", + "change_within_25m": 34, + "change_within_50m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2634379, + 43.7787729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T12:57:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114097689, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1866457, + 51.1947448 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T12:44:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114097283, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.225277, + 51.2078916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T12:03:04Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00000977284489999132, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114095799, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 12, + "imagery": "osm", + "language": "en", + "change_within_25m": 5, + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.223763049999999, + 43.786877700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koloto", + "uid": "11371566", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T11:28:48Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000756230839340224, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114094304, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.512842500000001, + 48.08694825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T09:49:54Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000218703679999861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114089983, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 14, + "imagery": "osm", + "language": "en", + "change_within_25m": 11, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2458618, + 43.792691500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T08:26:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114086967, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1866457, + 51.1947448 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T07:15:28Z", + "reviewed_features": [], + "create": 5, + "modify": 7, + "delete": 0, + "area": 0.0000136027106999993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114084633, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 24, + "imagery": "osm", + "language": "en", + "change_within_25m": 14, + "change_within_100m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.245411650000001, + 43.7813979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "korobkov", + "uid": "389895", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T02:51:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114079110, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 48.3882483, + 54.3320122 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T02:46:49Z", + "reviewed_features": [], + "create": 50, + "modify": 45, + "delete": 0, + "area": 8.46224049998409e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114079039, + "host": "127.0.0.1:1234", + "move": 36, + "theme": "grb", + "imagery": "AGIV", + "language": "nl", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14068465, + 51.15207615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T00:32:18Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000298876789200192, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114077348, + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.140321500000001, + 51.1522738 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-21T23:37:09Z", + "reviewed_features": [], + "create": 178, + "modify": 128, + "delete": 0, + "area": 0.0560894581192678, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114076677, + "host": "127.0.0.1:1234", + "move": 84, + "theme": "grb", + "answer": 19, + "import": 8, + "imagery": "AGIV", + "language": "nl", + "conflation": 40 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67913755, + 51.18201965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hfs", + "uid": "9607", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-21T21:44:53Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000894335078699775, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114074271, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 15, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.09395635, + 52.39585475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.10", + "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": "2021-11-21T19:52:27Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000574572618270035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114071129, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 3, + "change_over_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30956485, + 51.10541125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-21T19:43:07Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000634420899759996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114070865, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 3, + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3111592, + 51.09883125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AlexeyTyur", + "uid": "10509852", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-21T17:55:16Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 8.613999996976e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114067572, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 5, + "move:node/9272741457": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -112.0760909, + 33.46011025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-21T17:19:54Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.00183383042330007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114066212, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "answer": 21, + "imagery": "osm", + "language": "en", + "change_over_5000m": 21 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33681825, + 51.102917399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-21T12:45:30Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114056542, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1032138, + 52.0830137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Loviuz", + "uid": "4763621", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #id", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-21T11:46:09Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114054547, + "host": "mapcomplete.osm.be", + "theme": "id", + "answer": 7, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6665122, + 45.2194957 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Loviuz", + "uid": "4763621", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-21T11:02:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114053349, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "EsriWorldImagery", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 71.7765141, + 40.4045506 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Igor Zaytsev", + "uid": "3214325", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-21T09:22:17Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114050247, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 40.2759111, + 43.6810052 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Igor Zaytsev", + "uid": "3214325", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-21T09:06:54Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.51972999992477e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114049879, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 40.211125800000005, + 43.67893885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AlexeyTyur", + "uid": "10509852", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-21T05:33:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.32311799992476e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114046939, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -112.0766027, + 33.462172949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-21T01:01:34Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114044551, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "imagery": "osm", + "language": "en", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.1438811, + 43.7502381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mannivu", + "uid": "1950277", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T18:18:24Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000996640796000694, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114036668, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "imagery": "osm", + "language": "it", + "change_within_500m": 2, + "change_within_1000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.64106515, + 45.4933166 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "_Zaizen_", + "uid": "13632730", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T17:17:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114034673, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7305151, + 45.33372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T17:02:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114034194, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2004225, + 51.186175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Loviuz", + "uid": "4763621", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T16:57:17Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 1.23114000001429e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114034038, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 9, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6590959, + 45.226970300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Danysan95", + "uid": "4425563", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T16:40:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114033487, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7127615, + 44.35393 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T16:12:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.02229839998312e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114032625, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hackerspaces", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.387559899999999, + 50.82240395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T15:57:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114032166, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6100849, + 50.8468398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T15:30:10Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114031265, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "change_within_25m": 1, + "deletion:node/4314294835": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6036213, + 50.8422367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T15:08:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114030479, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5856916, + 13.9476675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T15:07:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114030464, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6036377, + 50.8426303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T14:47:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114029802, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5994668, + 50.8487499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T14:46:50Z", + "reviewed_features": [], + "create": 9, + "modify": 17, + "delete": 0, + "area": 0.0000360140516999965, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114029781, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 46, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 4, + "change_within_25m": 45, + "change_within_100m": 6, + "move:node/9269860379": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6021821, + 50.84544965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T14:37:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114029511, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1401763, + 49.6891113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrea Musuruane", + "uid": "90379", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T13:24:44Z", + "reviewed_features": [], + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.000108278303890037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114027270, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 43, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.170543949999999, + 45.36629955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrea Musuruane", + "uid": "90379", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T13:15:36Z", + "reviewed_features": [], + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.000111772254069973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114026957, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 33, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.17861305, + 45.367286449999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrea Musuruane", + "uid": "90379", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T12:24:29Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000242288045999661, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114025440, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 11, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1802704, + 45.367302699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T12:17:05Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.6948240000644e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114025211, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "change_within_25m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.684601, + 51.0580336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T11:22:40Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000612271297499718, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114023582, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 17, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94329205, + 50.41015625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T11:17:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114023430, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4455923, + 46.9288723 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pablo667", + "uid": "13166651", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T09:34:25Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 3.92010000005903e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114020398, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toilets", + "answer": 7, + "imagery": "osm", + "language": "en", + "move:node/9269432914": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.33714965, + 46.48656335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T09:32:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114020355, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1203799, + 52.0888547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T08:06:00Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114018406, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en", + "add-image": 1, + "change_within_25m": 3, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5577407, + 13.9629595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "iPhaulat", + "uid": "14492583", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T07:42:56Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00758018241031997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114017985, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0648529, + 50.82412895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoka", + "uid": "818053", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-19T22:25:00Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00090291097782003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114010623, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.15186765, + 48.5498855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jrachi", + "uid": "2976645", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-19T21:01:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114008323, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "it", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4712417, + 45.2644314 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-19T14:42:34Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113993823, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4422382, + 46.9461388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PetrusGeographicus", + "uid": "6306504", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-19T12:04:21Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000956295655200007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113988227, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9388232, + 51.33024090000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GRF86", + "uid": "10697310", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-19T07:26:34Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113977700, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7497433, + 52.431594 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-18T15:28:46Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000197076321260082, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113949456, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 10, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2310654000000003, + 51.20193345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T15:26:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113949393, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2455038, + 50.7262381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T15:23:51Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113949291, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2454414, + 50.7261862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T14:41:29Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.00101611818000008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113947704, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 8, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21888015, + 51.196195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T12:57:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113943668, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "HDM_HOT", + "language": "nl", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2442324, + 51.2039627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "willyVerbruggen", + "uid": "14482087", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T11:00:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113939005, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4276041, + 51.1842084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T10:49:25Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113938518, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "imagery": "HDM_HOT", + "language": "nl", + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1935279, + 51.2004931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-18T08:10:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00676452815376038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113932492, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2158667, + 51.2752488 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T00:59:57Z", + "reviewed_features": [], + "create": 1, + "modify": 16, + "delete": 0, + "area": 0.0000725956390899909, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113922524, + "host": "mapcomplete.osm.be", + "move": 14, + "theme": "grb", + "answer": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15234765, + 51.15873035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-17T22:21:32Z", + "reviewed_features": [], + "create": 202, + "modify": 190, + "delete": 0, + "area": 0.0000212697524500094, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113919138, + "host": "mapcomplete.osm.be", + "move": 181, + "theme": "grb", + "answer": 1, + "import": 7, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15130295, + 51.16151945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DieterWesttoer", + "uid": "13062237", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-17T15:26:45Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.0000608488785001403, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113903019, + "host": "mapcomplete.osm.be", + "split": 4, + "theme": "cyclestreets", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0913365, + 51.06573865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-17T11:41:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113894057, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "imagery": "HDM_HOT", + "language": "nl", + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1859279, + 51.3139366 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mach314", + "uid": "10409578", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-17T10:34:02Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 5.39747999993043e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113891121, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.0676955, + 40.753911200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-17T08:35:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113885921, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1951949, + 51.3265608 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jessbeutler", + "uid": "3243541", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-17T00:11:29Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113874951, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.6718148, + 42.9794391 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T22:11:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113871656, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2655267, + 51.1980204 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dampee", + "uid": "2175714", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T22:01:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113871399, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5876905, + 51.1446402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lattenzaun", + "uid": "2603279", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T21:59:11Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000261649920001031, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113871332, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.4558026, + 51.314914599999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn79", + "uid": "14458086", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T21:39:38Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00294268790241994, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113870726, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "answer": 5, + "imagery": "CartoDB.Positron", + "language": "nl", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4130676, + 50.94953925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn79", + "uid": "14458086", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T21:21:11Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00484706036529017, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113870121, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 8, + "imagery": "CartoDB.Positron", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34933765, + 50.96533895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "meiadeleite", + "uid": "13279813", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T21:20:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00084320154780016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113870099, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.6280573, + 37.13392235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.9", + "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": "2021-11-16T18:34:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113864247, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2904695, + 51.1994981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T18:07:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113863158, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "change_within_500m": 2, + "deletion:node/9257811058": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2182378, + 51.2155418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T17:06:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113860718, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0119706, + 51.4544025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T17:04:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113860578, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "de", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0120718, + 51.4545208 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T16:43:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113859710, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2352944, + 50.85522 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geert Claessens", + "uid": "11913862", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T16:38:12Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113859499, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0945347, + 50.953635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.9", + "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": "2021-11-16T16:11:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113858537, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2344067, + 51.2031169 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T15:55:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113857890, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1838748, + 51.1960646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "plicploc", + "uid": "75871", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T14:28:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113854721, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5741409, + 50.6194838 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.9", + "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": "2021-11-16T11:35:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113847794, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2503067, + 51.1835053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T10:18:52Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.000844845464179843, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113844419, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9601947, + 50.41745865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T08:49:14Z", + "reviewed_features": [], + "create": 20, + "modify": 2, + "delete": 0, + "area": 5.21078799997252e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113840870, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0374999999999996, + 51.0977036 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T08:38:05Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000139722750999456, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113840427, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.131047049999999, + 52.09527165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s8evq", + "uid": "3710738", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T08:34:52Z", + "reviewed_features": [], + "create": 26, + "modify": 1, + "delete": 0, + "area": 0.000771888263670192, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113840300, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 1, + "import": 4, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25407285, + 51.09879255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T08:34:00Z", + "reviewed_features": [], + "create": 8, + "modify": 10, + "delete": 0, + "area": 0.0000555664662199595, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113840279, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 9, + "imagery": "osm", + "language": "en", + "add-image": 7, + "change_within_25m": 14, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1284506499999996, + 52.0974834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85302", + "uid": "14030677", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T08:27:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113840019, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.481883, + 51.9319697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "todrobbins", + "uid": "94039", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T04:45:49Z", + "reviewed_features": [], + "create": 5, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113833223, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 2, + "imagery": "Mapbox", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -111.8574094, + 40.3632181 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.8", + "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": "2021-11-15T22:30:15Z", + "reviewed_features": [], + "create": 0, + "modify": 93, + "delete": 0, + "area": 0.0021328588070996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113827490, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 78, + "imagery": "osm", + "language": "en", + "add-image": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2564290500000004, + 51.1928764 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T20:48:06Z", + "reviewed_features": [], + "create": 167, + "modify": 0, + "delete": 0, + "area": 0.00000583677631999368, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113823101, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 15, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2524943, + 51.218247149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T20:24:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000299234779999665, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113821970, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_100m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25789845, + 51.2076036 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dampee", + "uid": "2175714", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T19:33:29Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0277351012938999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113820175, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6150423499999995, + 51.1610935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T19:20:51Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000939837382400018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113819738, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7421088, + 51.0412423 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T17:19:23Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000366630589200139, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113815150, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "en", + "change_within_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5410926, + 44.3860696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T15:41:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000889276929998622, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113811125, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.85410045, + 52.165043600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "plicploc", + "uid": "75871", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T15:21:46Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 2.65645200003639e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113810342, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 8, + "imagery": "osm", + "language": "en", + "change_within_25m": 9, + "move:node/9247814726": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5579327, + 50.6242225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T15:16:27Z", + "reviewed_features": [], + "create": 0, + "modify": 269, + "delete": 0, + "area": 0.00233214065237989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113810139, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 447, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96330215, + 50.4183087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T15:14:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113810072, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2118652, + 51.2048584 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 83, + "name": "User has multiple blocks" + } + ], + "tags": [], + "features": [], + "user": "Simon M", + "uid": "517839", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T14:21:23Z", + "reviewed_features": [], + "create": 0, + "modify": 231, + "delete": 0, + "area": 0.000742580267359978, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113807773, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 324, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.593448, + 48.7254492 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T13:52:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.11261619995775e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113806724, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 8, + "change_within_1000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2393514, + 51.210834750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T13:42:18Z", + "reviewed_features": [], + "create": 0, + "modify": 34, + "delete": 0, + "area": 115.922662753623, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113806349, + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 53, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 53 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79737515, + 52.242610049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T11:27:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.17177180001118e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113800961, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2381010999999997, + 51.18833585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T11:19:08Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000107223143040029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113800605, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95028465, + 50.4177244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T10:50:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.69268000126868e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113799603, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5587778, + 13.96359275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T09:17:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.24088799987655e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113795722, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2713437, + 51.2003859 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T09:15:24Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.000201693462579993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113795604, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "nl", + "add-image": 6, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.275556, + 51.19025275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T08:25:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000194049454600024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113793660, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23263115, + 51.2115921 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "danielhaniel", + "uid": "2608278", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T05:21:29Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000280521583199941, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113787479, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1730426, + 52.17872920000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T00:48:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113783093, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9824694, + 51.1500361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T22:40:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000620114805003255, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113781509, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.149091349999999, + 59.755147449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nw520", + "uid": "6895624", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T22:33:47Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000196494605999997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113781375, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 10, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00325925, + 49.2319904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T21:55:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113780467, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7276412, + 51.0411273 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.8", + "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": "2021-11-14T20:00:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0741323386900802, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113777162, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5767153, + 51.0096022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T18:04:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113773473, + "host": "pietervdvn.github.io", + "path": "mc/toilets-at-amenity/", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3507453, + 50.8536834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T17:38:50Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 0.0000156939545699938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113772524, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 17, + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1406575500000002, + 50.70147355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "daviddelon", + "uid": "1241", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T16:28:45Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000880051314996219, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113770114, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8770761499999997, + 43.61476115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T15:21:41Z", + "reviewed_features": [], + "create": 43, + "modify": 4, + "delete": 0, + "area": 8.51590500008236e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113767259, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 2, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73486325, + 51.03997725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T15:16:25Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000304947586439922, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113767040, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "parkings", + "imagery": "osm", + "language": "de", + "move:node/-1": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.956541999999999, + 50.2793812 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T15:15:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113767012, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7348232, + 51.0401155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T15:10:32Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000124813402699997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113766752, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "de", + "move:node/-1": "improve_accuracy", + "move:node/-2": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.96033895, + 50.2622085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:56:01Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0104533629923, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113766100, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "observation_towers", + "answer": 6, + "imagery": "osm", + "language": "de", + "move:node/1719597181": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6232303, + 50.07017255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:52:17Z", + "reviewed_features": [], + "create": 6, + "modify": 2, + "delete": 0, + "area": 0.000622089057040089, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113765933, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.95595755, + 50.2775154 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:43:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000624980264999187, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113765601, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "shops", + "imagery": "osm", + "language": "de", + "move:node/267286858": "improve_accuracy", + "move:node/322806285": "relocated" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.67980365, + 50.14115535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:39:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113765369, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9477634, + 50.272717 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:37:12Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000068700732380047, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113765275, + "host": "mapcomplete.osm.be", + "move": 5, + "theme": "trees", + "answer": 15, + "imagery": "osm", + "language": "de", + "move:node/1754404741": "improve_accuracy", + "move:node/1754404754": "improve_accuracy", + "move:node/1754404771": "improve_accuracy", + "move:node/1754404811": "improve_accuracy", + "move:node/5368395007": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69264245, + 50.128844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:37:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113765274, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6867148, + 50.1269821 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:34:30Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.0000150462936599833, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113765121, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6862293, + 50.12752025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:26:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113764730, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6423108, + 50.070061 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koilebeit", + "uid": "10355146", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T13:32:25Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000440209433999806, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113762865, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.60576105, + 47.7714283 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn79", + "uid": "14458086", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T13:07:40Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113762052, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3031168, + 50.9391221 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:59:38Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 2.80131719988906e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113761796, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "parkings", + "imagery": "osm", + "language": "de", + "move:node/-3": "improve_accuracy", + "move:node/9250298364": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.976755449999999, + 50.2600235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:54:45Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00000251462843999828, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113761638, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "parkings", + "imagery": "osm", + "language": "de", + "move:node/-1": "improve_accuracy", + "move:node/-2": "improve_accuracy", + "move:node/-3": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.94739365, + 50.2737678 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrea Musuruane", + "uid": "90379", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:52:33Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000181816271999955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113761593, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1757982, + 45.36604115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:50:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113761534, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9660253, + 50.2622817 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T12:31:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113760996, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5442707, + 50.1581591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:27:16Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113760883, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9941227, + 50.2423472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:18:01Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00104816007672005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113760658, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.960747999999999, + 50.27161095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:10:59Z", + "reviewed_features": [], + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.000162390976959991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113760489, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 13, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9495018, + 50.2774503 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:03:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000035843274600036, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113760328, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.944194849999999, + 50.274159499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:56:13Z", + "reviewed_features": [], + "create": 6, + "modify": 3, + "delete": 0, + "area": 0.0000138805410099955, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113760141, + "host": "mapcomplete.osm.be", + "move": 5, + "theme": "parkings", + "imagery": "osm", + "language": "de", + "add-image": 2, + "move:node/-1": "improve_accuracy", + "move:node/-4": "improve_accuracy", + "change_within_25m": 2, + "change_within_50m": 3, + "change_within_100m": 2, + "move:node/9250188450": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54404465, + 50.16105265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:41:18Z", + "reviewed_features": [], + "create": 5, + "modify": 6, + "delete": 0, + "area": 0.0000185388451000009, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113759711, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "benches", + "answer": 32, + "imagery": "osm", + "language": "de", + "change_within_25m": 25, + "change_within_50m": 6, + "move:node/9250013123": "improve_accuracy", + "move:node/9250177500": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54536235, + 50.1618474 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:36:38Z", + "reviewed_features": [], + "create": 12, + "modify": 16, + "delete": 0, + "area": 0.0000185424557000219, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113759556, + "host": "mapcomplete.osm.be", + "move": 7, + "theme": "trees", + "answer": 29, + "imagery": "osm", + "language": "de", + "add-image": 2, + "move:node/-1": "improve_accuracy", + "change_within_25m": 30, + "change_within_50m": 6, + "change_within_100m": 2, + "move:node/1874211610": "improve_accuracy", + "move:node/9250164261": "improve_accuracy", + "move:node/9250169556": "improve_accuracy", + "move:node/9250176600": "improve_accuracy", + "move:node/9250185096": "improve_accuracy", + "move:node/9250200237": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5451746, + 50.162814850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:35:14Z", + "reviewed_features": [], + "create": 7, + "modify": 1, + "delete": 0, + "area": 0.0000133246554599942, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113759501, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_25m": 6, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.545350299999999, + 50.16191445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:27:05Z", + "reviewed_features": [], + "create": 9, + "modify": 13, + "delete": 0, + "area": 0.0000144811267999846, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113759289, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "personal", + "answer": 32, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 35, + "move:node/9250160715": "improve_accuracy", + "move:node/9250171354": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5452807, + 50.1607658 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T11:20:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000275097605999909, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113759055, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3740456000000005, + 50.86143745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:12:50Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113758800, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_within_100m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5460034, + 50.159276 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:03:41Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113758504, + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5640962, + 52.9950848 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T10:55:30Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000184265210999496, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113758185, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.96740535, + 50.2748423 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:55:25Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000136135512499957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113758182, + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 11, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.537877, + 52.99543985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:38:10Z", + "reviewed_features": [], + "create": 9, + "modify": 17, + "delete": 0, + "area": 0.00000321948500000108, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113757575, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "street_lighting", + "answer": 55, + "imagery": "osm", + "language": "en", + "change_within_25m": 47, + "change_within_50m": 10, + "move:node/9250101192": "improve_accuracy", + "move:node/9250140726": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5466847, + 50.159459049999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:35:03Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 5.91250000007636e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113757473, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "de", + "add-image": 1, + "change_within_25m": 6, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54822695, + 50.15882755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tharwatblabla", + "uid": "14423401", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T10:27:58Z", + "reviewed_features": [], + "create": 3, + "modify": 18, + "delete": 0, + "area": 0.0000631549900800196, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113757237, + "host": "mapcomplete.osm.be", + "split": 3, + "theme": "cycle_infra", + "answer": 37, + "imagery": "CartoDB.Voyager", + "language": "de", + "relation-fix": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.754583499999999, + 50.3344212 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:23:42Z", + "reviewed_features": [], + "create": 9, + "modify": 11, + "delete": 0, + "area": 0.00000123259112999777, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113757122, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 21, + "imagery": "osm", + "language": "de", + "add-image": 4, + "change_within_25m": 22, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.549551950000001, + 50.15823985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:16:41Z", + "reviewed_features": [], + "create": 5, + "modify": 4, + "delete": 0, + "area": 0.00000527521994999788, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756938, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 24, + "imagery": "osm", + "language": "de", + "change_within_25m": 6, + "change_within_50m": 17, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54991405, + 50.15806455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:12:52Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000721872184001032, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756828, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "de", + "add-image": 2, + "change_within_25m": 4, + "move:node/9250058943": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54798555, + 50.1589066 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:12:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756814, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.550598, + 50.1582158 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:10:58Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756772, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "de", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5506839, + 50.1586076 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:08:09Z", + "reviewed_features": [], + "create": 12, + "modify": 2, + "delete": 0, + "area": 0.00000554620200000289, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756676, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 12, + "imagery": "osm", + "language": "de", + "change_within_25m": 7, + "change_within_50m": 1, + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54988995, + 50.1582948 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:05:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756593, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5477495, + 50.1592846 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:02:10Z", + "reviewed_features": [], + "create": 6, + "modify": 4, + "delete": 0, + "area": 0.0000106323035599849, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756494, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 26, + "imagery": "osm", + "language": "de", + "add-image": 1, + "change_within_25m": 8, + "change_within_50m": 14, + "change_within_100m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54875805, + 50.1584701 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T09:44:18Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00000463535666000777, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756026, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2490917, + 52.77244085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T09:00:35Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754874, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9456606, + 50.3058153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:52:48Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754698, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 10, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.941353, + 50.2853359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:45:40Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754541, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.941353, + 50.2853359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:44:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754500, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6862027, + 50.114882 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:40:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754433, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6853782, + 50.1165911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:29:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00022252862830001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754188, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 13, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69559315, + 50.1094906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:26:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000101381808000238, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754116, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.659948499999999, + 50.105537999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tharwatblabla", + "uid": "14423401", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:23:14Z", + "reviewed_features": [], + "create": 0, + "modify": 41, + "delete": 0, + "area": 0.000121456326400027, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754045, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 59, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.754045600000001, + 50.331973950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wesomat87", + "uid": "14348684", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T06:00:23Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.0000336142241099786, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113752071, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.76859585, + 53.15715375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T00:43:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113749418, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.702026, + -36.8765078 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T22:54:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113747585, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6773092, + 50.107802 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T22:43:22Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.47220799996838e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113747362, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69519405, + 50.1137454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T22:25:25Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000168137771599894, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113747067, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 17, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.688638000000001, + 50.1151145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T21:59:56Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000026695314800012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113746594, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 9, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.683682999999998, + 50.1142431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T21:47:17Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000375816023339926, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113746256, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 12, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.684360649999999, + 50.1223254 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tharwatblabla", + "uid": "14423401", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T20:19:02Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.00000684466477999113, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113744063, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 36, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7578024, + 50.33270895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T20:17:57Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113744040, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 9, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6528492, + 50.1091454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T20:14:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113743952, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6830898, + 50.1148656 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T18:40:46Z", + "reviewed_features": [], + "create": 39, + "modify": 48, + "delete": 0, + "area": 0.00000684312634001648, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113741375, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "street_lighting", + "answer": 80, + "imagery": "Actueel_orthoHR_WMTS", + "language": "en", + "change_over_5000m": 39, + "change_within_5000m": 80 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5329098000000005, + 52.985321049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T18:35:34Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000114772787999964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113741225, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "street_lighting", + "answer": 4, + "imagery": "Actueel_orthoHR_WMTS", + "language": "en", + "change_within_50m": 1, + "change_within_100m": 1, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5704241, + 53.0206216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T18:22:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000136283129100017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113740818, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.65024765, + 44.73081185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T18:12:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113740545, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.677804, + 50.1272677 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T15:42:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113735110, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7348232, + 51.0401155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T15:02:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113733740, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6839434, + 50.1146583 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T14:56:59Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000204209408199706, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113733520, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 15, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69791175, + 50.1163602 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T14:51:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000691734054003194, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113733331, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68328565, + 50.114305099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T14:48:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.46087860008833e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113733222, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68109755, + 50.1163472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T14:29:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 9.36659999984568e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113732652, + "host": "pietervdvn.github.io", + "move": 2, + "path": "mc/develop/", + "theme": "toilets", + "answer": 6, + "imagery": "osm", + "language": "en", + "move:node/-1": "improve_accuracy", + "change_over_5000m": 1, + "change_within_25m": 8, + "move:node/9248363054": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7348299000000003, + 51.04008055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T14:03:51Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000043167563399821, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113731799, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 23, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6907608, + 50.11390175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T13:25:51Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113730627, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "AGIV10cm", + "language": "nl", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1993715, + 50.7445529 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T12:20:54Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 2.52769799857233e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113728526, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 20, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6829606, + 50.11461825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe61", + "uid": "14437392", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T12:08:34Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113728191, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4499186, + 49.4759151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pfiers", + "uid": "3797928", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T12:03:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113728066, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.2041098, + 51.5014559 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T07:36:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.79250600007531e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113721207, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68311665, + 50.1144909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T21:15:48Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000462178655999379, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113712667, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6846751, + 50.1158075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T21:09:30Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000254016174299636, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113712485, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 13, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68409165, + 50.112874149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T21:03:02Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000699641189000275, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113712262, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 31, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6774814, + 50.11119025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T20:54:43Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.0000141726613600619, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113711932, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 32, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.687577600000001, + 50.115007750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T17:30:27Z", + "reviewed_features": [], + "create": 20, + "modify": 12, + "delete": 0, + "area": 0.000604562851159979, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113705603, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8632879, + 52.1777432 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T16:52:13Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113704380, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6917978, + 50.1152513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T16:35:18Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113703818, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6868891, + 50.1137075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T16:28:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113703612, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4581663, + 51.1707405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tresho", + "uid": "6178157", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:59:32Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0001684038762, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113702505, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.9771117, + 45.43634245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:57:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000804630236001237, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113702444, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.18929335, + 50.1980947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:51:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113702124, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1906575, + 50.1995693 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:49:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113702050, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6832145, + 50.1116981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:42:17Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000126798033999945, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113701784, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.19187145, + 50.198229100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:40:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113701706, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1854334, + 50.199891 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:30:35Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113701360, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 17, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6838824, + 50.1115399 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T14:54:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113700003, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2011437, + 51.2002594 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ze0zohk1", + "uid": "4565074", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T14:29:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113699070, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1509005, + 48.7299946 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe61", + "uid": "14437392", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T14:14:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113698480, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4502941, + 49.4742454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe61", + "uid": "14437392", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T14:10:21Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 3.39544999986822e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113698337, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.45007285, + 49.47343845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe61", + "uid": "14437392", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T14:08:48Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113698278, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4499562, + 49.4732868 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe61", + "uid": "14437392", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T13:54:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113697689, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4480947, + 49.4760771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe61", + "uid": "14437392", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T13:48:48Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113697517, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 7, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4485105, + 49.4769189 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T13:40:26Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113697242, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_within_1000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2532747, + 50.7435566 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T13:38:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113697189, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "HDM_HOT", + "language": "nl", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2238342, + 51.2079706 + ] + } + }, + { + "type": "Feature", + "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": "2021-11-12T13:29:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113696848, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.0631437, + 52.0389766 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T13:22:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113696506, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6898369, + 50.1276097 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T12:52:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113695360, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.248831, + 50.741326 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T11:49:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113692952, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.669955, + 50.1448601 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T11:43:17Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113692745, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 2, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.668921, + 50.1439577 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T11:40:42Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00000106569960000036, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113692652, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6693012, + 50.1435194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T11:07:57Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.49226000017609e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113691415, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_within_25m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.686496049999999, + 50.1153186 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ReTroll", + "uid": "4909451", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T08:26:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.56307999982847e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113684745, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3043364, + 47.073127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ReTroll", + "uid": "4909451", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T06:44:23Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000486393412099971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113680426, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30238595, + 47.12222705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T19:37:56Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 8.82026729996815e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113666227, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.14602965, + 49.840428450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T19:34:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113666128, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1488433, + 49.8067305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T19:30:28Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113666007, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2376243, + 50.7366011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T18:48:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113664697, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2263353, + 51.2096424 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T18:37:02Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.0000287575351200046, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113664294, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1552538, + 49.8048021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T18:14:52Z", + "reviewed_features": [], + "create": 13, + "modify": 0, + "delete": 0, + "area": 0.000058726923320058, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113663618, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1613773, + 49.802349050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:59:20Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00000204321538000214, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113663060, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1612914, + 49.80233005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:57:52Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113663005, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1612217, + 49.8024287 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:47:21Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.0000551038015999803, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113662582, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.158906949999999, + 49.8059756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:36:39Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00000138273874999847, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113662208, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.16029495, + 49.80140385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:21:18Z", + "reviewed_features": [], + "create": 13, + "modify": 1, + "delete": 0, + "area": 0.000124051448040004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113661631, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1599798, + 49.806965649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T17:20:33Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113661608, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_1000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2263353, + 51.2096424 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T17:20:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113661606, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9852071, + 50.0386577 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T17:18:30Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.58330739999979e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113661550, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_50m": 4, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.985786449999999, + 50.0384269 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:09:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113661212, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9840189, + 50.0397068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:08:08Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113661169, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9843253, + 50.0391539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:01:00Z", + "reviewed_features": [], + "create": 6, + "modify": 5, + "delete": 0, + "area": 0.0000335890302599913, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660924, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 8, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.984525999999999, + 50.03906635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:57:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660783, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9813849, + 50.0410488 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:55:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660696, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.981173, + 50.0423011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:53:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660668, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9811918, + 50.0423183 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:44:06Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660337, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1607603, + 49.8024633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:43:28Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660317, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 8, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9819241, + 50.0414725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:39:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660174, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1590598, + 49.8026295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:27:38Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000351601991999663, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659748, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1597934, + 49.80452075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:24:35Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 0.00000135597419998786, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659643, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 25, + "imagery": "osm", + "language": "en", + "change_within_25m": 24, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.158330249999999, + 49.8028909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:23:17Z", + "reviewed_features": [], + "create": 6, + "modify": 1, + "delete": 0, + "area": 0.00000362193149998517, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659591, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste_basket", + "answer": 6, + "imagery": "osm", + "language": "en", + "change_within_25m": 6, + "change_within_50m": 1, + "move:node/9243908844": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1583209, + 49.80278965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:22:40Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659569, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.160189, + 49.8029775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:19:29Z", + "reviewed_features": [], + "create": 9, + "modify": 0, + "delete": 0, + "area": 0.00000187559517001751, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659450, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.15700395, + 49.80288745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:17:13Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659366, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1788948, + 49.7538018 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:14:55Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659288, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1656822, + 49.7933756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:12:11Z", + "reviewed_features": [], + "create": 9, + "modify": 5, + "delete": 0, + "area": 0.00000345907702000459, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659179, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 26, + "imagery": "osm", + "language": "en", + "change_within_25m": 20, + "change_within_50m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1577482, + 49.80287535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9243903292", + "osm_id": 9243903292, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "shop": "digitale Medien" + } + }, + { + "url": "node-9243925011", + "osm_id": 9243925011, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "shop": "Versicherungen" + } + } + ], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:09:16Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000104733419999638, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659027, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 3, + "imagery": "osm", + "language": "de", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.156385700000001, + 49.803068350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:08:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659015, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1579735, + 49.801326 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:05:18Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113658838, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1626325, + 49.8023629 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:01:43Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113658681, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 6, + "imagery": "osm", + "language": "de", + "change_within_25m": 5, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1552243, + 49.8030952 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:01:19Z", + "reviewed_features": [], + "create": 10, + "modify": 2, + "delete": 0, + "area": 0.00000749192950000058, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113658667, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.16364795, + 49.8037963 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T15:55:15Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 3.30694899999425e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113658469, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "imagery": "AGIV10cm", + "language": "en", + "add-image": 2, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25393335, + 50.725780349999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:43:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657967, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1671735, + 49.7998942 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:37:39Z", + "reviewed_features": [], + "create": 16, + "modify": 0, + "delete": 0, + "area": 0.000016251251420004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657736, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1597357, + 49.80114415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:34:22Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 6.93663879997258e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657620, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.15785955, + 49.800221 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:32:49Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.80799999784335e-11, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657564, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.15853005, + 49.7999115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:29:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000287828616000439, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657450, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1570915, + 49.800447000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:26:14Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000201053814001154, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657347, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.16274785, + 49.801279199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:23:16Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657212, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1606718, + 49.8018436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:17:29Z", + "reviewed_features": [], + "create": 8, + "modify": 1, + "delete": 0, + "area": 1.92227560003999e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657009, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.16094545, + 49.802493600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:12:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113656795, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1637403, + 49.802453 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:08:43Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113656695, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.162371, + 49.8030623 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T12:10:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113649599, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2484543, + -39.8131879 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wesomat87", + "uid": "14348684", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T11:48:20Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00000657169134997989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113648617, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.75899385, + 53.15936765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T18:25:43Z", + "reviewed_features": [], + "create": 10, + "modify": 21, + "delete": 0, + "area": 0.000988510331520011, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113621156, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 62, + "imagery": "osm", + "language": "de", + "move:node/9241346070": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9458849, + 50.280960500000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:57:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113617351, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5497558, + 50.1005473 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:38:55Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.77568000005621e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113616486, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5469288, + 50.10262385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:36:14Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 5.99634999991383e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113616350, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "imagery": "osm", + "language": "de", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.547218449999999, + 50.1026849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:34:38Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00160165419990046, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113616285, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 3, + "change_within_25m": 8, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24020775, + 51.2043448 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:15:02Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.00000150567659999582, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113615451, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "de", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54247095, + 50.106960799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:12:27Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.0000433780830000337, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113615348, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste_basket", + "answer": 4, + "imagery": "osm", + "language": "de", + "change_within_25m": 5, + "move:node/9241010777": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5447951, + 50.10491785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:01:43Z", + "reviewed_features": [], + "create": 5, + "modify": 3, + "delete": 0, + "area": 0.000106781131290011, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113614934, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 4, + "imagery": "osm", + "language": "de", + "add-image": 2, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54438065, + 50.10558605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "K-Pete", + "uid": "9038981", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T15:58:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113614812, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6937454, + 50.1296435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:54:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113614651, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "imagery": "osm", + "language": "de", + "change_within_500m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5340783, + 50.1146463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:40:51Z", + "reviewed_features": [], + "create": 10, + "modify": 3, + "delete": 0, + "area": 0.00016710411749992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113614079, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "waste_basket", + "answer": 10, + "imagery": "osm", + "language": "de", + "move:node/-1": "improve_accuracy", + "change_within_25m": 13, + "move:node/9240998351": "improve_accuracy", + "move:node/9241137476": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5418366, + 50.10780245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:30:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113613656, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9749181, + 50.0442803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:30:05Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113613643, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9749449, + 50.0443302 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:25:47Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.85179439998008e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113613487, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.975534849999999, + 50.043349199999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:25:47Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.46901999976122e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113613486, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.975598049999999, + 50.043480200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:23:06Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.78520699998025e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113613375, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.97555475, + 50.043371199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:16:42Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 7.45410239999122e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113613114, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "parkings", + "imagery": "osm", + "language": "en", + "move:node/-1": "improve_accuracy", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9761548, + 50.0425456 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:05:44Z", + "reviewed_features": [], + "create": 5, + "modify": 2, + "delete": 0, + "area": 0.00000442510599001278, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113612599, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_25m": 6, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.97722615, + 50.042217550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:03:51Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000875889056000161, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113612509, + "host": "mapcomplete.osm.be", + "split": 3, + "theme": "cyclestreets", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 4, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9773203, + 50.0421193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T14:55:02Z", + "reviewed_features": [], + "create": 6, + "modify": 4, + "delete": 0, + "area": 0.00000290310461998559, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113612102, + "host": "mapcomplete.osm.be", + "split": 2, + "theme": "street_lighting", + "answer": 18, + "imagery": "osm", + "language": "en", + "relation-fix": 1, + "change_within_25m": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.97821595, + 50.0417998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T14:49:41Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000180691031700152, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113611794, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 9, + "imagery": "osm", + "language": "en", + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.97823605, + 50.042525850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T14:49:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113611786, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9813273, + 50.0409669 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sualko", + "uid": "11086971", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T14:40:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113611335, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1704841, + 48.7253806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T13:05:19Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113607510, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 6, + "imagery": "osm", + "language": "de", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6381339, + 50.1232861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T12:54:48Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113607198, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "imagery": "osm", + "language": "de", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644698, + 50.1229582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.12.5", + "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": "2021-11-10T12:51:05Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00139282330581061, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113607073, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "answer": 4, + "imagery": "osm", + "language": "es", + "change_within_25m": 1, + "change_within_500m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.53979215, + -34.63900825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9240517718", + "name": "Call a bike station", + "osm_id": 9240517718, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #bicyclelib", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T12:46:44Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113606918, + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "answer": 5, + "imagery": "osm", + "language": "de", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6430378, + 50.1235416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.12.5", + "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": "2021-11-10T12:33:21Z", + "reviewed_features": [], + "create": 6, + "modify": 1, + "delete": 0, + "area": 0.0161826207550004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113606449, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 15, + "imagery": "EsriWorldImageryClarity", + "language": "es", + "change_within_25m": 12, + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5743771, + -34.63804115000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T12:22:05Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113606018, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 5, + "imagery": "osm", + "language": "de", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6429062, + 50.1239728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T12:16:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113605823, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6428607, + 50.1240037 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T12:11:39Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.903559000065e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113605661, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "de", + "change_within_25m": 6, + "move:node/9240371801": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.64227815, + 50.12367365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T12:07:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113605548, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6413559, + 50.1237561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T12:02:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113605291, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2578433, + 51.2068582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T11:59:33Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113605210, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 9, + "imagery": "osm", + "language": "de", + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6404319, + 50.1237762 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T11:58:37Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113605176, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6406317, + 50.1236633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T11:48:20Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113604837, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6392477, + 50.1246641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T11:47:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113604805, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "de", + "change_within_25m": 1, + "deletion:node/9240394592": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6388749, + 50.1249341 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T11:39:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113604564, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6351493, + 50.1237286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T11:28:06Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.09296000039273e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113604148, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 1, + "imagery": "osm", + "language": "de", + "move:node/9240321658": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.638031999999999, + 50.1219264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T11:20:52Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000229069660500024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113603891, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 16, + "imagery": "osm", + "language": "de", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.63991335, + 50.12286415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T11:19:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113603838, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6376545, + 50.1215962 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T11:18:24Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113603802, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6375512, + 50.1214672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sualko", + "uid": "11086971", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T11:02:18Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113603188, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "de", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1704841, + 48.7253806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:51:06Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.0275504000031e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113602685, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6842887, + 50.126216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:51:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113602684, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6838555, + 50.1261567 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9240236465", + "name": "Schiller Apotheke", + "osm_id": 9240236465, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "shop": "Medizin" + } + } + ], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:40:41Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 2.85723899996051e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113602296, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 7, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.685079949999999, + 50.1264748 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:39:11Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00000133381378000755, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113602222, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 3, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.64021945, + 50.125679500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:36:36Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113602123, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 5, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6862373, + 50.12659 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:31:15Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.14877999990273e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113601902, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6868234, + 50.126735350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:25:11Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 9.54939510010869e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113601645, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 11, + "imagery": "osm", + "language": "de", + "add-image": 1, + "move:node/9240267570": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68669735, + 50.12670695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:19:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113601430, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6407429, + 50.1272733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:17:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 9.03230000004829e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113601332, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.689150399999999, + 50.1270328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:10:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113601079, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6897011, + 50.1273803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T09:30:04Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000187538328000068, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113599699, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 9, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6994321, + 50.11287299999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #street_lighting_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T09:02:13Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.0000112281976800018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113598666, + "host": "mapcomplete.osm.be", + "theme": "street_lighting_assen", + "answer": 6, + "imagery": "Actueel_ortho25_WMS", + "language": "en", + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5594736, + 53.0164646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T08:57:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113598511, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3871451, + 50.8668183 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T08:53:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.58471999995757e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113598373, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6866062, + 50.1146941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T08:45:21Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000178332927049979, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113598091, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 22, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69935325, + 50.13102385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Blacky98", + "uid": "14326205", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T07:02:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000296699670999996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113594709, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "imagery": "osmfr-basque", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.56197795, + 50.682000349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T00:55:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.33740500002667e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113588296, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22888695, + 51.206115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T22:46:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00824348653915973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113586229, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 5, + "imagery": "osm", + "language": "pt", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.752205099999999, + 37.1358424 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "afgb1977", + "uid": "10218404", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T22:26:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113585788, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.4623911, + 5.0312873 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T21:40:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000126087341399945, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113584728, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.545202849999999, + 50.160830000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T21:35:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113584605, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5514026, + 50.159433 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T21:30:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113584481, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.550188, + 50.1588121 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T21:27:31Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000311745775100273, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113584409, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 8, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.547471349999999, + 50.16120555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T21:21:16Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.0000148675928800016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113584246, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 11, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5449828, + 50.1601884 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T20:00:46Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.77960959991867e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113581830, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1912836, + 50.20169705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T19:46:58Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0522773966699786, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113581380, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 12, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.93181115, + 50.1508993 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T19:44:42Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 3.89135199999847e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113581306, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.19254185, + 50.1995891 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T19:42:30Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113581221, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.545416, + 50.1595767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T19:37:22Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113581039, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5464031, + 50.1614016 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T19:34:02Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00000709135899000157, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113580922, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 16, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.19272805, + 50.19846805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T19:26:27Z", + "reviewed_features": [], + "create": 3, + "modify": 18, + "delete": 0, + "area": 0.0000512286847199975, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113580637, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 34, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54873435, + 50.1643012 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T14:51:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113568845, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6788216, + 50.1260216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T14:44:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113568571, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6791831, + 50.125971 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T14:40:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.55100190001775e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113568433, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.67796695, + 50.12684495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T14:30:20Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113568103, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6805457, + 50.1275839 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T14:20:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113567768, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6814415, + 50.1276836 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T14:13:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113567505, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6816034, + 50.127716 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T13:59:04Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000401784183999837, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113566980, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6805324, + 50.12763585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T13:48:13Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.07071599991194e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113566589, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 7, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.683234599999999, + 50.1282141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.12.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": "2021-11-09T13:15:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000911185000980453, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113565479, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 2, + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.68838615, + -34.6586347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T13:05:46Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000022798149999971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113565126, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 11, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6891366, + 50.1335472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T13:04:07Z", + "reviewed_features": [], + "create": 3, + "modify": 11, + "delete": 0, + "area": 0.0000758788009200088, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113565062, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 20, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 7, + "move:node/9238133163": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2222564, + 51.202200700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T12:57:28Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000758767600000295, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113564788, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 7, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69328115, + 50.1287127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T12:28:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.52159500000829e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113563735, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69003945, + 50.1276393 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.12.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T11:31:36Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.0000154464442500041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113561665, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 15, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39333945, + 51.20875735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "plicploc", + "uid": "75871", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T11:15:36Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113561089, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5617588, + 50.5852711 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T10:09:27Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.0000231193711500255, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113558406, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "aed", + "answer": 12, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 8, + "move:node/-1": "improve_accuracy", + "move:node/8768659559": "improve_accuracy", + "move:node/9237576880": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20237385, + 51.20223925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T08:42:20Z", + "reviewed_features": [], + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.000178019645350141, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113554894, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 15, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2743556500000004, + 51.20955345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T00:41:07Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000308943590360058, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113544129, + "host": "127.0.0.1:1234", + "move": 1, + "theme": "toilets", + "answer": 13, + "imagery": "osm", + "language": "en", + "change_within_500m": 8, + "change_within_1000m": 3, + "change_within_5000m": 3, + "move:node/3455390192": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2297791, + 51.20713155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T22:52:20Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000457981481999824, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113541988, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 8, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2867471999999998, + 41.6019153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-08T19:53:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.73612799997067e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113536549, + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2264614, + 51.2201449 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-08T17:32:37Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113531693, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8141441, + 43.3810326 + ] + } + }, + { + "type": "Feature", + "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": "2021-11-08T14:09:22Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113524257, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6541279, + 52.0111969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-08T12:26:23Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 1.04957999996664e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113520538, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43261105, + 46.9454512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:51:05Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113519157, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6455965, + 50.0688335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:46:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.63917000000991e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518984, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6762497, + 50.0985021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:44:36Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518889, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7027381, + 50.122315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [ + { + "id": 9, + "name": "Resolved" + } + ], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:41:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.01760000000901e-10, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2021-11-11T14:20:49.197781Z", + "id": 113518734, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "observation_towers", + "answer": 1, + "imagery": "osm", + "language": "de", + "move:node/9235173348": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.71135515, + 50.0890136 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:40:47Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 6.32895750003157e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518718, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 14, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69186135, + 50.12827765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:38:27Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.0000197479445799703, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518617, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 10, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.659828300000001, + 50.09142095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:36:07Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518508, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6641896, + 50.1069909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:34:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518425, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.711375, + 50.0890135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:31:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000713276226809939, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518262, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "de", + "move:node/9235095153": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68113615, + 50.11404075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:30:13Z", + "reviewed_features": [], + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.00000202942276999293, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518197, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "parkings", + "imagery": "osm", + "language": "de", + "move:node/9235138165": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.71016665, + 50.089053050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:27:40Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.000915092173519948, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518084, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6918138, + 50.100693500000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:26:41Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00101053350089997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518040, + "host": "mapcomplete.osm.be", + "move": 6, + "theme": "parkings", + "imagery": "osm", + "language": "de", + "move:node/1468812551": "improve_accuracy", + "move:node/1976912975": "improve_accuracy", + "move:node/6230129920": "improve_accuracy", + "move:node/6230129922": "improve_accuracy", + "move:node/6447492689": "improve_accuracy", + "move:node/6447504487": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6797915, + 50.11238965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:22:45Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517912, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6773708, + 50.1120637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:19:37Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00119331654813018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517804, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 15, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68431645, + 50.11610775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:18:51Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 4.18080000314834e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517769, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 2, + "imagery": "osm", + "language": "de", + "move:node/9235112785": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.692076499999999, + 50.1306746 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:15:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517620, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6866933, + 50.1351904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:09:51Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000021673015200009, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517349, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69282015, + 50.1293519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:09:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517323, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6980666, + 50.1287091 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:01:02Z", + "reviewed_features": [], + "create": 7, + "modify": 15, + "delete": 0, + "area": 0.00060861293480014, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517015, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 27, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68087695, + 50.113137800000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T10:58:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113516933, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6972467, + 50.1261847 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T10:57:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113516869, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6919746, + 50.1304932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-08T10:57:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113516857, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "deletion:node/9235082800": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4303868, + 46.9522689 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "oliverhawes", + "uid": "665469", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T10:56:15Z", + "reviewed_features": [], + "create": 1, + "modify": 14, + "delete": 0, + "area": 0.000185166408930015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113516827, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 24, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28425835, + 55.87046315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T10:50:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113516557, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6887285, + 50.128598 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-08T10:01:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113514618, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6883402, + 50.127577 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T09:58:27Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00001507774703998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113514495, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.689585399999999, + 50.130203949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-08T09:52:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.76957039998735e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113514247, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5852588, + 51.1775497 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "katarina ugljevarević", + "uid": "14420839", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T09:42:22Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113513805, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6886929, + 50.1287807 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T08:49:37Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000274408653180093, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113511570, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 6, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91373375, + 51.0149064 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T23:22:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113499377, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.6966002, + 26.5307092 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PlayzinhoAgro", + "uid": "10460642", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-07T22:18:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113498268, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8143327, + -5.0923526 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PlayzinhoAgro", + "uid": "10460642", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-07T22:17:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113498240, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8404302, + -5.0966517 + ] + } + }, + { + "type": "Feature", + "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": "2021-11-07T19:40:58Z", + "reviewed_features": [], + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.0000926318724800438, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113493880, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.36533075, + 51.6749899 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-07T19:32:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113493657, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6537454, + 50.9009087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T19:07:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113492944, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7195112, + 50.8516306 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T18:29:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113491702, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5463604, + 53.0115865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #street_lighting_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T18:16:06Z", + "reviewed_features": [], + "create": 8, + "modify": 17, + "delete": 0, + "area": 0.00000745318367998207, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113491295, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "street_lighting_assen", + "answer": 61, + "imagery": "osm", + "language": "en", + "move:node/-1": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.546791450000001, + 53.0118218 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T18:14:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113491238, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5486318, + 53.0134666 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-07T17:18:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113489356, + "host": "127.0.0.1:1234", + "theme": "ghostbikes", + "answer": 2, + "imagery": "CartoDB.Positron", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3435891, + 50.8314757 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T17:13:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113489134, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7124507, + 50.8657342 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-07T16:51:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113488340, + "host": "127.0.0.1:1234", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1439541, + 51.1716062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T14:14:41Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000417737522469978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113481936, + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 19, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57651145, + 53.01670355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T13:43:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113480631, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5695252, + 53.017952 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gtaro", + "uid": "2973154", + "editor": "MapComplete 0.11.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-07T13:26:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 3.45720000041099e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113480016, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toilets", + "answer": 5, + "imagery": "osm", + "language": "fr", + "move:node/9233019525": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0322978, + 49.0182547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Danysan95", + "uid": "4425563", + "editor": "MapComplete 0.11.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T12:05:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.03412000078743e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113477074, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7177802, + 44.351625049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T09:43:02Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113472305, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2334872, + 50.7377122 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T01:09:51Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000298279099999223, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113465263, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2084272499999997, + 51.220085499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MaximusIT", + "uid": "132225", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T22:49:13Z", + "reviewed_features": [], + "create": 8, + "modify": 29, + "delete": 0, + "area": 0.00000619698200001883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113463623, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 42, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.35385915, + 46.4992565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T22:46:24Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.03423999998362e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113463553, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.992285, + 48.498860699999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T22:39:48Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000420592103999792, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113463449, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.996022100000001, + 48.501749700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T15:29:08Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113450975, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5389581, + 51.2419872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "quelgir", + "uid": "13293058", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T15:17:55Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00145729828518017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113450551, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7148547499999998, + 42.210143200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-06T14:30:32Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113448373, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 11, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5614855, + 53.0029268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-06T12:46:37Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000414945458399997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113444561, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.6716799, + 44.764731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cerritus", + "uid": "12919", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T11:27:52Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000470778397499989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113442152, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 19, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9823037, + 55.606332050000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cerritus", + "uid": "12919", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-06T09:37:57Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000129510835199958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113438716, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9923348, + 55.611163899999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Acheloo", + "uid": "11366923", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T09:30:58Z", + "reviewed_features": [], + "create": 0, + "modify": 83, + "delete": 0, + "area": 0.00124839668159998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113438500, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 121, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.2590062, + 40.93136005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T22:34:25Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113429453, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7280077, + 51.0445407 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T22:10:53Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000410808536999299, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113428932, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 12, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.642136449999999, + 44.72005035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T22:07:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000102794778700148, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113428858, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.64026185, + 44.71636225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T22:06:06Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.16673200007942e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113428835, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.65099, + 44.71412565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MaximusIT", + "uid": "132225", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T22:04:13Z", + "reviewed_features": [], + "create": 6, + "modify": 15, + "delete": 0, + "area": 0.0000260164897500148, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113428798, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 33, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.35358545, + 46.498667350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cerritus", + "uid": "12919", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T21:52:59Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 6.98022400003523e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113428563, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.975145300000001, + 55.597958199999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T21:35:55Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.000480059839139946, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113428090, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 28, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.678854300000001, + 44.754301749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MaximusIT", + "uid": "132225", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T20:45:16Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.48158900018126e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113426608, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.34900455, + 46.500302649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cerritus", + "uid": "12919", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T18:24:33Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.000473449057229855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113421595, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 24, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.98136865, + 55.60443215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cerritus", + "uid": "12919", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T17:00:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000306219843099754, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113418491, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.97096985, + 55.60089265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Bodhisattwa", + "uid": "2876061", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T15:22:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000145691423759975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113413987, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 88.3540677, + 22.57377235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T14:30:32Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113412065, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "street_lighting", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5494963, + 53.0001853 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T14:22:58Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.0000378498970000387, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113411796, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 14, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.434616650000001, + 46.949178700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hfs", + "uid": "9607", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T13:55:26Z", + "reviewed_features": [], + "create": 0, + "modify": 68, + "delete": 0, + "area": 0.000403383526039839, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113410685, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 115, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.06510535, + 52.3957008 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.11.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": "2021-11-05T13:44:53Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.38071999830083e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113410204, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 2, + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5972038, + -34.645062249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tom Callens", + "uid": "14405801", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T13:37:55Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113409895, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9134751, + 51.2275968 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T13:35:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113409798, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1439541, + 51.1716062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T13:15:53Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113409011, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5640763, + 53.0198777 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T12:31:10Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0000701146874999973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113407314, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "en", + "move:node/4568201391": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4240155, + 46.939158649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "quelgir", + "uid": "13293058", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T11:53:54Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000546384102600114, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113405992, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8171891000000002, + 41.98195925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mannivu", + "uid": "1950277", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T11:15:15Z", + "reviewed_features": [], + "create": 0, + "modify": 41, + "delete": 0, + "area": 0.0000612309076399951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113404377, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 64, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6414625, + 45.5027999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T11:14:54Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00063046333229992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113404365, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.75107785, + 48.8108462 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tom Callens", + "uid": "14405801", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T10:51:47Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113403407, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9132451, + 51.2274674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T09:58:57Z", + "reviewed_features": [], + "create": 0, + "modify": 81, + "delete": 0, + "area": 0.000460347335160025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113401156, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 131, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.63869095, + 44.7081696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sabas88", + "uid": "454589", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T09:39:14Z", + "reviewed_features": [], + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.0000227984566499867, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113400546, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 46, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.935956149999999, + 44.40689865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T09:12:45Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.04255999983614e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113399744, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl", + "move:node/9223875638": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2304059499999997, + 51.2099597 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "kobevandeweerdt", + "uid": "14408432", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T08:06:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000101793449800139, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113397481, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.226562299999999, + 50.96279705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T21:19:11Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 4.74588839993215e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113386555, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 15, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44229925, + 46.9489906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T20:33:11Z", + "reviewed_features": [], + "create": 13, + "modify": 23, + "delete": 0, + "area": 0.00000109573694998512, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113385218, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 40, + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22910945, + 41.44735275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T19:22:17Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000196991630000178, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113382487, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 9, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.392894, + 51.20707575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T19:15:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000507672233999808, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113382251, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.50317545, + 48.75473 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T16:12:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000105067423199965, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113376351, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1353594, + 51.1818748 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T15:56:32Z", + "reviewed_features": [], + "create": 95, + "modify": 18, + "delete": 0, + "area": 0.00000751217193001292, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113375792, + "host": "127.0.0.1:1234", + "move": 14, + "theme": "grb", + "import": 16, + "imagery": "AGIV10cm", + "language": "en", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20497705, + 51.18472965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T15:56:22Z", + "reviewed_features": [], + "create": 9, + "modify": 0, + "delete": 0, + "area": 2.10118049999207e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113375786, + "host": "127.0.0.1:1234", + "theme": "grb", + "answer": 1, + "import": 1, + "imagery": "AGIV10cm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20557645, + 51.18384435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T15:55:06Z", + "reviewed_features": [], + "create": 22, + "modify": 1, + "delete": 0, + "area": 0.00000126567441000353, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113375744, + "host": "127.0.0.1:1234", + "theme": "grb", + "answer": 2, + "import": 4, + "imagery": "AGIV10cm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20416905, + 51.18382885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T15:51:05Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000123591220899982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113375602, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 22, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.486115600000002, + 48.725182149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T15:50:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000380710458800614, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113375570, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "nl", + "move:node/9223875638": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2244893, + 51.2115434 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T15:21:59Z", + "reviewed_features": [], + "create": 229, + "modify": 22, + "delete": 0, + "area": 0.00000428556856002004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113374469, + "host": "127.0.0.1:1234", + "move": 16, + "theme": "grb", + "answer": 2, + "import": 18, + "imagery": "osm", + "language": "en", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2041749499999996, + 51.1829392 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T15:11:15Z", + "reviewed_features": [], + "create": 6, + "modify": 4, + "delete": 0, + "area": 0.0012632808480001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113374140, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 11, + "imagery": "CartoDB.Voyager", + "language": "en", + "move:node/9223995072": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4550518, + 46.9602491 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T15:09:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.20268240002105e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113374077, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "sidewalks", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2178952, + 51.2148113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T14:41:06Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.0000372942551800002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113373022, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 14, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 7, + "move:node/9223917538": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2244893, + 51.21157615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.11.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": "2021-11-04T12:47:13Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00575372257911075, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113368653, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 11, + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.648328750000005, + -34.651680850000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T12:18:50Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00660576879837093, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113367547, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 1, + "import": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.083827149999999, + 50.78122465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T11:00:44Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000389650912310169, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113364948, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1987681500000003, + 51.19621705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T10:54:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113364737, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4177076, + 46.9393474 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T08:23:47Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000158639320000227, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113360279, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4288396, + 46.9526135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T01:41:04Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113354339, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0106851, + 51.005699 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T01:06:12Z", + "reviewed_features": [], + "create": 7, + "modify": 11, + "delete": 0, + "area": 9.42359399993855e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113353891, + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 3, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21712535, + 51.214556 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T00:31:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113353572, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3507453, + 50.8536834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T22:09:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113351309, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3499349, + 50.8533748 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T21:58:13Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000629558460639741, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113351051, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 13, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.63322065, + 48.8411258 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T21:29:10Z", + "reviewed_features": [], + "create": 5, + "modify": 15, + "delete": 0, + "area": 4.10042819998336e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113350305, + "host": "127.0.0.1:1234", + "move": 13, + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.219522, + 51.21604535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T20:06:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113347810, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8604582, + 50.99566 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T20:02:05Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000501468055199548, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113347649, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.289834, + 41.610439 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T16:06:05Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113339240, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1775754, + 51.1128633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T15:11:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113337126, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5803687, + 53.2510803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 6, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T15:08:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.46969999997495e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113337023, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "imagery": "osm", + "language": "nl", + "move:node/8771441240": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20418225, + 51.18284165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T15:03:06Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.000228111346560001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113336834, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 14, + "imagery": "CartoDB.Voyager", + "language": "en", + "move:node/9221540197": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4392947, + 46.95332115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T14:40:45Z", + "reviewed_features": [], + "create": 13, + "modify": 1, + "delete": 0, + "area": 3.19596119996116e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113335939, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 9, + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2397780000000003, + 41.43957465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T14:13:01Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113334874, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.148393, + 51.1531118 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T12:56:10Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0000275477909299911, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113331345, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 14, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44867075, + 46.96296565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T12:06:27Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113329273, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2254811, + 51.2084386 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T12:03:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113329108, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3413453, + 44.380366 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ClickKlack", + "uid": "90262", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T12:01:13Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.0000891666066899877, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113329026, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 83, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.67208595, + 52.10917795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ClickKlack", + "uid": "90262", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T11:52:01Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000506066526599765, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113328646, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 11, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.665308750000001, + 52.114730699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T11:38:18Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00119183980211994, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113328015, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "aed", + "imagery": "osm", + "language": "nl", + "move:node/8789200971": "improve_accuracy", + "move:node/8823682990": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20680885, + 51.2305336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-02T22:41:02Z", + "reviewed_features": [], + "create": 28, + "modify": 51, + "delete": 0, + "area": 3.88931200000511e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113305401, + "host": "127.0.0.1:1234", + "move": 48, + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2170325, + 51.2149832 + ] + } + }, + { + "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": "2021-11-02T21:04:36Z", + "reviewed_features": [], + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.0289055600068687, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113302704, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2580250499999996, + 48.74150775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stk_ulm", + "uid": "43217", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-02T19:58:44Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.00149967788543997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113300229, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 49, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.982036650000001, + 48.4100799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Pablo667", + "uid": "13166651", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-02T16:02:36Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113291887, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.1995771, + 44.419088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-02T13:31:34Z", + "reviewed_features": [], + "create": 2, + "modify": 12, + "delete": 0, + "area": 0.0000017263743100007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113284886, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 18, + "imagery": "CartoDB.Voyager", + "language": "en", + "move:node/9218593524": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42972365, + 46.953410950000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/e1190515ff5f8847beec6eb9a1b788bb/raw/aa9d3ed1959529eb3fbefe1857cc8616f53b7ccf/temp.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-02T13:13:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000156795455999889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113284013, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://gist.githubusercontent.com/joostschouppe/e1190515ff5f8847beec6eb9a1b788bb/raw/aa9d3ed1959529eb3fbefe1857cc8616f53b7ccf/temp.json", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30281045, + 50.833947699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-02T08:20:35Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000312247542800216, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113270690, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.433689749999999, + 46.9498844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T23:30:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113259034, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8641211, + 51.0331532 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T23:29:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113259014, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8595969, + 51.0339334 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cmap99", + "uid": "13524250", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T21:11:21Z", + "reviewed_features": [ + { + "id": "node-2105271928", + "user": "PieterVanderVennet" + } + ], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000583447344000255, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113255395, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.10136625, + 53.2669087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skfd", + "uid": "205595", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T19:18:10Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113251293, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "deletion": 1, + "language": "en", + "deletion:node/2442953886": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 30.6013954, + 50.4284077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skfd", + "uid": "205595", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T19:04:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000119044173599518, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113250793, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 30.59795485, + 50.429091 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-01T17:20:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113247252, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.615215, + 50.8515194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T17:04:34Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 5.90400000192051e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113246649, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "charging_stations", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "nl", + "move:node/9216683715": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18631465, + 50.815494900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-01T15:24:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113242289, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1853377, + 50.814548 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-01T14:59:26Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 7.5600000014029e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113241037, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "personal", + "answer": 7, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18632335, + 50.8154678 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nicolelaine", + "uid": "2997398", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T14:02:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113238301, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9102199, + 53.5662632 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-01T13:39:08Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 3.06720000012044e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113237148, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "charging_stations", + "answer": 8, + "imagery": "AGIV10cm", + "language": "en", + "move:node/9216279358": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6454225, + 50.77147625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.11.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": "2021-11-01T13:27:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000236193990540127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113236656, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 2, + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6672584, + -34.659333950000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T12:28:39Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0237610681327001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113234111, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1128401, + 41.51369795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T10:11:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113227669, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.1728093, + 22.2773452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nicolelaine", + "uid": "2997398", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T09:32:32Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.000173590895479989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113225986, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.90980745, + 53.5710328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-01T08:51:49Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113224286, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.1728093, + 22.2773452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "ClickKlack", + "uid": "90262", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T07:36:09Z", + "reviewed_features": [], + "create": 0, + "modify": 273, + "delete": 0, + "area": 0.000983084450800187, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113220970, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 519, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.66709775, + 52.1275933 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-31T23:36:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115624437, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -84.4255382, + 33.6415534 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-31T16:19:45Z", + "reviewed_features": [], + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.0000726576689999328, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115615786, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0331259500000005, + 51.077133599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-31T14:10:25Z", + "reviewed_features": [], + "create": 13, + "modify": 20, + "delete": 0, + "area": 0.00000169535327999774, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115610774, + "host": "mapcomplete.osm.be", + "move": 17, + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74853965, + 51.1598178 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-31T14:03:55Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00000742547175000162, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115610573, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "split": 3, + "theme": "cyclestreets", + "answer": 2, + "imagery": "osm", + "language": "nl", + "relation-fix": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00505115, + 51.15137145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-31T13:30:13Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115609231, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0219657, + 51.1135031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-31T13:24:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115609068, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0101024, + 51.1280572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-31T11:27:04Z", + "reviewed_features": [], + "create": 11, + "modify": 0, + "delete": 0, + "area": 0.000256938011010081, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115604832, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 4, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 11, + "change_within_25m": 2, + "change_within_50m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.80811405, + 48.018068650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-31T09:50:29Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 1.45241800005193e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115600877, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1986315999999997, + 51.18606285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "davidtorcivia", + "uid": "1798584", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T23:20:15Z", + "reviewed_features": [], + "create": 13, + "modify": 17, + "delete": 0, + "area": 2.73115150007338e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115586324, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 24, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 33, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.91450735000001, + 40.704855550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T22:53:05Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000348926490000952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115585682, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0365388499999995, + 51.1979716 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/xliving/xliving.github.io/main/OSM/amenity-recycling/recycling-organic/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T22:15:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.02293982994424, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115584740, + "host": "mapcomplete.osm.be", + "theme": "gh://xliving/xliving.github.io/main/osm/amenity-recycling/recycling-organic/mapcomplete.json", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34709885, + 51.1590587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-30T21:53:47Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 9.46198400003329e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115584260, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2096115999999997, + 41.5417711 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "davidtorcivia", + "uid": "1798584", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-30T21:38:35Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 9.66194999878765e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115583852, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.91482095, + 40.705006350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-30T18:45:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115578339, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7675618, + -33.489466 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T15:51:57Z", + "reviewed_features": [], + "create": 124, + "modify": 0, + "delete": 0, + "area": 0.00000174049764000254, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115571697, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1235882, + 51.223730149999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T10:25:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115556947, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9375362, + 44.4243671 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T10:21:22Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 1, + "area": 2.61030000015409e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115556765, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "change_over_5000m": 2, + "change_within_25m": 4, + "deletion:node/9378806868": "Addition was buggy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.055233000000000004, + 40.11256805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T10:20:56Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115556736, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 4, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0552669, + 40.1125873 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "emilinfrance", + "uid": "14568184", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-29T19:51:11Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000752628239999239, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115535515, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3802349, + 44.485122700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T18:34:47Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115533103, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 12, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0399204, + 51.0704084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-29T17:13:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000303569155999916, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115530115, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8099207, + -32.914557099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-29T16:19:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115527664, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.0076495, + -34.3861726 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T16:09:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115527316, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "imagery": "osm", + "language": "nl", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.4038183, + 40.3598926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "emilinfrance", + "uid": "14568184", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-29T15:00:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0447987956217506, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115524073, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89545075, + 44.49052695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mannivu", + "uid": "1950277", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T13:45:09Z", + "reviewed_features": [], + "create": 0, + "modify": 68, + "delete": 0, + "area": 0.000316713272790073, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115520700, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 103, + "imagery": "osm", + "language": "it", + "change_within_1000m": 12, + "change_within_5000m": 91 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.644962150000001, + 45.50006995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T13:27:02Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115519801, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "ghostbikes", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0898866, + 51.0978985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Arickx", + "uid": "9282195", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #Composthoekjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T12:28:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115517105, + "host": "mapcomplete.osm.be", + "theme": "composthoekjes", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2242486, + 51.2195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pablo667", + "uid": "13166651", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-29T12:12:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115516355, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.4807742, + 41.8267555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T12:02:18Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.00000494970367999776, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115515838, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 13, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4, + "change_within_50m": 3, + "change_within_100m": 3, + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0425293, + 51.0706672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Arickx", + "uid": "9282195", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #Composthoekjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T10:57:54Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.000569822034119916, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115512626, + "host": "mapcomplete.osm.be", + "theme": "composthoekjes", + "imagery": "osm", + "language": "nl", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2275678, + 51.20081535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "emilinfrance", + "uid": "14568184", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-29T10:41:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115511711, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7179091, + 44.4285732 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #Slipways", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T04:58:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115498674, + "host": "mapcomplete.osm.be", + "theme": "slipways", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.6806049, + 26.4936961 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T03:13:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.05596809998062e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115496293, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.60873964999999, + 26.525312749999998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T22:43:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115491537, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3392289, + 50.8879395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9372994636", + "osm_id": 9372994636, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T21:01:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115488738, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "binoculars", + "language": "nl", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0213501, + 51.1038032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Árboles chilenos en el mundo", + "uid": "9040761", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T20:42:23Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.000494673538280127, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115488123, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 7, + "imagery": "osm", + "language": "en", + "move:node/9374436265": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.56920704999999, + -33.4111445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-28T20:26:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000283547141998578, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115487638, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_1000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.6307208, + 26.53397305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T19:42:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115486160, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.2659019, + -33.0009287 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Silence37", + "uid": "12430749", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T18:24:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115483390, + "host": "mapcomplete.osm.be", + "theme": "hackerspaces", + "answer": 2, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.5750335, + 48.1204593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T16:10:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.03474999877717e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115477973, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.49821474999999, + 11.6087107 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T14:28:58Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000584305575399665, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115473836, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.5085115, + 11.61178825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9372994742", + "osm_id": 9372994742, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "amenity": "binoculars" + } + }, + { + "url": "node-9372994636", + "osm_id": 9372994636, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-28T12:27:35Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000002318997699992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115468613, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "binoculars", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0192446, + 51.103527850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-28T12:22:50Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115468391, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "natuurpunt", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0147948, + 51.1018866 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-28T12:19:10Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.000251523361320056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115468231, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "nature", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 5, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01486665, + 51.100987 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-28T11:50:29Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115466855, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "ghostbikes", + "answer": 2, + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0264168, + 51.0799001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "emilinfrance", + "uid": "14568184", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T10:04:03Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115461954, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7158357, + 44.4269075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "emilinfrance", + "uid": "14568184", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T09:55:27Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115461617, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7157232, + 44.4252561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "emilinfrance", + "uid": "14568184", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T08:43:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115458708, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7170669, + 44.4277081 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T20:45:19Z", + "reviewed_features": [], + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.000321190203570045, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115443137, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 44, + "imagery": "osm", + "language": "en", + "change_within_5000m": 43 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53595945, + 44.38239165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-27T20:20:17Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115442498, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0375493, + 51.06536 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T17:55:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.06889999997148e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115437807, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 2, + "move:node/1625214199": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.037392, + 51.06487605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T17:38:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.37799800007639e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115437165, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0362709500000005, + 51.0703174 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-27T17:33:40Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.96988900003651e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115436960, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2232976, + -39.83408465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T16:38:02Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.92588040003519e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115434625, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04050595, + 51.0715013 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T16:06:46Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115433386, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "imagery": "osm", + "deletion": 1, + "language": "en", + "change_within_100m": 1, + "deletion:node/1625270206": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0401059, + 51.0737208 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T16:00:08Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000058615536299816, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115433128, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "answer": 3, + "imagery": "osm", + "language": "nl", + "change_within_500m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.041923649999999, + 51.069277549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T15:54:46Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000142851260639982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115432966, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "nl", + "change_within_100m": 5, + "change_within_500m": 14, + "change_within_1000m": 3, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0355138, + 51.0688983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T15:42:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000016328166000005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115432598, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_500m": 3, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.034516099999999, + 51.0681791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T14:34:26Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115429817, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "answer": 7, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0401766, + 51.0554902 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T14:10:11Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.00048021905250004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115428764, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 3, + "imagery": "cyclosm", + "language": "en", + "change_over_5000m": 5, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04987715, + 51.0356207 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T13:43:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.28924999975283e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115427632, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8858149500000003, + 51.00701005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T08:48:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.36189199990278e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115414828, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 6, + "imagery": "osm", + "language": "nl", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1733485, + 41.263031999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8853544373", + "osm_id": 8853544373, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853544357", + "osm_id": 8853544357, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853544359", + "osm_id": 8853544359, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853544358", + "osm_id": 8853544358, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T08:36:10Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 2.67567299996058e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115414383, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 9, + "imagery": "HDM_HOT", + "language": "ca", + "change_within_25m": 2, + "change_within_50m": 1, + "change_within_100m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23799335, + 41.4822347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T06:13:24Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000317774547199931, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115410069, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5419114, + 44.3783434 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-27T02:56:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000102061975399402, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115405896, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.3182189, + 38.87447405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-27T02:33:24Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115405642, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3687606, + 50.8671268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-27T01:18:08Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.0000514332167799604, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115404835, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 35, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.31797875, + 38.897699200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-27T01:14:59Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 3.71999991215105e-12, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115404805, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "drinking_water", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "move:node/9368735169": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.3306461, + 38.871408 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T21:44:45Z", + "reviewed_features": [], + "create": 27, + "modify": 0, + "delete": 0, + "area": 1.3858944000163e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115401224, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 5, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0058344, + 51.124421600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T17:13:05Z", + "reviewed_features": [], + "create": 262, + "modify": 26, + "delete": 0, + "area": 0.0000027183597000012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115393520, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "answer": 47, + "import": 37, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_within_25m": 8, + "change_within_50m": 9, + "change_within_100m": 23, + "change_within_500m": 44 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66020395, + 51.079127099999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T17:08:38Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 3.83989999991271e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115393404, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 11, + "imagery": "osm", + "language": "nl", + "add-image": 3, + "change_over_5000m": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99920765, + 41.8101906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T15:12:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.55944000022799e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115389875, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_50m": 1, + "move:node/8979968069": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66183365, + 51.0730304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-26T14:52:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000050823335680013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115389171, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37699035, + 50.863454700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-26T14:23:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115388271, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.381861, + 50.8463349 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 5, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-26T14:21:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115388203, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4352893, + 50.8938546 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T13:13:55Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115386087, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0870269, + 41.311761 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T13:04:01Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115385781, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6528925, + 51.0791451 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T10:49:20Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115382020, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6508665, + 51.7439416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T10:12:35Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115380975, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1633472, + 41.3757814 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-26T06:51:31Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.000820622657959962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115377293, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.50021035, + 11.6132235 + ] + } + }, + { + "type": "Feature", + "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": "2021-12-25T21:48:18Z", + "reviewed_features": [], + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.000440551910399929, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115371987, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1568084, + 52.4087429 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-25T21:16:48Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115371526, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16366, + 49.6172427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-25T18:54:28Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000316806016319993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115368572, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 31, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1551789, + 50.7509053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-25T16:49:05Z", + "reviewed_features": [], + "create": 0, + "modify": 92, + "delete": 0, + "area": 0.000514109295999903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115365860, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 285, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1619254999999997, + 50.7443318 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chris-ren", + "uid": "697953", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-25T16:35:33Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.00414073945919954, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115365501, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "imagery": "osm", + "language": "fr", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5757846, + 47.42670615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chris-ren", + "uid": "697953", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-25T16:30:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115365357, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "fr", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5254179, + 47.3396845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-25T13:52:14Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115360983, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6286925, + 51.7431111 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-25T12:50:06Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115359493, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6307019, + 51.742906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-25T11:47:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115357919, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2362547, + 52.7961969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-25T09:09:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115354401, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 6, + "imagery": "osm", + "language": "nl", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8357021, + 41.5925663 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-25T08:58:30Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115354209, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8404278, + 41.5941748 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-25T08:48:44Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000278413420000313, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115354036, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8372871000000002, + 41.59676775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chris-ren", + "uid": "697953", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-25T08:09:41Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115353415, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5238085, + 47.428494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-24T17:16:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0695802296159983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115342756, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 77.6498937, + 8.259154800000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-24T15:46:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 9.63199999966577e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115340330, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "imagery": "osm", + "language": "en", + "move:node/9364014890": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20978885, + 41.541512600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-24T13:38:29Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.86939400001372e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115336696, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 9, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_within_25m": 6, + "change_within_50m": 2, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2787979, + 41.5986513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-24T12:47:44Z", + "reviewed_features": [], + "create": 0, + "modify": 57, + "delete": 0, + "area": 0.0165042111236996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115335124, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 109, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.22361225, + 13.0179494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8853143435", + "osm_id": 8853143435, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853187263", + "osm_id": 8853187263, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853176479", + "osm_id": 8853176479, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853109708", + "osm_id": 8853109708, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853143437", + "osm_id": 8853143437, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853109707", + "osm_id": 8853109707, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853109702", + "osm_id": 8853109702, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "PabloDíaz", + "uid": "14309824", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-24T08:59:11Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.00000327156839999523, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115326275, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 17, + "imagery": "HDM_HOT", + "language": "ca", + "add-image": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2375508, + 41.46611805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Arickx", + "uid": "9282195", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #Composthoekjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T21:27:43Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115313460, + "host": "mapcomplete.osm.be", + "theme": "composthoekjes", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.235192, + 51.2103063 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T19:00:18Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115310002, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "change_within_500m": 1, + "deletion:node/1603226230": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2150101, + 51.2155688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-9", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T13:28:59Z", + "reviewed_features": [], + "create": 34, + "modify": 85, + "delete": 3, + "area": 9.52658559999191e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115298834, + "host": "pietervdvn.github.io", + "move": 93, + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 20, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4776487, + 51.027484900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 91, + "name": "Motorway/trunk geometry modified" + } + ], + "tags": [], + "features": [ + { + "url": "way-102457948", + "name": "Anna Salai (Mount Road)", + "osm_id": 102457948, + "reasons": [ + 91 + ], + "version": 9, + "primary_tags": { + "highway": "trunk" + } + } + ], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-23T11:39:38Z", + "reviewed_features": [], + "create": 0, + "modify": 75, + "delete": 0, + "area": 0.00582735380715918, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115294562, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 184, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.25937895, + 13.060308 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T10:06:36Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115290470, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1471063, + 41.9707682 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T09:41:20Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115289364, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1430623, + 41.9716975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T08:52:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115287407, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0887882, + 41.9778827 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-23T08:49:43Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000237549714700171, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115287307, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 22, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.24210095, + 13.053151549999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T08:31:12Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00000679446404998686, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115286627, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09066265, + 41.97762555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T08:29:23Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000419762249998188, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115286554, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 15, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_within_25m": 17 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09062605, + 41.977316200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T06:00:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000132291698999807, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115281610, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.543097100000001, + 44.38112525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-9", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T02:09:07Z", + "reviewed_features": [], + "create": 162, + "modify": 28, + "delete": 40, + "area": 0.0000010486593700026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115277502, + "host": "127.0.0.1:1234", + "move": 35, + "theme": "grb", + "import": 22, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 10, + "change_over_5000m": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09873685, + 51.065267250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-22T23:03:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115275144, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2401089, + -39.8232653 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-22T20:37:13Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000825824016000231, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115271670, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5384242, + 44.382216299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-22T13:29:34Z", + "reviewed_features": [], + "create": 6, + "modify": 3, + "delete": 0, + "area": 0.0000145983046000297, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115256236, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.639277700000001, + 51.744469699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-22T13:16:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115255765, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2760364, + 42.2890803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-22T10:14:26Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0461699612927603, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115247011, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.2660212, + 10.86966945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-22T09:10:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115243413, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0781151, + 42.5270775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-22T07:31:44Z", + "reviewed_features": [], + "create": 311, + "modify": 221, + "delete": 0, + "area": 0.0000877346489599907, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115239186, + "host": "mapcomplete.osm.be", + "move": 169, + "theme": "grb", + "import": 39, + "imagery": "osm", + "language": "nl", + "conflation": 70 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1078504999999996, + 50.966104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-22T07:27:43Z", + "reviewed_features": [], + "create": 0, + "modify": 27, + "delete": 0, + "area": 0.870963111391499, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115239005, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 33, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.18809519999999, + 11.19922645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-21T23:15:26Z", + "reviewed_features": [], + "create": 98, + "modify": 64, + "delete": 0, + "area": 0.00000591457594997315, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115228819, + "host": "127.0.0.1:1234", + "move": 53, + "theme": "grb", + "answer": 3, + "import": 7, + "imagery": "AGIV", + "language": "en", + "conflation": 22, + "change_over_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14305565, + 51.01165035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koebilee", + "uid": "538582", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T21:46:27Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 8.78083999933126e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115226904, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 7, + "imagery": "swisstopo_swissimage", + "language": "de", + "move:node/9356644189": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6422089500000006, + 46.3115117 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T19:28:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.4231999998678e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115222993, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2278505, + -39.83362795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-21T16:12:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115216938, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5562805, + 53.0189696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T15:12:46Z", + "reviewed_features": [], + "create": 427, + "modify": 193, + "delete": 0, + "area": 0.000515763326300099, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115214557, + "host": "mapcomplete.osm.be", + "move": 115, + "theme": "grb", + "import": 77, + "imagery": "osm", + "language": "nl", + "conflation": 46 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09277885, + 50.9710227 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T15:07:30Z", + "reviewed_features": [], + "create": 181, + "modify": 117, + "delete": 0, + "area": 0.0000108078139200151, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115214380, + "host": "mapcomplete.osm.be", + "move": 95, + "theme": "grb", + "import": 22, + "imagery": "osm", + "language": "nl", + "conflation": 42 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1077928999999997, + 50.9685239 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "landscapemapper", + "uid": "220206", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T13:23:52Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115210315, + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.693608, + 47.2161791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-21T13:06:13Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 4.11781000040723e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115209594, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87233745, + 50.76025945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T12:22:11Z", + "reviewed_features": [], + "create": 260, + "modify": 103, + "delete": 0, + "area": 0.0000283443856300338, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115207937, + "host": "mapcomplete.osm.be", + "move": 78, + "theme": "grb", + "import": 14, + "imagery": "osm", + "language": "nl", + "conflation": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13927315, + 50.917654150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-21T11:58:28Z", + "reviewed_features": [], + "create": 14, + "modify": 37, + "delete": 0, + "area": 0.0000026976315600045, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115206824, + "host": "mapcomplete.osm.be", + "move": 35, + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4863368999999995, + 51.037231750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-21T11:41:55Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00000547530186000244, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115205980, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 22, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4726941, + 51.037608750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T10:40:41Z", + "reviewed_features": [], + "create": 404, + "modify": 641, + "delete": 0, + "area": 0.0775934234689485, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115203113, + "host": "mapcomplete.osm.be", + "move": 522, + "theme": "grb", + "import": 40, + "imagery": "osm", + "language": "nl", + "conflation": 226 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39684605, + 50.90379795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-21T06:08:56Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.0000408003655500367, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115191464, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53494615, + 44.38038435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-20T20:47:44Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000279699532000081, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115181170, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5377238, + 44.383272 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-20T16:19:03Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00183103467912001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115173185, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 12, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.07914, + 9.8945045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-20T15:21:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115170960, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6381227, + 51.7454734 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JannikK", + "uid": "10114379", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-20T11:32:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000239856878000336, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115161944, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.005212700000001, + 53.49737685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-20T11:27:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000121335276999915, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115161754, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.4937184, + 11.61568295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-20T10:36:01Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00616071954890001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115159362, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 11, + "change_over_5000m": 10, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2071301500000002, + 51.2535671 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DJ Frans Zeus", + "uid": "14670148", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T23:50:34Z", + "reviewed_features": [], + "create": 3, + "modify": 14, + "delete": 0, + "area": 1.97873100023525e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115142549, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 22, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_over_5000m": 3, + "change_within_25m": 13, + "change_within_50m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2216309499999998, + 51.18819825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "taxi301", + "uid": "657596", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T22:56:06Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 3.9611260000226e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115141856, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 12, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.62637565, + 54.1546701 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "taxi301", + "uid": "657596", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T21:44:06Z", + "reviewed_features": [], + "create": 3, + "modify": 16, + "delete": 0, + "area": 0.0000425462935300082, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115140412, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 25, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.596164349999999, + 54.16679965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T19:56:11Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.000105185438050006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115137973, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 25, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.543022049999999, + 44.385188549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T19:22:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115137129, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2251203, + 51.2147858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9351149735", + "osm_id": 9351149735, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812673684", + "osm_id": 8812673684, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812673640", + "osm_id": 8812673640, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896456", + "osm_id": 8812896456, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812673683", + "osm_id": 8812673683, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896453", + "osm_id": 8812896453, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654358", + "osm_id": 8812654358, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654405", + "osm_id": 8812654405, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654407", + "osm_id": 8812654407, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896435", + "osm_id": 8812896435, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896428", + "osm_id": 8812896428, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896432", + "osm_id": 8812896432, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896442", + "osm_id": 8812896442, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896423", + "osm_id": 8812896423, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896422", + "osm_id": 8812896422, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812630483", + "osm_id": 8812630483, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654402", + "osm_id": 8812654402, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654406", + "osm_id": 8812654406, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956534", + "osm_id": 8812956534, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896426", + "osm_id": 8812896426, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896425", + "osm_id": 8812896425, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654366", + "osm_id": 8812654366, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896455", + "osm_id": 8812896455, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896454", + "osm_id": 8812896454, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896441", + "osm_id": 8812896441, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896433", + "osm_id": 8812896433, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812673639", + "osm_id": 8812673639, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654401", + "osm_id": 8812654401, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896418", + "osm_id": 8812896418, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956533", + "osm_id": 8812956533, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896419", + "osm_id": 8812896419, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654403", + "osm_id": 8812654403, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654400", + "osm_id": 8812654400, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896452", + "osm_id": 8812896452, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896434", + "osm_id": 8812896434, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896431", + "osm_id": 8812896431, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896424", + "osm_id": 8812896424, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896443", + "osm_id": 8812896443, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654360", + "osm_id": 8812654360, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896421", + "osm_id": 8812896421, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654362", + "osm_id": 8812654362, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654388", + "osm_id": 8812654388, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654408", + "osm_id": 8812654408, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799875", + "osm_id": 8812799875, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654365", + "osm_id": 8812654365, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654404", + "osm_id": 8812654404, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920845", + "osm_id": 8812920845, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799877", + "osm_id": 8812799877, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799874", + "osm_id": 8812799874, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799914", + "osm_id": 8812799914, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799915", + "osm_id": 8812799915, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9351171847", + "osm_id": 9351171847, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9351171846", + "osm_id": 9351171846, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896407", + "osm_id": 8812896407, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896390", + "osm_id": 8812896390, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896388", + "osm_id": 8812896388, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896375", + "osm_id": 8812896375, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799916", + "osm_id": 8812799916, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799911", + "osm_id": 8812799911, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654399", + "osm_id": 8812654399, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920847", + "osm_id": 8812920847, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920848", + "osm_id": 8812920848, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896389", + "osm_id": 8812896389, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896382", + "osm_id": 8812896382, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799872", + "osm_id": 8812799872, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799912", + "osm_id": 8812799912, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896398", + "osm_id": 8812896398, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896385", + "osm_id": 8812896385, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896406", + "osm_id": 8812896406, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896405", + "osm_id": 8812896405, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896373", + "osm_id": 8812896373, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799866", + "osm_id": 8812799866, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896317", + "osm_id": 8812896317, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799913", + "osm_id": 8812799913, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896391", + "osm_id": 8812896391, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896358", + "osm_id": 8812896358, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896396", + "osm_id": 8812896396, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896357", + "osm_id": 8812896357, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654395", + "osm_id": 8812654395, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956570", + "osm_id": 8812956570, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956568", + "osm_id": 8812956568, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956569", + "osm_id": 8812956569, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920912", + "osm_id": 8812920912, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920911", + "osm_id": 8812920911, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920846", + "osm_id": 8812920846, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799906", + "osm_id": 8812799906, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799905", + "osm_id": 8812799905, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799898", + "osm_id": 8812799898, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920914", + "osm_id": 8812920914, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920909", + "osm_id": 8812920909, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654368", + "osm_id": 8812654368, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920913", + "osm_id": 8812920913, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920915", + "osm_id": 8812920915, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956567", + "osm_id": 8812956567, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T19:18:19Z", + "reviewed_features": [], + "create": 8, + "modify": 97, + "delete": 0, + "area": 0.0000121140379400015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115137023, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 97, + "imagery": "EsriWorldImageryClarity", + "language": "ca", + "change_over_5000m": 3, + "change_within_25m": 8, + "change_within_50m": 3, + "change_within_100m": 33, + "change_within_500m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2378786, + 41.431313849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T18:18:07Z", + "reviewed_features": [], + "create": 0, + "modify": 98, + "delete": 0, + "area": 0.00536977851713997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115135141, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 98, + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0966203, + 50.88402035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T18:09:20Z", + "reviewed_features": [], + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.00967753889369986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115134880, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 30, + "language": "nl", + "change_over_5000m": 30 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09245765, + 50.9781713 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T17:55:17Z", + "reviewed_features": [], + "create": 0, + "modify": 70, + "delete": 0, + "area": 0.00204568193351992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115134486, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 140, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.076835600000001, + 50.77990585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T17:52:20Z", + "reviewed_features": [], + "create": 0, + "modify": 127, + "delete": 0, + "area": 0.00402414824516002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115134385, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 137, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07706285, + 51.0557161 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T17:52:01Z", + "reviewed_features": [], + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.000411399187120026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115134377, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 33, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.072041199999999, + 51.1896762 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T17:44:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.43817599999244e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115134119, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0692205999999995, + 51.229325200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T17:42:33Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.000217398446080028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115134083, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 82, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.056386, + 50.741288100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:35:34Z", + "reviewed_features": [], + "create": 0, + "modify": 102, + "delete": 0, + "area": 0.00516172983600002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115130254, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 103, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05535225, + 50.881675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:33:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1477, + "delete": 0, + "area": 0.000612297529559943, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115130173, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2169, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05535085, + 51.1510051 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:31:54Z", + "reviewed_features": [], + "create": 0, + "modify": 115, + "delete": 0, + "area": 0.000208794304979972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115130103, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 683, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.056055799999999, + 51.16979595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:26:49Z", + "reviewed_features": [], + "create": 0, + "modify": 520, + "delete": 0, + "area": 0.0106184303015697, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115129914, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 998, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03271185, + 50.95015785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:25:55Z", + "reviewed_features": [], + "create": 0, + "modify": 426, + "delete": 0, + "area": 0.00199921795019995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115129864, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1152, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0333419, + 51.1960075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:25:48Z", + "reviewed_features": [], + "create": 0, + "modify": 64, + "delete": 0, + "area": 0.0100713580061402, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115129859, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 326, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0113003, + 50.93909445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:25:36Z", + "reviewed_features": [], + "create": 0, + "modify": 315, + "delete": 0, + "area": 0.000470582836560063, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115129850, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 320, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0113003, + 50.7214431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T14:39:12Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000114303968460017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115128208, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 121, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0074617, + 51.02047085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T14:29:54Z", + "reviewed_features": [], + "create": 0, + "modify": 289, + "delete": 0, + "area": 0.000567303246030035, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115127935, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 509, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01136495, + 51.15163135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T14:24:46Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000113171995999957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115127772, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 55, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9894198999999997, + 51.0208131 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T14:20:17Z", + "reviewed_features": [], + "create": 0, + "modify": 52, + "delete": 0, + "area": 0.00645647482919994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115127657, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 114, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99314665, + 50.926404500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T14:17:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115127587, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "imagery": "osm", + "language": "nl", + "change_within_25m": 7, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0482153, + 42.5519041 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "milenasonneveld", + "uid": "8177639", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T13:57:10Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.000115664969779882, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115126967, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 3, + "imagery": "CartoDB.VoyagerNoLabels", + "language": "en", + "add-image": 5, + "change_over_5000m": 2, + "change_within_50m": 2, + "change_within_100m": 4, + "change_within_500m": 1, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.313724349999999, + 50.881769399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T13:47:50Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0247047926299201, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115126671, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 19, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94611245, + 51.0017509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T13:34:24Z", + "reviewed_features": [], + "create": 0, + "modify": 37, + "delete": 0, + "area": 0.0316752553179294, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115126282, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 39, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8309207499999998, + 51.02388435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T13:24:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.28939500001562e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115125961, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 37, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7238989, + 51.03324615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T13:24:53Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000186014649259994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115125958, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 35, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72549075, + 51.0481458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T13:23:08Z", + "reviewed_features": [], + "create": 0, + "modify": 163, + "delete": 0, + "area": 0.0418745345391596, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115125910, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 331, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74388765, + 50.9863243 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T13:15:19Z", + "reviewed_features": [], + "create": 0, + "modify": 44, + "delete": 0, + "area": 0.0199388102091297, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115125653, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 48, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67785335, + 50.930803350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T10:17:17Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115120491, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0227972, + 42.5473611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T10:15:20Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115120444, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.022976, + 42.547202 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T09:33:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000146485060339987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115119368, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 77.69413135, + 8.728518900000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T01:11:59Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00977634736769982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115113341, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 12, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6084390500000003, + 50.955058 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:28:53Z", + "reviewed_features": [], + "create": 0, + "modify": 176, + "delete": 0, + "area": 0.0809680902322608, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112863, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 238, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4962941499999998, + 50.9948142 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:15:06Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00271505351831998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112710, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 14, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39704555, + 50.9063546 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:13:42Z", + "reviewed_features": [], + "create": 0, + "modify": 48, + "delete": 0, + "area": 0.000101299239999971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112694, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 49, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3705561, + 50.85813235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:13:42Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00019623101589009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112693, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 21, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37193725, + 50.909577049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:11:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.31744999999187e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112656, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 50, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3783145, + 50.86094835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:04:09Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.44961900010158e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112587, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 34, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3276382499999997, + 50.851804349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:02:05Z", + "reviewed_features": [], + "create": 0, + "modify": 167, + "delete": 0, + "area": 0.0230804430227, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112561, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 349, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3542658, + 51.073802549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:00:31Z", + "reviewed_features": [], + "create": 0, + "modify": 341, + "delete": 0, + "area": 0.000852555628240051, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112552, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 395, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3298948, + 50.8824307 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Muokkaaja", + "uid": "494482", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T21:29:07Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.61560979956926e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115109624, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.8856797, + 60.26230075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T20:20:58Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000203695700499793, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115108008, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en", + "change_within_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54179325, + 44.38814875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9349382800", + "osm_id": 9349382800, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T20:13:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115107812, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "maps", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3343452, + 50.8353629 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T19:20:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.229943296983474, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115106646, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.66680015, + 11.2566755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T18:56:24Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00297176940967953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115106101, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 7, + "imagery": "AGIV", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4228078, + 50.7910295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T17:18:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115103568, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4544248, + 53.2306006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T16:56:20Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00153871843119007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115102913, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.13084415, + 8.82533365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T15:47:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115100932, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9162873, + 51.1057835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T15:44:11Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000204297345159809, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115100836, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.50242130000001, + 11.61282945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T15:24:08Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00067220943536005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115100099, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.49726534999999, + 11.6146933 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T15:14:23Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.0000283842157200328, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115099830, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.635882299999999, + 51.741542100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T14:41:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115098739, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9162873, + 51.1057835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T14:08:56Z", + "reviewed_features": [], + "create": 0, + "modify": 59, + "delete": 0, + "area": 0.00219949353200984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115097598, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 98, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.50761685, + 11.61259845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cmap99", + "uid": "13524250", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T13:11:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115095784, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.0597638, + 53.2758628 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JoeG", + "uid": "73276", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T01:37:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115077361, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 149.025668, + -35.320061 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T23:26:27Z", + "reviewed_features": [], + "create": 0, + "modify": 375, + "delete": 0, + "area": 0.0242709523681601, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115075383, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 795, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3192024, + 51.0847387 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T22:31:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115074314, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 151.2164827, + -33.8636398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kewl", + "uid": "317259", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T19:14:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115069080, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0738619, + 49.5913384 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946989138", + "osm_id": 3946989138, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992602", + "osm_id": 3946992602, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946989093", + "osm_id": 3946989093, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946993689", + "osm_id": 3946993689, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987374", + "osm_id": 3946987374, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987415", + "osm_id": 3946987415, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9347169225", + "osm_id": 9347169225, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987236", + "osm_id": 3946987236, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987285", + "osm_id": 3946987285, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987560", + "osm_id": 3946987560, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987450", + "osm_id": 3946987450, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987271", + "osm_id": 3946987271, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426045", + "osm_id": 8745426045, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9347179105", + "osm_id": 9347179105, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946989129", + "osm_id": 3946989129, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987358", + "osm_id": 3946987358, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987214", + "osm_id": 3946987214, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426046", + "osm_id": 8745426046, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987648", + "osm_id": 3946987648, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812630517", + "osm_id": 8812630517, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9347292798", + "osm_id": 9347292798, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9347272516", + "osm_id": 9347272516, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9347295359", + "osm_id": 9347295359, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9347292087", + "osm_id": 9347292087, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-17T18:52:47Z", + "reviewed_features": [], + "create": 8, + "modify": 46, + "delete": 0, + "area": 0.0000180187924000348, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115068458, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 19, + "imagery": "HDM_HOT", + "language": "ca", + "add-image": 27, + "change_over_5000m": 8, + "change_within_25m": 46 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2304483, + 41.4342027 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9347147825", + "name": "Vélothèque Ixelles - Fietsbieb Elsene", + "osm_id": 9347147825, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Jhowie_Nitnek", + "uid": "10209781", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bicyclelib", + "comments_count": 4, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T18:31:42Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115067636, + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3869755, + 50.8224716 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T18:28:50Z", + "reviewed_features": [], + "create": 0, + "modify": 101, + "delete": 0, + "area": 0.01910475317565, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115067548, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 189, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2753133500000002, + 50.96921165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T18:10:19Z", + "reviewed_features": [], + "create": 0, + "modify": 60, + "delete": 0, + "area": 0.01258505415812, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066926, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 87, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24292375, + 51.0626282 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T18:02:05Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000450440908200066, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066632, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 7, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2224196000000003, + 50.88101675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:59:29Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000100600180449946, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066513, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 6, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22220785, + 51.02357465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:59:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.69740600004096e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066501, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23004515, + 51.029804799999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:56:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.27175920000126e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066382, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21506865, + 51.1945161 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:54:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.53367800000758e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066269, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19497815, + 51.2723481 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:53:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.09356199997039e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066235, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1918658, + 50.79036035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:51:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.28657000009259e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066138, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18868265, + 50.9084495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:50:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.04494099992638e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066115, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18851995, + 50.93103455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:49:30Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 5.3026280999831e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066055, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 5, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20279475, + 51.00275085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:12:15Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000231993125000583, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115064642, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 9, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19916135, + 51.294097550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:09:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.68955000009553e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115064553, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1761646, + 50.83030315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:08:45Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000150553581599657, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115064528, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 8, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17748525, + 50.865633700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:29:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.7852520000713e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115063280, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1851971, + 51.29024925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:13:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.41077200006619e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115062744, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13940395, + 50.9494039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:12:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.03143729999662e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115062715, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12268875, + 50.993835450000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:03:57Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 3.54818880000719e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115062402, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 29, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1179101, + 50.9291386 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:03:44Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00000751631345998208, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115062396, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 22, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10230425, + 51.0654076 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:03:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.13485599999224e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115062377, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 5, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1123287, + 51.07313765000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:02:56Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000181921229599969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115062361, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 4, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1144381, + 51.119091850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T12:51:53Z", + "reviewed_features": [], + "create": 15, + "modify": 19, + "delete": 0, + "area": 0.000225206688119998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115055797, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 30, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.404730600000001, + 51.2138039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8852917068", + "osm_id": 8852917068, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853176484", + "osm_id": 8853176484, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8852917049", + "osm_id": 8852917049, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8852917050", + "osm_id": 8852917050, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "PabloDíaz", + "uid": "14309824", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-16T18:13:51Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000789243839999017, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115020070, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 6, + "imagery": "HDM_HOT", + "language": "ca", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24074075, + 41.4663065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-16T16:52:48Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115017408, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8403185, + 42.5333722 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-16T15:51:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115015263, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.9627955, + -32.7785095 + ] + } + }, + { + "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": "2021-12-15T19:14:56Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.00060032117735995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114976586, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3419936999999997, + 48.8863634 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-15T15:23:15Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.33992799985447e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114969039, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7897204999999996, + 51.027699 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-15T15:19:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114968885, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.885412, + 51.0086988 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-15T15:04:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000097286421599979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114968357, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93153515, + 51.0162539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jcn706", + "uid": "351940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-14T23:21:39Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114942699, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 8, + "imagery": "osm", + "language": "fr", + "change_within_100m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.420775, + 43.7214807 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-14T21:36:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114940487, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2548747, + -39.8056354 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibault Rommel", + "uid": "5846458", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/VerkeerdeBordenDatabank.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-14T21:05:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114939766, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/verkeerdebordendatabank/verkeerdebordendatabank.json", + "answer": 1, + "imagery": "Stamen.TonerLite", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1734978, + 50.9023391 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-14T16:49:34Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114931965, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "imagery": "AGIVFlandersGRB", + "deletion": 1, + "language": "en", + "change_within_500m": 1, + "deletion:node/9337505903": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2251042, + 51.2147858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karpax", + "uid": "14633101", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-14T14:15:32Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114926545, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4251353, + 51.2581617 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-14T13:36:01Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114925097, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22511225, + 51.2147858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-14T09:50:55Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.67949599995872e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114915854, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "UrbISOrtho", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3787008499999995, + 50.8437446 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-14T08:28:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114912428, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3782034, + 50.6784338 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-14T07:45:56Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 6.89766689998107e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114910791, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.32362325, + 51.74771895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T21:03:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114897962, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1634639, + 51.1860972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:36:28Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.000017938025869982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893856, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 38, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01402135, + 51.16710285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:34:11Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000199080984999984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893804, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 9, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00817915, + 51.1742603 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:33:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.78230400001004e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893801, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0100784999999997, + 51.0199994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:28:28Z", + "reviewed_features": [], + "create": 0, + "modify": 323, + "delete": 0, + "area": 0.000161126412600033, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893654, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 323, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9967327, + 51.184949599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:27:20Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00000195340340999694, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893624, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 13, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00345935, + 51.24994975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:23:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.70453299993175e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893493, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9705210500000003, + 51.00569085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:22:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.88019199995179e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893450, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 19, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9708588000000002, + 51.071485300000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:21:59Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000229376440999865, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893443, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 18, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9780860000000002, + 51.09288895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:20:26Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000293229284399542, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893393, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 3, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9819525000000002, + 51.18176055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:19:18Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.89501999994005e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893354, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 3, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9815411, + 51.25154835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:55:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.53619420000176e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892696, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9640174, + 51.06922515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:55:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.43022999998447e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892661, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9465487, + 50.84658625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:52:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.52597799993242e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892587, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9630999, + 51.05453455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:51:11Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000276405521769881, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892548, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 5, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95754405, + 51.21367995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:50:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000129234243420018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892533, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95515055, + 51.2239014 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:45:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.09868000001463e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892374, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9443435, + 51.0649976 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:42:49Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000727663653999986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892271, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 7, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9406412, + 51.238218149999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:42:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.40359770003467e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892258, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 4, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91929955, + 51.23450575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:32:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.11045999997011e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114891907, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9117993999999996, + 50.9688639 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:31:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.97147800002945e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114891875, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90520405, + 51.0257216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:29:58Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.17050619994959e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114891829, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.911013, + 51.09343485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:18:25Z", + "reviewed_features": [], + "create": 0, + "modify": 112, + "delete": 0, + "area": 0.0000220217978500077, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114891462, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 112, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91920525, + 51.23212875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:18:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.73854700009793e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114891452, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89622715, + 50.76805695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:16:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.41888000003189e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114891395, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8913313, + 50.8108484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:01:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890982, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2431303, + 51.2060932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:55:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.79830500009055e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890770, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87568375, + 50.800540850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:54:25Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000335268695999711, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890740, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 9, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8572490000000004, + 50.8184889 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:53:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.87546000021258e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890722, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8645708, + 50.8388177 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:52:56Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00286897231819, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890702, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 3, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8813233499999997, + 50.95817545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:52:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.76888599989359e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890683, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87571745, + 50.9928032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:51:40Z", + "reviewed_features": [], + "create": 0, + "modify": 47, + "delete": 0, + "area": 0.0000147505350500388, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890659, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 47, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86218165, + 51.03283395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:51:11Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.87933519998867e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890643, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 4, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8792063, + 51.08003225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:49:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.66478200001177e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890597, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8616642, + 51.17661955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:45:56Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000048034667999974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890458, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 17, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8567302, + 50.818562799999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:45:49Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000116140463999928, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890456, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 6, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8572112499999998, + 50.8194558 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:45:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.6406359999456e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890447, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8460392, + 50.85187225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:42:18Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.88110759995744e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890379, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8376634000000003, + 51.03532875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:40:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.72487500006984e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890314, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84753195, + 51.18296735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:39:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000130162179000189, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890282, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 4, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8331345, + 51.03524415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:36:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.3478899999992e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890206, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8284273, + 50.74514855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:35:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.14542199982881e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890164, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81989305, + 50.858666 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:35:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.19997399999009e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890152, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.821523, + 50.86247445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:31:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.3169155999905e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890033, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8077337, + 51.182448550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:21:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.01511499999024e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114889712, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77407235, + 50.85792405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:14:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000266860034800029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114889498, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7544646, + 50.794692100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:10:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.92659599989518e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114889360, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7653527999999996, + 50.9972973 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:03:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.18518199995418e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114889145, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7357876, + 50.967083450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:01:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.86679200002233e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114889054, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.733403, + 51.1459675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T15:58:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.98079400004521e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114888949, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72190695, + 50.894937999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T15:54:58Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000190184664998861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114888813, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 5, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70592935, + 51.14366085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T15:42:46Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 6.68560019998806e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114888383, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 10, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7014017, + 51.10040015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T15:00:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.73403000008142e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114887134, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60935465, + 51.110371400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T14:44:42Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114886637, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9032769, + 42.5265924 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T13:30:35Z", + "reviewed_features": [], + "create": 69, + "modify": 0, + "delete": 0, + "area": 0.00000136798365000321, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114884146, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 9, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_over_5000m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39744955, + 50.79217665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #missing_streets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T12:49:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.95225800004563e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114882795, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "missing_streets", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0487266, + 50.98323665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T10:13:13Z", + "reviewed_features": [], + "create": 5, + "modify": 14, + "delete": 0, + "area": 0.00008054628386999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114876730, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 23, + "imagery": "AGIV", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29704665, + 50.86105915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T02:19:24Z", + "reviewed_features": [], + "create": 483, + "modify": 179, + "delete": 0, + "area": 0.00001171097092001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114864189, + "host": "pietervdvn.github.io", + "move": 150, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "import": 60, + "imagery": "AGIV", + "language": "nl", + "conflation": 58, + "change_over_5000m": 61 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8556622, + 50.95504185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T02:09:45Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00000149668284000585, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114864085, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "answer": 12, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85438645, + 50.954291999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T02:03:25Z", + "reviewed_features": [], + "create": 380, + "modify": 0, + "delete": 0, + "area": 0.00000363397984001126, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114864021, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "import": 51, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 52 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8545119, + 50.9544504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T02:03:14Z", + "reviewed_features": [], + "create": 83, + "modify": 5, + "delete": 0, + "area": 9.84166510000557e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114864018, + "host": "pietervdvn.github.io", + "move": 4, + "path": "mc/develop/", + "theme": "grb", + "import": 10, + "imagery": "osm", + "language": "nl", + "conflation": 2, + "change_over_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8552227500000003, + 50.95415505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing.", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T01:02:35Z", + "reviewed_features": [], + "create": 0, + "modify": 208, + "delete": 0, + "area": 0.0000887451407400591, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114863330, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 208, + "language": "nl", + "change_over_5000m": 208 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4520755, + 50.863002550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-12T19:48:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114857522, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4100791, + 51.1714215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-12T19:12:23Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000918610892998763, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114856487, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40056595, + 51.17098695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dyrmann", + "uid": "51901", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-12T15:58:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114851028, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1920735, + 56.171876 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-12T14:09:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114847633, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1353362, + 43.9823406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #missing_streets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-12T01:45:58Z", + "reviewed_features": [], + "create": 0, + "modify": 321, + "delete": 0, + "area": 0.00185980248371986, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114834669, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 372, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2447529500000005, + 50.804990200000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T23:14:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114833158, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.2893615, + 47.684808 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T18:03:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114826322, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.6969191, + 26.5175064 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T15:52:16Z", + "reviewed_features": [], + "create": 5, + "modify": 3, + "delete": 0, + "area": 0.000119056918960018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114822385, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3213312999999998, + 50.9938269 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T15:50:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.84569600016655e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114822347, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 2, + "move:node/7896638970": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3128835, + 50.99736815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T14:51:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114820618, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "openwindpowermap", + "imagery": "AGIV", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3350238, + 51.0235409 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T13:55:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114818891, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3287689, + 51.0763461 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T12:42:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114816694, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.233462, + 51.1778524 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T11:42:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114814883, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9930374, + 47.6965847 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T09:45:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114811413, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4171556, + 46.9289084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "quelgir", + "uid": "13293058", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-11T09:17:57Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000322427206400074, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114810692, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8110996999999998, + 42.239292500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T03:35:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114805192, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.4118363, + 37.7889234 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T01:23:42Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000177136537999288, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114803817, + "host": "127.0.0.1:1234", + "theme": "grb", + "answer": 5, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2156905, + 51.205270049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-11T01:00:18Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114803562, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "AGIV", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2963517, + 50.8532713 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-11T00:57:40Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114803527, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "UrbISOrtho", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2966011, + 50.8531917 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T23:22:26Z", + "reviewed_features": [], + "create": 3, + "modify": 10, + "delete": 0, + "area": 1.36673200010553e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114802084, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 14, + "imagery": "UrbISOrtho", + "language": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29378745, + 50.8695673 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://osm-catalan.github.io/osmllengcat/src/json/osmllengcat.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T21:19:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.0322518000054e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114799387, + "host": "mapcomplete.osm.be", + "theme": "https://osm-catalan.github.io/osmllengcat/src/json/osmllengcat.json", + "answer": 1, + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7209758, + 41.22000935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9328103323", + "name": "Black Box Boulder Shop", + "osm_id": 9328103323, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "shop": "climbing_gear" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T20:05:20Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114797546, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2450733, + 50.8151191 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-5", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T20:00:45Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114797432, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_100m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2449211, + 50.8151578 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T19:59:00Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114797398, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2450035, + 50.8151903 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.0-alpha-5", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T19:45:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.06777799993273e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114797118, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6083343, + 50.18854425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T18:14:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114794621, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3836126, + 50.8493697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-5", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T18:13:08Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 3.97567999998898e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114794566, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 2, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2643748, + 50.8248173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T17:50:26Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.33433299999017e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114793785, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2646681500000003, + 50.825251449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T17:07:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114792447, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3630019, + 50.8508295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T17:02:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.24540100010369e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114792295, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.375542749999999, + 50.84853605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T16:55:11Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 3.34110799987775e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114792106, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3759613, + 50.84849105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T16:53:12Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.0000112091685000042, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114792047, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 9, + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3756607, + 50.856450949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T12:32:52Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 5.19306479995537e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114783965, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.377451000000001, + 50.678606349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T12:14:40Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00520072098230995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114783308, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.83032395, + 44.57368045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T09:23:37Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114776379, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6066459, + 42.9660936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T08:08:50Z", + "reviewed_features": [], + "create": 788, + "modify": 194, + "delete": 0, + "area": 0.0000653223552800196, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114773708, + "host": "pietervdvn.github.io", + "move": 153, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "import": 94, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 54 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3033237, + 50.955348099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T02:19:37Z", + "reviewed_features": [], + "create": 33, + "modify": 7, + "delete": 0, + "area": 0.023482399627838, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114765605, + "host": "127.0.0.1:1234", + "move": 6, + "theme": "grb", + "import": 5, + "imagery": "AGIV", + "language": "en", + "conflation": 2, + "change_over_5000m": 2, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4159606, + 51.1874824 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-09T20:16:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000116689406400011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114758399, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5489657, + 44.392623650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jcn706", + "uid": "351940", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-09T17:04:24Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 5.04623540002071e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114752467, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 6, + "change_within_50m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.62672805, + 40.8727344 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-09T12:58:52Z", + "reviewed_features": [], + "create": 379, + "modify": 0, + "delete": 0, + "area": 0.00000897473543998938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114743466, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 37, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30435575, + 50.9482262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-09T06:11:58Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000234430581000958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114727215, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55230205, + 44.39510285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-09T04:09:02Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114724239, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.41323514999999, + 37.7863082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-09T03:37:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114723630, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.4145335, + 37.7864382 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T23:31:55Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 6.77655000004623e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114720848, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "waste_basket", + "answer": 3, + "imagery": "osm", + "language": "en", + "move:node/-1": "improve_accuracy", + "move:node/-2": "improve_accuracy", + "change_over_5000m": 4, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.4045166, + 37.78955165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T22:40:51Z", + "reviewed_features": [], + "create": 5, + "modify": 2, + "delete": 0, + "area": 0.00000306336059997102, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114719850, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "waste_basket", + "answer": 5, + "imagery": "osm", + "language": "en", + "move:node/-2": "improve_accuracy", + "change_over_5000m": 5, + "change_within_25m": 6, + "change_within_100m": 1, + "move:node/9322304462": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.40596875, + 37.7886019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T22:08:19Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 1.88307699998538e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114719105, + "host": "127.0.0.1:1234", + "theme": "entrances", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21642895, + 51.1967543 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T19:31:04Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.000675503872680044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114714783, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 52, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54487215, + 44.384804200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T18:57:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114713914, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7964639, + 48.0102409 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/fbf0ae3c5bc1046da65c024075addef0/raw/5f7c3524f5456e00b233148a902c98242b9ff5ed/theme_aed_spar.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-08T16:20:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114709693, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://gist.githubusercontent.com/joostschouppe/fbf0ae3c5bc1046da65c024075addef0/raw/5f7c3524f5456e00b233148a902c98242b9ff5ed/theme_aed_spar.json", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.684883, + 51.1538155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/fbf0ae3c5bc1046da65c024075addef0/raw/5f7c3524f5456e00b233148a902c98242b9ff5ed/theme_aed_spar.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T15:05:44Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114707253, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://gist.githubusercontent.com/joostschouppe/fbf0ae3c5bc1046da65c024075addef0/raw/5f7c3524f5456e00b233148a902c98242b9ff5ed/theme_aed_spar.json", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3267373, + 50.7349897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T14:26:22Z", + "reviewed_features": [], + "create": 23, + "modify": 24, + "delete": 0, + "area": 0.00000349362368000549, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114705804, + "host": "pietervdvn.github.io", + "move": 21, + "path": "mc/develop/", + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "en", + "conflation": 6, + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4608213, + 51.088403549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T12:34:10Z", + "reviewed_features": [], + "create": 0, + "modify": 52, + "delete": 0, + "area": 0.0000656424186000528, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114701458, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 74, + "imagery": "osm", + "language": "en", + "change_over_5000m": 8, + "change_within_5000m": 45 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5506205, + 44.3914574 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/restaurants.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-08T12:28:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00282943491635993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114701243, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/restaurants.json", + "answer": 3, + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50888995, + 41.193620100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T12:19:07Z", + "reviewed_features": [], + "create": 49, + "modify": 116, + "delete": 0, + "area": 0.00000283605322000357, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114700843, + "host": "pietervdvn.github.io", + "move": 98, + "path": "mc/develop/", + "theme": "grb", + "answer": 2, + "import": 7, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 32, + "change_within_50m": 2, + "change_within_100m": 5, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4642079, + 51.088233450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T11:44:10Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114699400, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7257129, + 51.040663 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T07:10:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114688415, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8051636, + 47.991241 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T07:02:44Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000193245979400004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114688133, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 21, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.540016400000001, + 44.395032799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-07T23:07:23Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 1.52320299999007e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114679656, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "imagery": "osm", + "language": "en", + "change_over_5000m": 4, + "change_within_25m": 2, + "change_within_50m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.40617710000001, + 37.78447855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-07T19:04:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114673318, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7886385, + 48.0092351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #postal_codes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-07T15:43:09Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.200009252435851, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114666146, + "host": "127.0.0.1:1234", + "theme": "postal_codes", + "answer": 16, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2580924499999995, + 50.54429625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85302", + "uid": "14030677", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-07T13:42:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114661934, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.499177, + 51.8618958 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-07T11:05:43Z", + "reviewed_features": [], + "create": 146, + "modify": 2, + "delete": 0, + "area": 0.00000170062310000475, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114655773, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 20, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9935139, + 50.77362505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-07T10:41:45Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.000551886104799865, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114654575, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 31, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2404711500000003, + 50.8905183 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gtaro", + "uid": "2973154", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-07T08:27:20Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00000723092739000582, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114648896, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "hailhydrant", + "answer": 4, + "imagery": "HDM_HOT", + "language": "fr", + "move:node/9233019525": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03390845, + 49.01936885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gtaro", + "uid": "2973154", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-07T08:27:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114648895, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0399435, + 49.0242565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-07T07:35:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114647202, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7924795, + 48.0040149 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-07T06:02:38Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000529679967599977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114644262, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 11, + "imagery": "osm", + "language": "en", + "change_within_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5487328, + 44.393436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.13.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T17:42:20Z", + "reviewed_features": [], + "create": 2, + "modify": 16, + "delete": 0, + "area": 0.00000910121617997985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114628069, + "host": "pietervdvn.github.io", + "move": 12, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4516546000000004, + 51.09826005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T15:10:02Z", + "reviewed_features": [], + "create": 560, + "modify": 14, + "delete": 0, + "area": 0.0000109207087599996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114622793, + "host": "pietervdvn.github.io", + "move": 5, + "path": "mc/develop/", + "theme": "grb", + "import": 68, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3049486, + 50.949857 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T13:15:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114618802, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1234206, + 50.0803254 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T13:09:38Z", + "reviewed_features": [], + "create": 288, + "modify": 6, + "delete": 0, + "area": 0.0000202199914800291, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114618588, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 39, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.302429, + 50.9526557 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T13:01:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114618358, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1234347, + 50.0803731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T12:43:10Z", + "reviewed_features": [], + "create": 660, + "modify": 27, + "delete": 0, + "area": 0.000324264687119882, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114617692, + "host": "pietervdvn.github.io", + "move": 8, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "import": 90, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2901815, + 50.947999249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T12:36:11Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 2.86111350000478e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114617475, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 6, + "imagery": "osm", + "language": "en", + "add-image": 4, + "change_within_500m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16365205, + 50.008690650000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T12:13:02Z", + "reviewed_features": [], + "create": 179, + "modify": 259, + "delete": 0, + "area": 0.00689458711859977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114616724, + "host": "pietervdvn.github.io", + "move": 235, + "path": "mc/develop/", + "theme": "grb", + "answer": 3, + "import": 19, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 72 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2013338, + 50.954802599999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T12:11:10Z", + "reviewed_features": [], + "create": 53, + "modify": 19, + "delete": 0, + "area": 0.0951544407651794, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114616649, + "host": "pietervdvn.github.io", + "move": 16, + "path": "mc/develop/", + "theme": "grb", + "import": 5, + "imagery": "osm", + "language": "en", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8705374, + 50.96773885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T11:22:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114614741, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0399, + 50.8752695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T11:13:54Z", + "reviewed_features": [], + "create": 392, + "modify": 45, + "delete": 0, + "area": 0.0000135377499899705, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114614393, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 73, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_over_5000m": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61406525, + 51.15668805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T11:12:43Z", + "reviewed_features": [], + "create": 48, + "modify": 0, + "delete": 0, + "area": 2.66445499998795e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114614354, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 10, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_over_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6156198, + 51.15523685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T10:22:05Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000052629609440057, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114612439, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2370777000000004, + 50.8891232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T08:56:04Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114609219, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7266788, + 49.8358542 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T07:38:06Z", + "reviewed_features": [], + "create": 10, + "modify": 0, + "delete": 0, + "area": 0.000185232875899944, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114606422, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 10, + "change_within_25m": 1, + "change_within_50m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.80950615, + 48.018314700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T01:42:54Z", + "reviewed_features": [], + "create": 319, + "modify": 213, + "delete": 0, + "area": 0.00000985261466999628, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114599635, + "host": "127.0.0.1:1234", + "move": 88, + "theme": "grb", + "answer": 1, + "import": 58, + "imagery": "osm", + "language": "nl", + "conflation": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24783355, + 50.837065249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T01:08:34Z", + "reviewed_features": [], + "create": 169, + "modify": 156, + "delete": 0, + "area": 0.00000309088618000064, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114599169, + "host": "127.0.0.1:1234", + "move": 136, + "theme": "grb", + "answer": 3, + "import": 18, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 30 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2459167, + 50.83720434999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PlayzinhoAgro", + "uid": "10460642", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T23:16:34Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000336879919900044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114597644, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 6, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.822135349999996, + -5.094613300000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PlayzinhoAgro", + "uid": "10460642", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T23:11:10Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000757466822670131, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114597538, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.82075935, + -5.09428325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CoyKoi", + "uid": "3757297", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T23:10:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000016833735390008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114597502, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 175.14599845, + -36.84398315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PlayzinhoAgro", + "uid": "10460642", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T23:06:33Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000139993997400014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114597432, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.807735300000004, + -5.086107050000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T22:01:55Z", + "reviewed_features": [], + "create": 16, + "modify": 84, + "delete": 0, + "area": 0.00000120281996999916, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114596214, + "host": "127.0.0.1:1234", + "move": 69, + "theme": "grb", + "answer": 12, + "import": 2, + "imagery": "AGIV", + "language": "nl", + "conflation": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24370265, + 50.83731325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T19:56:52Z", + "reviewed_features": [], + "create": 99, + "modify": 6, + "delete": 0, + "area": 0.00000743410639998839, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114593204, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 12, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_over_5000m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6155095, + 51.156072550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T17:56:33Z", + "reviewed_features": [], + "create": 196, + "modify": 0, + "delete": 0, + "area": 7.90746169997521e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114589925, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 24, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61678675, + 51.15803285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T17:51:49Z", + "reviewed_features": [], + "create": 87, + "modify": 1, + "delete": 0, + "area": 9.07566420004756e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114589804, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 15, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6161193999999997, + 51.15743105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T17:48:22Z", + "reviewed_features": [], + "create": 187, + "modify": 0, + "delete": 0, + "area": 7.85558129997716e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114589695, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 28, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61605025, + 51.15733305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T17:46:31Z", + "reviewed_features": [], + "create": 103, + "modify": 0, + "delete": 0, + "area": 3.93078420000171e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114589631, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 12, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6160033, + 51.156672349999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T14:10:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114583434, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7284616, + 49.8351664 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T12:54:27Z", + "reviewed_features": [], + "create": 3, + "modify": 23, + "delete": 0, + "area": 1.21993390002413e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114581092, + "host": "pietervdvn.github.io", + "move": 16, + "path": "mc/develop/", + "theme": "grb", + "answer": 4, + "import": 1, + "imagery": "AGIV", + "language": "nl", + "conflation": 4, + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24383875, + 50.83723315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T12:41:31Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000270546564000509, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114580691, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 12, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 2, + "change_within_50m": 6, + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7281362, + 49.83476485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T03:57:06Z", + "reviewed_features": [], + "create": 185, + "modify": 208, + "delete": 0, + "area": 0.00978357990271988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114571409, + "host": "127.0.0.1:1234", + "move": 170, + "theme": "grb", + "answer": 29, + "import": 30, + "imagery": "osm", + "language": "en", + "conflation": 46 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23242385, + 51.0236647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T03:23:34Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 3.07638000003993e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114571099, + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2441605, + 50.8380716 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T03:15:00Z", + "reviewed_features": [], + "create": 52, + "modify": 72, + "delete": 0, + "area": 0.00000179656311999424, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114571030, + "host": "127.0.0.1:1234", + "move": 65, + "theme": "grb", + "answer": 2, + "import": 8, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24455465, + 50.8379028 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T02:37:45Z", + "reviewed_features": [], + "create": 4, + "modify": 39, + "delete": 0, + "area": 4.78107399997627e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114570730, + "host": "127.0.0.1:1234", + "move": 30, + "theme": "grb", + "answer": 6, + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24489295, + 50.838181500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T02:33:41Z", + "reviewed_features": [], + "create": 11, + "modify": 41, + "delete": 0, + "area": 3.30828689995914e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114570678, + "host": "127.0.0.1:1234", + "move": 37, + "theme": "grb", + "answer": 2, + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24506765, + 50.83826435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T01:35:50Z", + "reviewed_features": [], + "create": 82, + "modify": 89, + "delete": 0, + "area": 0.00000157885000000431, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114570109, + "host": "mapcomplete.osm.be", + "move": 60, + "theme": "grb", + "answer": 9, + "import": 15, + "imagery": "AGIV", + "language": "en", + "conflation": 22, + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24650895, + 50.8384264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744186807", + "osm_id": 8744186807, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744186805", + "osm_id": 8744186805, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744186796", + "osm_id": 8744186796, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T22:00:58Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.42896549995575e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114567284, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 4, + "imagery": "HDM_HOT", + "language": "ca", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24476075, + 41.44886885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8791267410", + "osm_id": 8791267410, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791267413", + "osm_id": 8791267413, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791267393", + "osm_id": 8791267393, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9311167057", + "osm_id": 9311167057, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791267401", + "osm_id": 8791267401, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791267396", + "osm_id": 8791267396, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791267395", + "osm_id": 8791267395, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791267408", + "osm_id": 8791267408, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9311209498", + "osm_id": 9311209498, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T20:25:08Z", + "reviewed_features": [], + "create": 9, + "modify": 9, + "delete": 0, + "area": 0.00000916885760000565, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114565529, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 9, + "imagery": "HDM_HOT", + "language": "ca", + "change_over_5000m": 9, + "change_within_25m": 8, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2565849, + 41.4525321 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T19:20:52Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114564109, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 6, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7927515, + 48.0078687 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-04T19:14:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114563930, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3898746, + 50.8527969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-04T19:13:09Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.000198082731120034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114563899, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 11, + "imagery": "UrbISOrtho2020", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3814375000000005, + 50.84700315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T18:59:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114563581, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "de", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7914468, + 48.0044671 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T18:38:46Z", + "reviewed_features": [], + "create": 11, + "modify": 0, + "delete": 0, + "area": 0.0000372201370199966, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114563116, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 5, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 11, + "change_within_25m": 4, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.79155545, + 48.005734 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T15:58:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114559225, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "de", + "change_over_5000m": 1, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7766008, + 48.1080849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-04T15:35:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114558562, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2301221, + -39.8378588 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T14:26:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114556655, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "de", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.629975, + 51.7364493 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T08:35:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114547321, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7296998, + 49.8311215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T08:19:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114547035, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7347611, + 49.8305193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-03T16:52:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114529779, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8224959, + 50.8990666 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrea Musuruane", + "uid": "90379", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-03T16:45:42Z", + "reviewed_features": [], + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.000178493931200008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114529543, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 47, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.170325550000001, + 45.3733242 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-03T15:53:02Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 1.53446799999211e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114528127, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 6, + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2226447, + 51.2086672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-03T15:50:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.7033320000519e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114528068, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2457737, + -39.8194881 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-03T14:41:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114525895, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9654689, + 49.8263631 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-03T10:21:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.70414919998373e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114516792, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9120534, + 51.17487425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-03T06:28:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114508786, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7932305, + 48.0078749 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-03T04:25:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114505852, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2520815, + 52.7917037 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-02T21:55:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114499674, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2353924, + -39.8389723 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-02T13:25:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 9.36367140005233e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114483581, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "split": 2, + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_25m": 2, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34325365, + 50.8290162 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-02T13:20:30Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114483428, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3411392, + 50.8323467 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-02T13:13:33Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000655664076400472, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114483211, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5290307, + 43.2537958 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-02T12:43:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114482337, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "fr", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9538082, + 42.6545431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #grb_fixme", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-02T12:15:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.27665960000494e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114481412, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb_fixme", + "answer": 4, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2369145, + 51.21588935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #grb_fixme", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-02T01:23:13Z", + "reviewed_features": [], + "create": 4, + "modify": 41, + "delete": 0, + "area": 0.000666623233079885, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114463627, + "host": "127.0.0.1:1234", + "theme": "grb_fixme", + "answer": 44, + "import": 4, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2221417, + 51.210684549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joeybab3", + "uid": "8783843", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-01T23:46:40Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.89494999998936e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114462319, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 9, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.03179975, + 36.9780299 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "blacx", + "uid": "327111", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-01T23:15:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000888592680001402, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114461816, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82651425, + 41.5461393 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #comerciosantiguos", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-01T23:09:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114461685, + "host": "mapcomplete.osm.be", + "theme": "comerciosantiguos", + "answer": 3, + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7248595, + 41.2205668 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-01T22:39:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.71930000024495e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114460999, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23188135000001, + -39.842557 + ] + } + }, + { + "type": "Feature", + "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": "2021-12-01T18:53:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114454431, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.9837611, + 52.0271205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "juliabyby", + "uid": "14553395", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-01T17:28:58Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000273976640000606, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114451924, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste_basket", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 3, + "move:node/9300915863": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.4081257, + 37.795591099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jessbeutler", + "uid": "3243541", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-01T16:24:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114449961, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.6478932, + 42.9278164 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jessbeutler", + "uid": "3243541", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-01T16:23:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114449912, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "USDA-NAIP", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.6668726, + 42.9635931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-01T11:40:25Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.0000693771778700411, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114440486, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 12, + "imagery": "AGIV", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40876035, + 51.22095565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-01T09:05:31Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00000152448638000179, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114434814, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 3, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7951281, + 48.00073955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-01T07:16:35Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114431043, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "de", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8232444, + 47.9817318 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-01T06:37:11Z", + "reviewed_features": [], + "create": 6, + "modify": 1, + "delete": 0, + "area": 0.00291220836621019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114429834, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 6, + "change_within_25m": 2, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.81258385, + 47.97665005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/osmlitmap/master/src/json/lit.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-01T00:18:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114422931, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/osmlitmap/master/src/json/lit.json", + "imagery": "osm", + "language": "ca", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2250237, + 51.2064498 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T22:20:20Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000176047813790056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100158849, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35413045, + 51.129450750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #allotments", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T22:11:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.11915000000177e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100158594, + "host": "mapcomplete.osm.be", + "theme": "allotments", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2199102, + 51.18215035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.2b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-28T21:46:40Z", + "reviewed_features": [], + "create": 4, + "modify": 19, + "delete": 0, + "area": 0.00100828205598038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100157822, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5108385, + 51.02711875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #allotments", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T19:47:30Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.11020200005403e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100153982, + "host": "mapcomplete.osm.be", + "theme": "allotments", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34535365, + 50.8756156 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #allotments", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T19:43:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.11020200005403e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100153839, + "host": "mapcomplete.osm.be", + "theme": "allotments", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34535365, + 50.8756156 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Craecker2", + "uid": "11233815", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T19:15:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100152747, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.2197793, + 50.0550399 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Craecker2", + "uid": "11233815", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T19:14:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.64829000001523e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100152683, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.16562955, + 50.05992995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "okilimu", + "uid": "212111", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-28T18:39:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000836591552998737, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100151338, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.300674149999999, + 48.73751395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T17:53:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.0745800003011e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100149067, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13701785, + 51.2912237 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "okilimu", + "uid": "212111", + "editor": "MapComplete 0.5.4a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-28T15:12:15Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00429167076000054, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100141367, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.24298235, + 48.7546082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyton", + "uid": "11146797", + "editor": "MapComplete 0.5.4a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-28T14:46:10Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000830647124998096, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100140075, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.289573449999999, + 52.633128049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "straynic", + "uid": "718977", + "editor": "MapComplete 0.5.4a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-28T08:25:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100126368, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1522336, + 45.1799458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "straynic", + "uid": "718977", + "editor": "MapComplete 0.5.4a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-28T08:20:05Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100126236, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1884112, + 45.1594003 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T22:04:42Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100117757, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3460637, + 50.8181966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T21:56:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100117566, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6661284, + -33.4410426 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T21:27:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100116843, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6662356, + -33.4405524 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.2b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T21:12:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100116383, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5483264, + 51.0209132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-27T19:48:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100113908, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2324803, + 51.1870806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-27T16:06:37Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100104366, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10732, + 51.0191728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-27T15:59:03Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 5.24644499996208e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100104020, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.962680349999999, + 51.51007905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T15:57:42Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 3.78586799994919e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100103957, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66719255, + -33.440229200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Commodoortje", + "uid": "1771198", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T15:17:01Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100102164, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3120827, + 52.0952965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T15:03:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100101616, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0831776, + 53.0514086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-27T03:23:05Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100081609, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.6376345, + -36.9080008 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alibama", + "uid": "11038799", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T22:30:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100077413, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.4966095, + 38.0292344 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alibama", + "uid": "11038799", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T22:04:08Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 3.70552500002698e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100076620, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.49641105, + 38.029513949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DIY", + "uid": "208508", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T21:04:06Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00000150074946000177, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100074776, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7462493, + 50.882086150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vincentxavier", + "uid": "15739", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-26T20:40:26Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000123628079300023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100073938, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31179995, + 48.902481050000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "karmickoala", + "uid": "12749531", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T18:55:31Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000158577922800136, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100070322, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.95752195, + -19.8671501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T18:24:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100069116, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2785507, + 51.0602815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-26T15:45:21Z", + "reviewed_features": [], + "create": 12, + "modify": 48, + "delete": 0, + "area": 5.87969920002523e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100060787, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5904223, + 51.96621175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DIY", + "uid": "208508", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T14:51:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100058257, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7541618, + 50.8881994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-26T14:42:23Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100057814, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5933867, + 51.9655788 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-26T14:40:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100057703, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0831776, + 53.0514086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lokaal bestuur Olen", + "uid": "12279833", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T13:43:42Z", + "reviewed_features": [], + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.00276088737120019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100054794, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8889407, + 51.1636509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T13:26:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100053936, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8420487, + 50.8816233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lokaal bestuur Olen", + "uid": "12279833", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 5, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T13:18:46Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00122052129849002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100053568, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88064465, + 51.15442585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8461197945", + "name": "August Veeck", + "osm_id": 8461197945, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "shop": "jewels and gems" + } + } + ], + "user": "Melanie Veeck", + "uid": "12741541", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T13:11:51Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100053202, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3277199, + 49.7047654 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T13:04:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100052822, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8415804, + 50.8810941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gemeente Oostrozebeke", + "uid": "3986953", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T13:02:01Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100052686, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3337069, + 50.9213363 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gis3700", + "uid": "8370509", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T12:55:59Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100052329, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4676368, + 50.7789634 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Melanie Veeck", + "uid": "12741541", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T12:31:13Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100050884, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6862591, + 50.9186731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "radnaj", + "uid": "13135", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T09:06:25Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100035223, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "Stadia.AlidadeSmoothDark", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6619207, + 40.5548316 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rsmb", + "uid": "2195609", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T21:40:25Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100005066, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.3093423, + 47.5717359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rsmb", + "uid": "2195609", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T21:38:14Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100005004, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.31036425, + 47.5737862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rsmb", + "uid": "2195609", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T21:33:01Z", + "reviewed_features": [], + "create": 1, + "modify": 23, + "delete": 0, + "area": 0.00302529364156041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100004851, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.30627595, + 47.604153100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T19:57:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100001332, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.9871108, + -34.592627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ljanssens", + "uid": "959076", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T18:05:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99995841, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5834972, + 51.128417 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8458401093", + "osm_id": 8458401093, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-25T16:27:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99990530, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2663029, + 50.6493925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T12:18:23Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99976196, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1585628, + 51.1181747 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-25T10:08:56Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000290707691849989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99966566, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2611535499999995, + 50.76968855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "anderld", + "uid": "285718", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T07:11:37Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0169143535240801, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99953165, + "theme": "climbing", + "language": "de", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3779478, + 50.5894761 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.2b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T01:32:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000194501577760007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99936680, + "host": "192.168.1.191:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7114187999999997, + 51.04952395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-24T18:24:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99924541, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3311382, + 44.5064686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-24T15:07:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99914037, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2987561, + 44.4912213 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-24T13:52:28Z", + "reviewed_features": [], + "create": 8, + "modify": 0, + "delete": 0, + "area": 0.00250441375132003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99910020, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3372532, + 44.51279605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "micheltz", + "uid": "10155250", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-23T21:06:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99855005, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7989668, + 51.2352485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StanislasGueniffey687163843", + "uid": "11495987", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-23T14:42:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99835912, + "host": "pietervdvn.github.io", + "theme": "fritures", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3876739, + 50.814662 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tiger10", + "uid": "155318", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-23T13:45:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99832025, + "theme": "climbing", + "language": "de", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0417253, + 48.5106315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-23T11:14:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.30863300002763e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99820220, + "host": "mapcomplete.osm.be", + "theme": "buurtnatuur", + "imagery": "osm", + "language": "nl", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70464575, + 51.0505651 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-23T01:01:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99779479, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "Stamen.Watercolor", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.35579405, + 47.6522841 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Seaviator", + "uid": "9649188", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T23:27:07Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 1.19482680004023e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99778046, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "Stadia.AlidadeSmoothDark", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -89.39523095, + 43.0759022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.0-rc5", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T20:55:00Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99771721, + "host": "pietervdvn.github.io", + "theme": "climbing", + "imagery": "osm", + "language": "nl", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4931266, + 51.0240137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-22T20:23:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99770205, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6100709, + 51.9644565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #geveltuintjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-22T19:29:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99767714, + "host": "mapcomplete.osm.be", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5483264, + 51.0209132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T19:02:28Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000759466232999634, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99766646, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.57429225, + -33.5943984 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #geveltuintjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-22T18:12:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99764594, + "host": "mapcomplete.osm.be", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4784087, + 51.0338428 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "alibama", + "uid": "11038799", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T16:46:14Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99760617, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.4683707, + 38.0246363 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T16:22:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99759346, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3459252, + 44.5016229 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T15:46:33Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 1.60037789999195e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99757412, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76828005, + -33.485767949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fpiette", + "uid": "11779834", + "editor": "MapComplete 0.5.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T10:50:22Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000196723797519908, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99738539, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.612652450000001, + 50.603597199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fpiette", + "uid": "11779834", + "editor": "MapComplete 0.5.2", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T10:21:02Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99736106, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6039661, + 50.5217799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mfbehrens99", + "uid": "9645335", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-22T08:23:56Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.84212000029126e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99726454, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.2322798, + 50.00430595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-4488407036", + "osm_id": 4488407036, + "reasons": [ + 42 + ], + "version": 2, + "primary_tags": { + "leisure": "picnic_table" + } + }, + { + "url": "node-1951606094", + "osm_id": 1951606094, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": { + "leisure": "picnic_table" + } + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.5.2", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-22T07:36:38Z", + "reviewed_features": [], + "create": 5, + "modify": 11, + "delete": 0, + "area": 0.000857070695969931, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99723129, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9100392500000005, + 52.07708505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-21T20:31:31Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99697887, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4834706, + 51.1263994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-21T11:36:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99676146, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198444, + 51.2156765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-21T10:52:44Z", + "reviewed_features": [], + "create": 5, + "modify": 21, + "delete": 0, + "area": 1.92834420000552e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99675091, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9784675, + 51.45215465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-21T10:04:40Z", + "reviewed_features": [], + "create": 5, + "modify": 20, + "delete": 0, + "area": 0.00000633763242001317, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99673436, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98123295, + 51.450460500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.5.0c", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-21T01:52:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99665427, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.35004635, + 47.6504853 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-20T18:54:17Z", + "reviewed_features": [], + "create": 0, + "modify": 51, + "delete": 0, + "area": 0.00347447391719969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99656265, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.912490200000001, + 52.077004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "milenasonneveld", + "uid": "8177639", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #klimbomen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-20T14:38:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99644899, + "host": "pietervdvn.github.io", + "theme": "klimbomen", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4122499, + 50.9198635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.0-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-20T01:12:14Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99622784, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7043881, + 51.0527373 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #geveltuintjes", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-19T20:05:16Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99615501, + "host": "mapcomplete.osm.be", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5483264, + 51.0209132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rfa31", + "uid": "1963468", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-19T19:56:14Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99615186, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "NSW_LPI_Imagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 151.1473668, + -33.877031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8438616231", + "osm_id": 8438616231, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-19T16:16:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99606292, + "host": "pietervdvn.github.io", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9437802, + 51.4145483 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #geveltuintjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-19T16:16:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99606276, + "host": "mapcomplete.osm.be", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4861886, + 51.0302155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-19T14:42:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.03171999982104e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99601546, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9678074, + 51.19856835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-19T13:53:53Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00444619947470036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99599094, + "host": "pietervdvn.github.io", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.260727599999999, + 50.77372025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-19T13:50:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000165706130800022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99598899, + "host": "pietervdvn.github.io", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44946665, + 51.088295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-19T09:00:23Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000288020294000058, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99578370, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4481166500000002, + 51.085109700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-19T06:56:54Z", + "reviewed_features": [], + "create": 3, + "modify": 18, + "delete": 0, + "area": 11.6317125683349, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99569813, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 122.52171455000001, + 12.42032665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-19T05:34:52Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99563927, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5916481, + -33.6048667 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-19T01:10:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99554379, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6809309, + 51.0533349 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-18T20:52:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99548215, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1169699, + 51.1853225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-18T13:18:21Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99527340, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0784276, + 50.9282274 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CartoKees", + "uid": "927112", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-18T13:16:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99527268, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "Actueel_ortho25_WMS", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.718829, + 51.9723273 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-17T17:05:43Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.09913490003717e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99467653, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.77061235, + -33.484625550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-17T16:43:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99466463, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.730679, + 51.0570573 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-17T13:52:59Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99457652, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3189133, + 50.7844049 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-16T18:56:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99400869, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9783645, + 51.4469767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-16T18:55:03Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99400802, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9776831, + 51.4467987 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-16T18:42:18Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.0000100451538600093, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99400332, + "host": "pietervdvn.github.io", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9754290999999995, + 51.448456750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T18:15:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99399352, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7685697, + -33.4852773 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T18:04:39Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99398917, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6361571, + 50.8671482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T18:02:52Z", + "reviewed_features": [], + "create": 5, + "modify": 16, + "delete": 0, + "area": 6.45117500010796e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99398824, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76847465, + -33.48529165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-16T18:02:10Z", + "reviewed_features": [], + "create": 10, + "modify": 50, + "delete": 0, + "area": 0.000012911669999997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99398790, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.980164, + 51.4515591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T13:26:43Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 1.54710000005867e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99385395, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6776237500000004, + 51.05316075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-16T13:01:22Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99383785, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6923423, + 51.0522571 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-16T12:53:45Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.0000388253424200023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99383257, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6873641499999996, + 51.051935099999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8428431653", + "osm_id": 8428431653, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T10:12:23Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99369933, + "host": "pietervdvn.github.io", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8836749, + 51.3929233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T04:02:06Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 1.15657800001288e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99342577, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76856685, + -33.4855934 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T03:56:45Z", + "reviewed_features": [], + "create": 5, + "modify": 15, + "delete": 0, + "area": 9.26386800009272e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99342326, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76843740000001, + -33.4854654 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-6040165027", + "osm_id": 6040165027, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": { + "leisure": "picnic_table" + } + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-15T21:49:19Z", + "reviewed_features": [], + "create": 18, + "modify": 24, + "delete": 0, + "area": 0.000616612296299855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99333909, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6295405, + 52.06749415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-15T21:19:46Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.00221424700800009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99333011, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6331904999999995, + 52.06488425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-15T15:54:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99320724, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5003356, + 50.8024306 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-15T14:31:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99316602, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.331597, + -27.3667738 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ielham", + "uid": "462218", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #1roadAlllanes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-13T21:35:05Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000545504767499748, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99231088, + "host": "mapcomplete.osm.be", + "theme": "1roadalllanes", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.9320182500000005, + 37.268227350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #1roadAlllanes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-12T23:45:20Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000139070528799998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99199529, + "host": "mapcomplete.osm.be", + "theme": "1roadalllanes", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.020231, + 41.3118936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sharwin_F", + "uid": "147555", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #crossingtime", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-12T23:17:50Z", + "reviewed_features": [], + "create": 0, + "modify": 71, + "delete": 0, + "area": 0.0000199985392000304, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99199139, + "host": "mapcomplete.osm.be", + "theme": "crossingtime", + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1802422999999997, + 41.4315176 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sharwin_F", + "uid": "147555", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #restaurants", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-12T23:04:57Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99198918, + "host": "mapcomplete.osm.be", + "theme": "restaurants", + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1783346, + 41.4315121 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sharwin_F", + "uid": "147555", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wherethesidewalkshavenoname", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-12T22:55:19Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000103633530000091, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99198737, + "host": "mapcomplete.osm.be", + "theme": "wherethesidewalkshavenoname", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1799567, + 41.43060495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-12T08:47:21Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000290643998239945, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99160858, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94941795, + 53.081298000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-12T03:27:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99142059, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.6323415, + -33.0487834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-11T19:05:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99129884, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.6298409, + -33.044419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eginhard", + "uid": "12637224", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-11T15:36:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99117277, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1549186, + 46.3511896 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #vaccination_centres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-10T20:14:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99062508, + "host": "mapcomplete.osm.be", + "theme": "vaccination_centres", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7511256, + 51.1837616 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-10T20:10:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99062399, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5700547, + -33.5921539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alejandroscf", + "uid": "31829", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wherethesidewalkshavenoname", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-09T22:46:06Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000211943643599981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99003014, + "host": "mapcomplete.osm.be", + "theme": "wherethesidewalkshavenoname", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8705054999999999, + 41.6339055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-09T16:08:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98988313, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5705244, + -33.591813 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-09T15:10:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98985394, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2936882, + 50.7900105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #picnictable", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-09T14:30:27Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00000422537075999923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98983488, + "host": "mapcomplete.osm.be", + "theme": "picnictable", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6912024, + 51.06882145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #vaccination_centres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-08T14:12:15Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00527111560527986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98915231, + "host": "mapcomplete.osm.be", + "theme": "vaccination_centres", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94485965, + 51.3509725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #vaccination_centres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-08T12:33:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000107040395999183, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98910316, + "host": "mapcomplete.osm.be", + "theme": "vaccination_centres", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96971445, + 51.4021099 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-08T12:00:24Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000917299718999792, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98908195, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.124745450000001, + 52.07666125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-08T11:59:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98908156, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1254283, + 52.0800196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #vaccination_centres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-08T08:00:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000107040395999183, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98890818, + "host": "mapcomplete.osm.be", + "theme": "vaccination_centres", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96971445, + 51.4021099 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-08T01:26:46Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98870697, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6703281, + -33.4378348 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-08T00:57:40Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.43294000030679e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98870223, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66508205, + -33.4413164 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-07T17:20:31Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98858480, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4155033, + 46.9354862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-07T16:00:08Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98855499, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1240626, + 52.0733029 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-06T22:55:53Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 7.61108739997702e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98833004, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.78176805, + 48.0965631 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wherethesidewalkshavenoname", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-06T18:09:13Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000555813657000362, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98824212, + "host": "mapcomplete.osm.be", + "theme": "wherethesidewalkshavenoname", + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1590598500000002, + 41.43716725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mtaborda", + "uid": "358284", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #containeronvas", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-06T17:39:00Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 7.6068360001144e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98823177, + "host": "pietervdvn.github.io", + "theme": "containeronvas", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.0178028, + 38.2408024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-06T11:09:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98808335, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1850213, + 48.9201129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-06T11:08:37Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98808325, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1850213, + 48.9201129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-05T15:41:55Z", + "reviewed_features": [], + "create": 6, + "modify": 7, + "delete": 0, + "area": 0.000110502598029977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98777544, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63421855, + 51.96134585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-05T14:49:51Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00054876905765006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98775172, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.630075550000001, + 51.96047885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-05T14:32:34Z", + "reviewed_features": [], + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.0000060126651699992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98774403, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24551165, + -39.81183395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-05T13:11:08Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98770620, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6314213, + 51.9586447 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nienke_Meeuwissen", + "uid": "10628914", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-05T10:01:12Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98758800, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2644413, + 51.9566396 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-05T05:16:41Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98740296, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.666665, + -33.4405009 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-04T20:32:42Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.21592550000783e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98726086, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66548725, + -33.44066745000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-04T20:20:30Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98725717, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6649823, + -33.44123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #paden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-04T15:27:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.37899469997084e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98713865, + "host": "mapcomplete.osm.be", + "theme": "paden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23337505, + 50.71058015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-04T13:53:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98709530, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4937944, + 50.8055185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-04T12:20:46Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98705104, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.419711, + 46.932459 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-04T01:50:03Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98672493, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9427891, + 10.3279113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #vaccination_centres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-04T00:16:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98670888, + "host": "mapcomplete.osm.be", + "theme": "vaccination_centres", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.212412, + 51.1812564 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-03T20:20:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98665284, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198417, + 51.2156931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T19:21:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98663251, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2243352, + 51.2043211 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T19:19:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.72532959999903e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98663183, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2250906500000003, + 51.2052578 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T19:18:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98663172, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2244503, + 51.2051514 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T17:50:20Z", + "reviewed_features": [], + "create": 15, + "modify": 21, + "delete": 0, + "area": 0.000539486049600016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98659703, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54923275, + 51.993055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T16:48:51Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98656940, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5480679, + 51.9716756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T16:12:07Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000508466779260014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98655231, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55018145, + 51.9939315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-03T12:29:31Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98644606, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6375207, + 50.9306339 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Nicolas Janssoone", + "uid": "12598029", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-03T11:14:55Z", + "reviewed_features": [], + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.0000614205883999674, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98640403, + "host": "pietervdvn.github.io", + "theme": "fritures", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7848262999999998, + 50.288463899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T09:31:13Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98634108, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8717445, + 50.3763515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T09:05:48Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000764933703599962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98632402, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54659575, + 51.9802843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T08:48:37Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98631263, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8759797, + 50.393442 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NimdaBE", + "uid": "657676", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #vaccination_centres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-03T07:25:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98626175, + "host": "pietervdvn.github.io", + "theme": "vaccination_centres", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.063949, + 50.9178564 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jorieke V", + "uid": "378610", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-02T22:00:09Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 1.43007700714898, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98603682, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39102705, + 51.41294605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoschi", + "uid": "231006", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #openinghourscovid19", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-02T17:25:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98592602, + "host": "pietervdvn.github.io", + "theme": "openinghourscovid19", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8458316, + 47.9957557 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-02T10:24:47Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98569828, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8655851, + 50.4656655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-02T10:08:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98568686, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7434571, + 50.4684935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Filipvdl", + "uid": "1930844", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-02T09:36:41Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98566470, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6952149, + 51.0429887 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Filipvdl", + "uid": "1930844", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-02T09:27:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00072945196542005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98565848, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72338, + 51.074132750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wiki-User-joost_schouppe-geveltuintjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-02T08:00:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000243032740999708, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98559761, + "host": "mapcomplete.osm.be", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23295315, + 51.19848565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-01T19:28:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000249845138000658, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98530962, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9621834, + 43.09315325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-01T18:45:43Z", + "reviewed_features": [], + "create": 4, + "modify": 24, + "delete": 0, + "area": 0.0417926529722997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98529536, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5935324499999997, + 51.0801166 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-01T15:00:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98519285, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1249256, + 52.0723886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-01T14:54:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98519021, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6856499, + 50.4803465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-01T14:21:27Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98517414, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1289433, + 52.0751935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-01T12:53:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98512905, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9011496, + 51.0901087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-01T10:24:09Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98502118, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7549933, + 51.1682088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-31T23:01:55Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 4.28969199977257e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102082219, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23100955000001, + -39.8449823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T22:23:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102081437, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3452181, + 44.4918527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-31T17:17:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.10184219999421e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102070461, + "host": "pietervdvn.github.io", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47904395, + 51.1638611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T15:45:47Z", + "reviewed_features": [], + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.000461537299639935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102066153, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3429674, + 44.49055415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T15:41:05Z", + "reviewed_features": [], + "create": 3, + "modify": 10, + "delete": 0, + "area": 0.000488881904280066, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102065964, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3430292, + 44.4900047 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T14:20:18Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.11753039999661e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102061652, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.237850249999999, + 50.7356509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8578720479", + "name": "Op Wielekes Muide-Meulestede", + "osm_id": 8578720479, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "amenity": "bicycle_library" + } + }, + { + "url": "node-8578970267", + "name": "Op Wielekes Muide-Buurtloods", + "osm_id": 8578970267, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "amenity": "bicycle_library" + } + }, + { + "url": "node-8578716211", + "name": "Op Wielekes Brugse Poort", + "osm_id": 8578716211, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T13:30:20Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00216787297286009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102059060, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.722367, + 51.06025905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8578982212", + "name": "Op Wielekes Heilig Hart", + "osm_id": 8578982212, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "amenity": "bicycle_library" + } + }, + { + "url": "node-8578989106", + "name": "Op Wielekes Ledeberg", + "osm_id": 8578989106, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "amenity": "bicycle_library" + } + }, + { + "url": "node-8578970267", + "name": "Op Wielekes Muide-Buurtloods", + "osm_id": 8578970267, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Eva Fietsambassade", + "uid": "12967061", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-31T11:46:57Z", + "reviewed_features": [], + "create": 4, + "modify": 21, + "delete": 0, + "area": 0.00320180883804028, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102053164, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7259104499999998, + 51.0442976 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T11:26:23Z", + "reviewed_features": [], + "create": 8, + "modify": 11, + "delete": 0, + "area": 0.0000584013824799643, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102051867, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.333306, + 44.4993477 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T11:12:41Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000272391111300007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102050957, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.33470305, + 44.50277775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T11:12:01Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102050912, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3382193, + 44.5048172 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #localrevision", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-31T10:59:12Z", + "reviewed_features": [], + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.00000671053630000524, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102049993, + "host": "pietervdvn.github.io", + "theme": "localrevision", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72181375, + 41.220075800000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten Vrebos", + "uid": "2359612", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-31T10:58:50Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000907470661500307, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102049972, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45347285, + 51.18067835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #fitness_station", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T10:37:50Z", + "reviewed_features": [], + "create": 5, + "modify": 14, + "delete": 0, + "area": 0.0000463990202499652, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102048412, + "host": "mapcomplete.osm.be", + "theme": "fitness_station", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68603245, + 51.04304185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8578720479", + "osm_id": 8578720479, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "bicycle_library" + } + }, + { + "url": "node-8578716211", + "name": "Op Wielekes Brugse Poort", + "osm_id": 8578716211, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Eva Fietsambassade", + "uid": "12967061", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-31T10:11:48Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 0.000689002046790121, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102046524, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71299535, + 51.07116415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Kinjkajh", + "uid": "12107222", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-30T20:11:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000026075676419979, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102007350, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88819725, + 51.0026768 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.3b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-30T15:40:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101996119, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.310816, + 44.4956116 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.3b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-30T15:29:35Z", + "reviewed_features": [], + "create": 25, + "modify": 30, + "delete": 0, + "area": 0.000363361021730053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101995576, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.31224255, + 44.49972205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8574926839", + "name": "SELIM - Banco de Bicicletas", + "osm_id": 8574926839, + "reasons": [ + 43 + ], + "version": 7, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.3b", + "comment": "Adding data with #MapComplete for theme #bicyclelib", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-30T14:43:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101993159, + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.1330343, + 38.7351593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "R Felix", + "uid": "11207593", + "editor": "MapComplete 0.6.3a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-30T11:40:48Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000211367961999858, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101981953, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.13839015, + 38.7223661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8574926839", + "name": "SELIM - Banco de Bicicletas", + "osm_id": 8574926839, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "R Felix", + "uid": "11207593", + "editor": "MapComplete 0.6.3a", + "comment": "Adding data with #MapComplete for theme #bicyclelib", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-30T11:33:05Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101981404, + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.1330343, + 38.7351593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.3a", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-30T09:51:57Z", + "reviewed_features": [], + "create": 9, + "modify": 23, + "delete": 0, + "area": 0.000225127012139887, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101973779, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1372851, + 52.08506655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Kinjkajh", + "uid": "12107222", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-29T22:31:56Z", + "reviewed_features": [], + "create": 5, + "modify": 14, + "delete": 0, + "area": 0.0113287583699996, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101942872, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9689054500000003, + 50.9751826 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.3a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-29T17:00:43Z", + "reviewed_features": [], + "create": 21, + "modify": 27, + "delete": 0, + "area": 0.000157813111599962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101930669, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3536417, + 44.5388807 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.3a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-29T13:03:34Z", + "reviewed_features": [], + "create": 5, + "modify": 8, + "delete": 0, + "area": 5.19124879999881e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101919443, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0958256, + 50.99626495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.3a", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-29T12:43:02Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000125341343999999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101918321, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09523855, + 50.995809300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T23:41:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101892733, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.37163425, + 47.6802721 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T23:26:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.69652520004581e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101892444, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1760177, + 51.01786285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T23:18:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000335868545820107, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101892297, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.94073589999999, + 40.58705475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michel Stuyts", + "uid": "62284", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T22:55:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000221216707799775, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101891909, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46093245, + 51.1793589 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tastrax", + "uid": "712752", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T21:30:18Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101890254, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 148.0752161, + -42.1237047 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T21:16:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.77196549999459e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101889954, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15613075, + 51.01908525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sharwin_F", + "uid": "147555", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #wherethesidewalkshavenoname", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T21:09:58Z", + "reviewed_features": [], + "create": 0, + "modify": 98, + "delete": 0, + "area": 0.0000918317736599929, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101889823, + "host": "mapcomplete.osm.be", + "theme": "wherethesidewalkshavenoname", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1795777000000003, + 41.43358645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T18:27:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101885043, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.163357, + 51.1860935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Devolved", + "uid": "663717", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T18:25:29Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000293467339999062, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101884979, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -118.7131072, + 34.09303185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bbigras", + "uid": "7226", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T16:34:25Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101881241, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.6572492, + 45.5734327 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T16:12:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.68714999994805e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101880355, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9091482, + 53.60843175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "grouper", + "uid": "369983", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T15:37:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101879051, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -80.2696517, + 27.1695582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T15:25:26Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 1.81583220002028e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101878531, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.126649649999999, + 51.0239939 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T14:41:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00109529919594016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101876634, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.196214600000001, + 45.45284085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoka", + "uid": "818053", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T13:23:49Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000283911770250118, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101873402, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.15159525, + 48.559054849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T13:16:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101873159, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1102693, + 45.4307345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JackGilmore", + "uid": "11412261", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T12:54:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101872302, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.9139572, + 56.1184677 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ptjamp", + "uid": "12828211", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T12:35:14Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.0000730267852499537, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101871590, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96018855, + 51.21921105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T12:18:38Z", + "reviewed_features": [], + "create": 3, + "modify": 9, + "delete": 0, + "area": 1.45321019999903e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101870926, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22379395, + 51.2099135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T12:16:01Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000463036517680166, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101870809, + "host": "mapcomplete.osm.be", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2070707, + 51.2057659 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jez Nicholson", + "uid": "7329", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T11:16:12Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.00000321843779998359, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101868814, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13932645, + 50.8420987 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ptjamp", + "uid": "12828211", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T09:15:16Z", + "reviewed_features": [], + "create": 39, + "modify": 67, + "delete": 0, + "area": 0.000604927090949943, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101865315, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92375535, + 51.22478025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-27T19:57:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101852349, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6707891, + -33.435642 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "klimaanvzw", + "uid": "6799245", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-27T16:25:48Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101844159, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.473981, + 51.0323917 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-27T15:22:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.94943819998806e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101841292, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.211270150000001, + 51.511902000000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-27T11:55:35Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00015031671254999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101834425, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34247735, + 51.47048595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-27T11:24:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101833538, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1234536, + 52.0823233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-27T09:10:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.20729839999396e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101829358, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1308647999999994, + 50.998833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-27T08:58:17Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 1.53201279999393e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101829031, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.115708850000001, + 52.09265499999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T21:38:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000103546350001022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101818728, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68893315, + 51.163898 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jayjay420", + "uid": "12932140", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T19:19:28Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101813152, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3853565, + 51.1826524 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8564837988", + "osm_id": 8564837988, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-26T16:48:43Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00124414500731986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101805447, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.272129250000001, + 51.4820573 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #stolpersteine", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-26T16:48:08Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101805410, + "host": "mapcomplete.osm.be", + "theme": "stolpersteine", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4892502, + 51.9009947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-26T14:55:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101799330, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7208301, + 51.0541539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-26T13:35:26Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101795137, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7219512, + 51.0594005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-26T13:15:34Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 9.75252000026907e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101794174, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7285763, + 51.05652275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-26T13:06:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101793666, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7197948, + 51.0466304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "adrigrillo", + "uid": "8553087", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #1roadAlllanes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T12:35:11Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000758595419999425, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101792066, + "host": "mapcomplete.osm.be", + "theme": "1roadalllanes", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8326445, + 40.343163950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T11:05:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000109834659900034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101785908, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12564165, + 52.07643485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T10:57:07Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.000643437310979984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101785278, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3815402, + 52.114142150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T09:43:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101780104, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.127792, + 52.0844943 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T08:57:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101776584, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8825673, + 51.0015189 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Kinjkajh", + "uid": "12107222", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T08:40:08Z", + "reviewed_features": [], + "create": 7, + "modify": 21, + "delete": 0, + "area": 0.000214072264999992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101775201, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8802570999999997, + 51.0059073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T08:01:57Z", + "reviewed_features": [], + "create": 11, + "modify": 31, + "delete": 0, + "area": 0.000410032655679863, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101772453, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4184579, + 51.0117709 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "GOwin", + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T02:11:50Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2021-03-31T08:35:11.939748Z", + "id": 101751716, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9419389, + 10.328426 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #HailHydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-25T19:31:14Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0124425949989198, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101741727, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6656229499999995, + 52.0207697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-25T06:09:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101690921, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3953575, + 52.1045726 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-25T05:48:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101689560, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3775823, + 52.1116123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T22:13:40Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101676357, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7139395, + 51.0418714 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T21:57:30Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101675962, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7197948, + 51.0466304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Túllio", + "uid": "1206082", + "editor": "MapComplete 0.6.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T20:45:39Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0000510315243100416, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101673428, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.26973085, + -16.60013685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.6.0a-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-24T19:22:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101670098, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4784087, + 51.0338428 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-24T18:28:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.01108000031619e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101668002, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66624475, + -33.440266699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T18:02:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101666752, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7232309, + 51.0422215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-24T17:24:56Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00899156275874988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101664459, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2631580499999995, + 51.50908565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T16:55:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101662824, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3313426, + 44.5151128 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T16:53:20Z", + "reviewed_features": [], + "create": 8, + "modify": 9, + "delete": 0, + "area": 0.0000482288473600107, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101662737, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3356062, + 44.517966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-24T15:45:52Z", + "reviewed_features": [], + "create": 2, + "modify": 49, + "delete": 0, + "area": 0.0000313566326700071, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101659153, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "nrw_dtm_wms", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21842755, + 51.485547049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-24T15:24:33Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000372391762999671, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101658081, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2188914, + 51.48180605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T15:14:41Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00000375462120001069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101657473, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23447, + 50.7330014 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T14:21:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101653974, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2165796, + 51.1966576 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.0a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-23T21:26:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101599503, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6656069, + -33.4402674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.0a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-23T20:32:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.12884870000893e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101597611, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66695304999999, + -33.440989450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.6.0a-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-23T20:01:49Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000980473531760373, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101596541, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5108385, + 51.026933299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-23T19:35:30Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101595539, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3460846, + 44.4968805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.0a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-23T18:34:10Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.1322779999945e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101593442, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6655717, + -33.440496100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-23T11:31:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000164057029499718, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101570350, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.94311354999999, + 10.32842665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "frank vanhyfte", + "uid": "1026732", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-23T11:18:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.91894000048929e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101569443, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68050505, + 51.0730919 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-23T10:30:30Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000287492839400146, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101565776, + "host": "mapcomplete.osm.be", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2264808499999997, + 51.218427899999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-23T09:07:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101559560, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3628355, + 50.9308665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-23T07:50:46Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 6.88917699991294e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101554176, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12660875, + 52.056700649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-22T13:25:51Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000851525188799603, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101508098, + "host": "mapcomplete.osm.be", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2268238, + 51.2090664 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-22T12:54:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101506285, + "host": "pietervdvn.github.io", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1165435, + 50.7941926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-22T09:18:24Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101488654, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0017191, + 51.0972734 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-22T01:30:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101462703, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6665444, + -33.4402128 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.15", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-22T01:14:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000156341405000424, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101462501, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6964697500000003, + 51.05501175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-21T22:34:28Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.92484599994863e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101459868, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6657956, + -33.44041345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.15", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-21T19:57:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000339179132160143, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101455414, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1589093, + 51.3234098 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-21T17:18:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000848231955999079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101449724, + "host": "pietervdvn.github.io", + "theme": "grb", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21142225, + 51.2136497 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.15", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-21T15:13:34Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101443809, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2413718, + 51.2033866 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.15", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-21T13:06:07Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.0000157727611999898, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101438434, + "host": "mapcomplete.osm.be", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2214650999999996, + 51.216511999999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-20T19:58:14Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101416023, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0084192, + 51.0455108 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-20T16:03:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101393058, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2301736, + 51.2136117 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #geveltuintjes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-20T15:57:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101392787, + "host": "mapcomplete.osm.be", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5483264, + 51.0209132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-20T15:51:11Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.80499000011188e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101392509, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24357795, + 51.21016885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-20T15:31:50Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00000324807600001315, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101391692, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2896052, + 44.5163488 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-20T14:42:16Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000192424060159853, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101389783, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9269886, + 42.685478599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-20T11:03:03Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.00000283719652999949, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101382253, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.340170449999999, + 44.496238950000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-20T05:48:36Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101375598, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6649128, + -33.4397615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MojoMax", + "uid": "12883471", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T19:22:03Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101348816, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.1488974, + 37.3021427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T12:35:40Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000443547377000435, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101330064, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4802631, + 51.03197145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tyr_asd", + "uid": "115612", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T09:30:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101314914, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2492109, + 46.4635196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tyr_asd", + "uid": "115612", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T09:00:07Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 7.70876353974193, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101312750, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.976179949999999, + 47.91576445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T03:54:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101294518, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6660433, + -33.4407233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T03:48:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101294343, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6666115, + -33.4410701 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T00:21:00Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101290552, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5606231, + -33.5923823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-18T21:05:26Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00127138722432022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101285518, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.243217700000001, + 51.0670852 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-18T20:31:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101284366, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4733506, + 51.0203947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-18T13:31:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.03030929991721e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101263817, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.56981865, + -33.592443349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-18T09:14:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101243945, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1524921, + 52.0273061 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-18T05:05:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.05999999724389e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101226298, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.56948514999999, + -33.5930872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Necessarycoot72", + "uid": "10882995", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-18T01:52:45Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.52199999583916e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101219521, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.4816568, + 43.29756645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-17T22:48:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101216733, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7089318, + 51.0506301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GettyYetty21", + "uid": "12869632", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-17T20:44:50Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101213106, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -90.0541458, + 29.9774995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-17T15:06:26Z", + "reviewed_features": [], + "create": 10, + "modify": 18, + "delete": 0, + "area": 0.0000357316394099915, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101198354, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.32365545, + 44.512713149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-17T13:27:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101192583, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.666804, + -33.4402386 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-17T09:59:38Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101178103, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1165435, + 50.7941926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-17T09:50:45Z", + "reviewed_features": [], + "create": 8, + "modify": 17, + "delete": 0, + "area": 0.0000945018982800122, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101177425, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2128207, + 51.0556986 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Overmja", + "uid": "11334578", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-17T09:48:19Z", + "reviewed_features": [], + "create": 55, + "modify": 82, + "delete": 0, + "area": 0.00323991005819992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101177218, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60811895, + 50.9562043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-17T08:37:29Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101171670, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2008889, + 51.0566202 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-17T07:32:01Z", + "reviewed_features": [], + "create": 24, + "modify": 46, + "delete": 0, + "area": 0.000282281801270036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101166909, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19744225, + 51.05136925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jemily1", + "uid": "11155676", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #crossingtime", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-16T23:01:16Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000500687336379981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101147703, + "host": "pietervdvn.github.io", + "theme": "crossingtime", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.4834303, + 38.36955365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sharwin_F", + "uid": "147555", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T20:09:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101142626, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1781891, + 41.4326157 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OPerivar", + "uid": "51324", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T20:04:48Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101142493, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.544343, + 52.9864598 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sharwin_F", + "uid": "147555", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #wherethesidewalkshavenoname", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T20:01:39Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000301774724998642, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101142390, + "host": "mapcomplete.osm.be", + "theme": "wherethesidewalkshavenoname", + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17913625, + 41.43186095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T20:01:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101142389, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9818392, + 51.3173752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T19:44:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101141686, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5569267, + 51.1851613 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bryceco", + "uid": "624323", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-16T17:30:42Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.90223200000731e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101136189, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.21284295000001, + 47.6795755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-16T17:20:15Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101135663, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3164676, + 44.506155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-16T14:22:56Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101127309, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1365871, + 52.0626422 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-16T13:50:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000178810650800202, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101125548, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43328855, + 51.1656861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-16T12:50:12Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000816834899999988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101122448, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7036862, + 51.05718505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T06:45:24Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 3.963477600089e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101095488, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66710950000001, + -33.4395362 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T02:35:46Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.48324999957839e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101082113, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66820335, + -33.43917225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-15T18:31:26Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 8.10745300004477e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101069649, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55219895, + 44.3052706 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-15T18:14:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101068744, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4776314, + 51.0320371 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-15T15:35:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000280876459996775, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101061414, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3385643, + 44.5058257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.5.10", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-15T08:46:15Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00000162359852000073, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101035070, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9340209, + 50.883268150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Technopolice_newBiE", + "uid": "12219485", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-15T00:35:23Z", + "reviewed_features": [], + "create": 68, + "modify": 36, + "delete": 0, + "area": 0.0000222767179600149, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101012269, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "Stadia.AlidadeSmoothDark", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3379058, + 50.8331733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-14T18:56:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101003973, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2829442, + 50.7023665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whturner", + "uid": "3667103", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-14T15:18:00Z", + "reviewed_features": [], + "create": 4, + "modify": 8, + "delete": 0, + "area": 0.00000210708520000632, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100993948, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.015015999999999, + 50.890615600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.10", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-14T15:02:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.62618720000647e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100993328, + "host": "pietervdvn.github.io", + "theme": "speelplekken", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2182265, + 51.2187983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-14T14:48:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100992716, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1174573, + 45.4932035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-14T10:43:42Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00000341774120000285, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100983734, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1320768, + 52.08401 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.10", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-14T01:32:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.26800799994738e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100975031, + "host": "127.0.0.1:1234", + "theme": "speelplekken", + "imagery": "AGIV10cm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3764752, + 51.1887924 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-13T15:48:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100958601, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7288407, + 51.0483444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 2, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-13T12:33:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100951681, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2896939, + 50.7282592 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-12T16:29:09Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100920070, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7089667, + 51.0339914 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-12T16:21:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100919638, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7040289, + 51.0406965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-12T09:42:24Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000122744897599938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100896599, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08200655, + 53.0501675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-11T21:42:56Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100865857, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6653146, + -33.4405225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-11T20:36:45Z", + "reviewed_features": [], + "create": 9, + "modify": 37, + "delete": 0, + "area": 7.45613669997234e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100863722, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66601005, + -33.44084985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-11T12:25:08Z", + "reviewed_features": [], + "create": 9, + "modify": 16, + "delete": 0, + "area": 4.03462090002061e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100842093, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.33608835, + 44.52161945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-11T11:12:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.05137780002534e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100837457, + "host": "mapcomplete.osm.be", + "theme": "buurtnatuur", + "imagery": "osm", + "language": "nl", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166172, + 51.213796349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whturner", + "uid": "3667103", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-11T11:03:57Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 3.44285999989094e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100836888, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01534855, + 50.8911562 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-11T10:43:25Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 7.28544960007158e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100835527, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12534365, + 52.0751711 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-11T10:32:31Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000542918248000137, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100834775, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1237834, + 52.077176 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-11T10:23:18Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 8.06293019999391e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100834132, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12364815, + 52.0812872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-10T21:32:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100802530, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4784087, + 51.0338428 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-10T21:12:38Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.0000498387859199988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100801897, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.475491, + 51.0262159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-10T19:25:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100797468, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4784087, + 51.0338428 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-10T18:06:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100794576, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.9977143, + 37.097959 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-10T16:16:53Z", + "reviewed_features": [], + "create": 11, + "modify": 14, + "delete": 0, + "area": 0.000582387576800101, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100789874, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.328988599999999, + 44.512492949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-10T08:52:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100763657, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.1790775, + 37.2334741 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-10T05:15:56Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 4.89886160002107e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100748361, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66584835, + -33.4402704 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-09T20:34:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00985802334047926, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100732356, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.7009194, + 37.1252454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-09T17:07:48Z", + "reviewed_features": [], + "create": 38, + "modify": 51, + "delete": 0, + "area": 0.0000898177993199541, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100724260, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3579385, + 44.510412849999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whturner", + "uid": "3667103", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-09T15:33:24Z", + "reviewed_features": [], + "create": 4, + "modify": 12, + "delete": 0, + "area": 1.66896409999921e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100719899, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0149703500000005, + 50.89125935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-09T12:26:47Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 4.30170000022433e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100710537, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3577996, + 44.50819825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8499095699", + "osm_id": 8499095699, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8499121603", + "osm_id": 8499121603, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-09T07:56:07Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 6.5611750001198e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100688874, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7806433999999998, + 39.64794675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-09T07:44:15Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000523120859999823, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100687881, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "ca", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7728815, + 39.648012 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-09T07:39:35Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000167815897599945, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100687422, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7744178, + 39.64887685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-08T17:56:06Z", + "reviewed_features": [], + "create": 18, + "modify": 38, + "delete": 0, + "area": 0.0000150781255999794, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100654596, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.342334300000001, + 44.5084494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whturner", + "uid": "3667103", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-08T15:53:19Z", + "reviewed_features": [], + "create": 3, + "modify": 9, + "delete": 0, + "area": 0.0000180776124899785, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100649005, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0111361500000005, + 50.88470185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-08T11:27:41Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 5.95725040000472e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100633150, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1077964, + 52.0957511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-08T09:06:15Z", + "reviewed_features": [], + "create": 2, + "modify": 15, + "delete": 0, + "area": 0.138063944963523, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100621555, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2947933, + 51.08497405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "murghdo", + "uid": "2418845", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-08T06:14:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100608902, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0356957, + -12.1281742 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "murghdo", + "uid": "2418845", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-08T06:04:04Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000825854985799599, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100608285, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0412662, + -12.12189475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [ + { + "id": 9, + "name": "Resolved" + } + ], + "features": [ + { + "url": "node-747272797", + "osm_id": 747272797, + "reasons": [ + 42 + ], + "version": 2, + "primary_tags": {} + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 2, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-07T20:17:17Z", + "reviewed_features": [], + "create": 2, + "modify": 14, + "delete": 0, + "area": 0.00225525447896014, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2021-03-17T09:58:48.181432Z", + "id": 100590572, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9569762, + 52.119684899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-07T20:06:42Z", + "reviewed_features": [], + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.00653361095519971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100590212, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9542906, + 52.130140600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-07T12:55:01Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 8.4268800006232e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100573127, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2100195, + 51.198730499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-06T22:29:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100555952, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2142827, + -39.8393394 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-06T21:13:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.73580999996537e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100554125, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70717715, + 51.029522 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-06T18:35:59Z", + "reviewed_features": [], + "create": 2, + "modify": 24, + "delete": 0, + "area": 0.000685707286100095, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100549103, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35958595, + 50.857106099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-06T15:40:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100541478, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2263631, + 45.4844916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-06T15:13:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000522458892799696, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100540347, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2561551, + 51.1574858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-05T22:12:32Z", + "reviewed_features": [], + "create": 11, + "modify": 4, + "delete": 0, + "area": 16.3858112236536, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100516584, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.94427285, + -36.640838450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-05T20:19:03Z", + "reviewed_features": [], + "create": 7, + "modify": 2, + "delete": 0, + "area": 0.70910855487766, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100513175, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.05959345, + -34.06783815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-8489877043", + "osm_id": 8489877043, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "LePirlouit", + "uid": "369248", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-05T18:27:07Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00185355261080998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100509237, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32665055, + 50.87935055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-05T17:57:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100507908, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2421657, + 50.7423639 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-05T16:32:25Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 1.41989000058269e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100503768, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66676885000001, + -33.44088895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "straynic", + "uid": "718977", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-05T15:18:45Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100500229, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1884112, + 45.1594003 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-05T09:26:52Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100478531, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "AGIV", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9615555, + 51.0704267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geojuffie", + "uid": "11680114", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T18:44:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100440532, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3217388, + 51.5843333 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geojuffie", + "uid": "11680114", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T18:39:36Z", + "reviewed_features": [], + "create": 5, + "modify": 4, + "delete": 0, + "area": 0.0000273957352799976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100440346, + "host": "pietervdvn.github.io", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31624695, + 51.5836589 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geojuffie", + "uid": "11680114", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T18:38:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100440258, + "host": "pietervdvn.github.io", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3290022, + 51.577778 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geojuffie", + "uid": "11680114", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T18:23:39Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.000473818941959872, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100439729, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3292972, + 51.5774994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T17:10:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.53535000085466e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100436673, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.57000074999999, + -33.59225365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Reino Baptista", + "uid": "2820801", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T16:35:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100435050, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.6782291, + 37.095724 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T14:24:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100428850, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6666959, + -33.4410356 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T10:41:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100414702, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9329197, + 50.8072454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-03T23:28:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100378312, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.37033735, + 47.6819544 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #wherethesidewalkshavenoname", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T23:00:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000147092644999494, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100377781, + "host": "mapcomplete.osm.be", + "theme": "wherethesidewalkshavenoname", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12598585, + 41.379443550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fx99", + "uid": "130472", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T21:13:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100375035, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.923514, + 48.6254402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T20:54:54Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 2.12803500005279e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100374476, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5712225, + -33.59082035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tom Ameye", + "uid": "12652421", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T19:46:00Z", + "reviewed_features": [], + "create": 1, + "modify": 30, + "delete": 0, + "area": 0.000450235096380033, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100372177, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.381626150000001, + 50.9309927 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fx99", + "uid": "130472", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T19:45:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000638663019999919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100372173, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8996291, + 48.6604416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fx99", + "uid": "130472", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T19:36:03Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000313847510279965, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100371897, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.904362299999999, + 48.622651000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tom Ameye", + "uid": "12652421", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T18:38:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000281795034001239, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100369859, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3761334000000005, + 50.93647335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tom Ameye", + "uid": "12652421", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T18:05:22Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000532196449199972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100368458, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38450825, + 50.928748600000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "karmickoala", + "uid": "12749531", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T14:21:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100357539, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9619181, + -19.8680519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-03T12:44:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100351890, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7196875, + 51.0458851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T05:54:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100320533, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5712297, + -33.5905869 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-02T23:51:44Z", + "reviewed_features": [], + "create": 37, + "modify": 31, + "delete": 0, + "area": 0.0000383030821400326, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100308444, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.67022890000001, + -33.44014905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Vucod", + "uid": "7814237", + "editor": "MapComplete 0.5.2b", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-02T20:01:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100302384, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "Stadia.AlidadeSmoothDark", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3555574, + 50.847501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-02T17:57:18Z", + "reviewed_features": [], + "create": 5, + "modify": 11, + "delete": 0, + "area": 4.92566159999276e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100297422, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.328579000000001, + 44.51435205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-02T16:09:50Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.00000504408659998437, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100291986, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.35641345, + 44.5013925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-02T12:22:35Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000011488671599994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100279509, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3491578, + 44.5004854 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-01T23:44:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100234767, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7196875, + 51.0458851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dodado", + "uid": "12742734", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T20:17:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000123022416280005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100228941, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "Metropole_Ruhr_RVR-DOP10", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2972979, + 51.469178850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T20:15:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100228867, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.706322, + 51.0513358 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gmartin314", + "uid": "12760932", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T17:40:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100222646, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1625554, + 51.5120398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-01T17:08:50Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100221069, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.714256, + 51.052328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Solieri Luciano", + "uid": "3436247", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T16:58:44Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100220460, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3704151, + 44.5026081 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T16:27:48Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.03984700017755e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100218886, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66606265, + -33.44069815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T16:07:15Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100217759, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1184193, + 51.028489 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T13:28:23Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.13412399996088e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100209616, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIVFlandersGRB", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11615415, + 51.023584 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-01T07:45:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100182404, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3522822, + 52.1307702 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lokaal bestuur Olen", + "uid": "12279833", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T07:05:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000884022097140003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100178688, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8869124, + 51.15442585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T04:25:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.19848399991033e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100167174, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66618135, + -33.4409388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T02:40:53Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000122173967999151, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100163727, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66593449999999, + -33.44053265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T01:43:11Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000112724416000444, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100162468, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66631659999999, + -33.4407037 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #fire", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-30T18:58:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103931344, + "host": "mapcomplete.braindeaddev.com", + "theme": "fire", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1559722, + 51.3128267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T12:35:07Z", + "reviewed_features": [], + "create": 0, + "modify": 61, + "delete": 0, + "area": 0.000193170262479891, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103913653, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6153566, + 51.97151955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T12:04:18Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103911612, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6686743, + 53.1217365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-30T11:28:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103909231, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6423829, + 51.7475349 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T10:56:46Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103906814, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6805995, + 53.0767525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Larmax", + "uid": "8105430", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T10:39:03Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000206041195749961, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103905526, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.64019285, + 60.14990365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-30T10:27:20Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103904671, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6457168, + 51.7436771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T09:34:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103900585, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7217118, + 50.2997137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-2745415999", + "osm_id": 2745415999, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-30T08:05:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103893667, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2208848, + 41.4434507 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T06:03:56Z", + "reviewed_features": [], + "create": 4, + "modify": 64, + "delete": 0, + "area": 0.000159324049689925, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103884702, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.604115050000001, + 51.96554185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-3215231020", + "osm_id": 3215231020, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": {} + } + ], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T04:02:17Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00289156397973999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103877994, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5753042, + 13.94833535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T01:04:57Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103874228, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5266097, + 13.9618558 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-29T20:07:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103867866, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3956956, + 51.0618712 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lunaticstraydog", + "uid": "8577239", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-29T19:05:04Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103865139, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1383536, + 48.4387268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jean-Marc Liotier", + "uid": "160042", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-29T16:24:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103857813, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1807232, + 48.905622 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael Baier", + "uid": "13203884", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-29T08:03:18Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103825106, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7777917, + 48.1106173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-29T00:34:45Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103805126, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 125.6132843, + 7.0810085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-28T20:43:41Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000580317375200199, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103800844, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3309564, + 51.0008052 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T19:53:17Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000891805844800018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103799210, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6052710999999995, + 51.964066900000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T18:45:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103796502, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2707072, + 48.8854112 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T17:13:23Z", + "reviewed_features": [], + "create": 1, + "modify": 22, + "delete": 0, + "area": 0.0000582844585199724, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103792251, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.612473700000001, + 51.966145850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T16:54:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103791227, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3437134, + 44.4926522 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tyr_asd", + "uid": "115612", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-28T14:36:03Z", + "reviewed_features": [], + "create": 0, + "modify": 27, + "delete": 0, + "area": 0.000366338069120043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103784297, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6807961, + 49.4082013 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T09:40:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.46418959992131e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103763467, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6853959, + 53.093366 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T09:14:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103761379, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.667859, + 53.0865434 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Globelotter", + "uid": "6141733", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-28T08:10:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.62456839999755e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103756614, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4785197, + 51.12169204999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T06:03:41Z", + "reviewed_features": [], + "create": 75, + "modify": 0, + "delete": 0, + "area": 0.00296507797509979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103747106, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60077925, + 51.984085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T20:11:22Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103729838, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7875312, + 51.2629135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T19:45:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000698386820500288, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103728876, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67172295, + 51.038554250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-8576230995", + "osm_id": 8576230995, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": {} + } + ], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #fire", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T19:31:16Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103728361, + "host": "mapcomplete.braindeaddev.com", + "theme": "fire", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.116502, + 51.2896921 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T18:39:37Z", + "reviewed_features": [], + "create": 167, + "modify": 0, + "delete": 0, + "area": 0.00227582688775975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103726335, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63582415, + 51.9747927 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Obsi", + "uid": "21602", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T16:16:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103718964, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 25.1359414, + 60.2843251 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T16:08:53Z", + "reviewed_features": [], + "create": 21, + "modify": 0, + "delete": 0, + "area": 0.0000865327225399693, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103718526, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66598825, + 51.9904876 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T16:08:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103718525, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.664737, + 51.9874499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946965667", + "osm_id": 3946965667, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965593", + "osm_id": 3946965593, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T15:48:32Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.89087999996114e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103717492, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2220553499999998, + 41.4406696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "meihou", + "uid": "581277", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T14:35:59Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.14479016379417, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103713935, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23545105, + 46.65985685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T14:16:24Z", + "reviewed_features": [], + "create": 33, + "modify": 0, + "delete": 0, + "area": 0.0000907497364799392, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103713018, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.664675750000001, + 51.983955800000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T13:35:08Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103710787, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7076497, + 51.0527377 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T12:18:06Z", + "reviewed_features": [], + "create": 12, + "modify": 0, + "delete": 0, + "area": 0.0000180911337199889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103706104, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.610163399999999, + 51.964806100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rico1913", + "uid": "13170820", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T11:20:41Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103702168, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4424327, + 51.5800064 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Will-Ink", + "uid": "13186657", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T07:30:51Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103684185, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "fr.ign.bdortho", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8990066, + 42.7019566 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947071300", + "osm_id": 3947071300, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8156135268", + "osm_id": 8156135268, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071335", + "osm_id": 3947071335, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071297", + "osm_id": 3947071297, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006834", + "osm_id": 3947006834, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8156135270", + "osm_id": 8156135270, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007005", + "osm_id": 3947007005, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007011", + "osm_id": 3947007011, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007143", + "osm_id": 3947007143, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006816", + "osm_id": 3947006816, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007384", + "osm_id": 3947007384, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007110", + "osm_id": 3947007110, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007315", + "osm_id": 3947007315, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966192", + "osm_id": 3946966192, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966169", + "osm_id": 3946966169, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007344", + "osm_id": 3947007344, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8202986695", + "osm_id": 8202986695, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006742", + "osm_id": 3947006742, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965615", + "osm_id": 3946965615, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965667", + "osm_id": 3946965667, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007055", + "osm_id": 3947007055, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946998686", + "osm_id": 3946998686, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946998743", + "osm_id": 3946998743, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731769", + "osm_id": 3944731769, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-6010958532", + "osm_id": 6010958532, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946998720", + "osm_id": 3946998720, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T06:26:54Z", + "reviewed_features": [], + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.0000383288180399955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103678765, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22121365, + 41.4388982 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T03:08:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103667810, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 122.5663318, + 10.6978999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T02:53:02Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103667364, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 122.5676608, + 10.6979935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T20:55:56Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00172381790175006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103660877, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52963305, + 52.06181755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T19:11:24Z", + "reviewed_features": [], + "create": 19, + "modify": 0, + "delete": 0, + "area": 0.000769466814479946, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103657133, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5399294999999995, + 52.060113099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "_Mathieu_", + "uid": "53964", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T18:29:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000586047077840257, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103655718, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2125226500000004, + 48.8769602 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skifans", + "uid": "2800603", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T13:13:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.07282739999468e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103640045, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6039803, + 53.81568985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T12:29:24Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00155642563628982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103637542, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77511055, + 51.04929225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T10:14:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103627326, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "fr.ign.bdortho", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9406506, + 42.6885199 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-6942691387", + "name": "Sliding Tiger", + "osm_id": 6942691387, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "shop": "skate" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T10:13:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103627272, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7367263, + 51.0567966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tux67", + "uid": "112465", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T08:41:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103619733, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2773693, + 51.1411478 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tux67", + "uid": "112465", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T08:37:16Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000254162852099904, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103619432, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27960755, + 51.13873235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T08:22:46Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103618326, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.8552731, + 9.651098 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tux67", + "uid": "112465", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T07:46:15Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000392928888860044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103615504, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29111495, + 51.138160799999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thomas Citharel", + "uid": "6105237", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T06:54:34Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000154282262499938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103611441, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55113455, + 47.23013 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thomas Citharel", + "uid": "6105237", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T06:52:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103611306, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5353583, + 47.2348378 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michael Nixt", + "uid": "6641970", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T06:49:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.68921880003523e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103611007, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.2946997, + 40.0078117 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T05:55:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103607085, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3127014, + 50.9999245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T21:28:14Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000456992045119921, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103592787, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9391837, + 42.67761245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eisenspleiszer", + "uid": "1954432", + "editor": "MapComplete 0.7.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T18:58:34Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.00000681795920000687, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103587980, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6827261, + 51.0711484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T17:50:09Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103585340, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.9209982, + 40.5834518 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.7.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T17:20:10Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103584107, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2710022, + 48.8856122 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sorcrosc", + "uid": "160229", + "editor": "MapComplete 0.7.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T17:06:55Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103583598, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9228187, + 43.7338638 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Matthieu FAURE", + "uid": "6505140", + "editor": "MapComplete 0.7.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T16:26:15Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000148144850099932, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103582067, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87308755, + 43.605526749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T13:45:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103575209, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6633976, + 50.8056975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kevo", + "uid": "40964", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T13:26:49Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000497309260799623, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103574380, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.857119, + 43.252467499999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T12:40:24Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103572648, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.1892235, + 44.6373819 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TeleTommy", + "uid": "579722", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T11:44:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103570626, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3503836, + 52.5298945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T11:12:32Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 6.35737799999725e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103569305, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65447915, + 50.822216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T11:03:43Z", + "reviewed_features": [], + "create": 3, + "modify": 12, + "delete": 0, + "area": 1.17110070006528e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103568967, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.77156935, + 48.07982595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BoumTAC", + "uid": "2919291", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T10:27:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000024813679799997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103567684, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4189151, + 43.65091185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T10:05:38Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000013801789599958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103566900, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3408582, + 44.4997321 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T09:13:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103565210, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3260135, + 51.000644 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T07:11:21Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103561909, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3244923, + 50.9997912 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T03:27:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103558695, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0828409, + 14.6596073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-24T18:51:15Z", + "reviewed_features": [], + "create": 3, + "modify": 15, + "delete": 0, + "area": 4.47544000015647e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103549083, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7667222, + 48.112535300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-24T16:30:27Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103544375, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1001049, + 51.0165051 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-24T13:45:28Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.0000200319622800068, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103537961, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.765712350000001, + 48.1083301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-24T12:25:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103534538, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3776462, + 52.1109647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lunaticstraydog", + "uid": "8577239", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-24T11:34:03Z", + "reviewed_features": [], + "create": 3, + "modify": 10, + "delete": 0, + "area": 3.96168999980734e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103532232, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19442785, + 48.493589 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-24T10:44:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.20073479998934e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103529906, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.13276005, + 37.8570153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-24T09:21:48Z", + "reviewed_features": [], + "create": 1, + "modify": 13, + "delete": 0, + "area": 0.0000324993337099901, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103525894, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12519655, + 52.087020949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-24T08:31:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103523507, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2903521, + 50.7295549 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-24T03:51:10Z", + "reviewed_features": [], + "create": 4, + "modify": 16, + "delete": 0, + "area": 1.19976958362198, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103512374, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.9609121, + 13.741767549999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8660380917", + "osm_id": 8660380917, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "bicycle_wash" + } + } + ], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-23T20:50:07Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103505587, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3496761, + 50.8484877 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-23T14:57:48Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.3517208000206e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103490224, + "host": "127.0.0.1:1234", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4736377, + 51.127487099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-23T13:28:06Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103485405, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2673597, + 50.6998045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-23T13:27:30Z", + "reviewed_features": [], + "create": 10, + "modify": 24, + "delete": 0, + "area": 0.279065994180779, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103485381, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 122.06508794999999, + 13.8806443 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-23T09:53:19Z", + "reviewed_features": [], + "create": 9, + "modify": 31, + "delete": 0, + "area": 0.405043122462078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103471234, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.98013900000001, + 13.76260375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-23T09:48:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103470879, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5592763, + 13.9654559 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-23T06:05:05Z", + "reviewed_features": [], + "create": 22, + "modify": 35, + "delete": 0, + "area": 0.00300872569368029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103454072, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5693514, + 13.9474464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-23T05:11:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103450456, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 125.6069952, + 7.0685686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-23T03:34:34Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 3.68000001104742e-12, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103445880, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.94137945, + 10.3282972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-23T03:22:51Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103445557, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.27791745, + 47.7566983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-22T20:47:55Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.12602000003654e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103437168, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.709485, + 51.05970835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T19:32:10Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000053929174799905, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103433755, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6331276, + 51.0123862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mannivu", + "uid": "1950277", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T16:58:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.144000000789e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103426836, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.644862199999999, + 45.496666399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lunaticstraydog", + "uid": "8577239", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T15:40:40Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 5.10811200000936e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103423398, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1979603, + 48.47839345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "augxcgrwxo", + "uid": "371263", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T15:28:31Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000101243733580009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103422786, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 37.61821865, + 55.7135046 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-22T13:21:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103415960, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7043881, + 51.0527373 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T12:09:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103411505, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3516804, + 48.9176894 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bezzeke2", + "uid": "13134201", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T11:43:24Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103409605, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8206109, + 50.9322662 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-22T10:37:21Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103404533, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "fr.ign.bdortho", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9264483, + 42.6576455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-22T10:20:01Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.00000402455133999788, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103403231, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5602278, + 13.963747349999998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T07:57:20Z", + "reviewed_features": [], + "create": 7, + "modify": 8, + "delete": 0, + "area": 0.00000529894613999749, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103391474, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3956645500000002, + 51.035928600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T07:43:53Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000214772534330083, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103390492, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40144025, + 51.04021015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T07:43:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103390457, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3955539, + 51.041811 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T07:40:37Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103390249, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1246316, + 52.0640521 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jonesydesign", + "uid": "1802220", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-22T05:44:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103380918, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -93.2266867, + 44.9250087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-22T04:45:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103376804, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5611337, + 13.964858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.9a", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T00:51:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.09371200014009e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103368989, + "host": "127.0.0.1:1234", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.452056499999999, + 51.16578 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.6.8b", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T23:04:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103367247, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.4353854, + 38.4095972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.6.8b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T23:02:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103367189, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.4355031, + 38.4107301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T18:34:16Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103359495, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3996981, + 51.0422216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T18:25:42Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 8.30502400006219e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103359206, + "host": "pietervdvn.github.io", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39846125, + 51.040937400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-21T16:37:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103354074, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7083597, + 51.0344284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RudiEn", + "uid": "10472364", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T16:25:24Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.0000311663818800177, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103353500, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33376155, + 60.3956242 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-21T13:52:09Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000386776096000311, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103345352, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61190895, + 51.966736499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T13:18:02Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103343609, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9453466, + 10.326233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T12:38:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.04053999960899e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103341339, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.43544065, + 38.4097843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947071291", + "osm_id": 3947071291, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.9a", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T10:24:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103331539, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2201841, + 41.4424398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cimm", + "uid": "3921", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T08:55:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103324534, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6998021, + 50.8794035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-21T07:39:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.21519999970574e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103318797, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26013865, + 50.7373888 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-21T06:25:03Z", + "reviewed_features": [], + "create": 9, + "modify": 7, + "delete": 0, + "area": 0.00847515906144041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103313082, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4389646, + 51.6000302 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-21T06:19:16Z", + "reviewed_features": [], + "create": 1, + "modify": 46, + "delete": 0, + "area": 0.0147562411059001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103312624, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46051495, + 51.6131807 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T22:35:23Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000356402175995795, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103297645, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.377617, + 50.863287 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T21:59:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.46211499997355e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103296793, + "host": "127.0.0.1:1234", + "theme": "speelplekken", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34342565, + 51.11081085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T21:08:43Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.000269667628399887, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103295478, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2309894, + 51.562237350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "relation-3970676", + "osm_id": 3970676, + "reasons": [ + 42 + ], + "version": 6, + "primary_tags": {} + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T20:35:46Z", + "reviewed_features": [], + "create": 2, + "modify": 29, + "delete": 0, + "area": 0.00338411077554092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103294317, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24147635, + 51.5658794 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T19:19:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103291488, + "host": "pietervdvn.github.io", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6996553, + 51.0521448 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Loshu", + "uid": "198183", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T19:07:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.89060000116434e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103291002, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.59393635, + 47.4109246 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T18:30:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.04431060000529e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103289583, + "host": "127.0.0.1:1234", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.348305699999999, + 51.112392850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T18:16:25Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 3.08499999988366e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103289112, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34877945, + 50.8676184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "geometrix", + "uid": "726983", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T16:42:49Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.55619859997901e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103284303, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.41285429999999, + 42.51649165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T16:04:09Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000233138604000312, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103282552, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6319973, + 46.75648255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T15:33:36Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103281267, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2675099, + 50.7129995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T13:36:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103275319, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2930548, + 51.5605659 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T13:02:22Z", + "reviewed_features": [], + "create": 5, + "modify": 10, + "delete": 0, + "area": 0.0000484969809199723, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103273460, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1236589, + 52.06611545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T12:54:57Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 2.9967599998491e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103273018, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2029236, + 52.01746955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T12:29:30Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000468437978199805, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103271439, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33383325, + 51.5352116 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T12:19:49Z", + "reviewed_features": [], + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.00299584793991967, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103270749, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3191073, + 51.544087399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T12:03:53Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103269560, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2022732, + 50.9096269 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T11:50:23Z", + "reviewed_features": [], + "create": 8, + "modify": 17, + "delete": 0, + "area": 0.000319633404920009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103268470, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1285244500000005, + 52.0633839 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T11:32:42Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000139774499999782, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103266935, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1310661500000005, + 52.0734135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T11:24:13Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000133777874999957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103266171, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19407185, + 50.9226867 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michel Stuyts", + "uid": "62284", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T11:12:45Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103265243, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2296129, + 49.9212138 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T10:54:15Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000112191495000005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103263799, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1980299500000005, + 50.928646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T10:46:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103263170, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3440142, + 51.5417397 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T10:23:16Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000341195505599984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103261415, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36784805, + 51.5519979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T10:07:12Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000134978694999974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103260014, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19466695, + 51.0505694 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T20:57:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103222342, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.1176319, + 37.9059134 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "oscar331", + "uid": "13105112", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T20:56:13Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.96463999997482e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103222324, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.72286005000001, + -33.4337893 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T20:32:55Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103221632, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1118165, + 50.999427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T20:11:45Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103220970, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1256514, + 50.9924841 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T17:58:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103216363, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3918089, + 50.8457251 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-19T14:36:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103205616, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1251972, + 52.0803334 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ianp5a", + "uid": "3665018", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T13:53:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103203158, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.551116, + 48.1437266 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kersentaart", + "uid": "9812520", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-19T12:41:16Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000967734501789375, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103198865, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64203045, + 51.064950350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Petymag", + "uid": "323895", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T11:46:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103195164, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.7153246, + 46.3473224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Petymag", + "uid": "323895", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T11:38:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103194538, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.5310107, + 46.2983756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Larmax", + "uid": "8105430", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T10:31:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000114287077149888, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103189465, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.72087295, + 60.164690050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ozmium", + "uid": "1755379", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T10:29:30Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103189317, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 19.0979565, + 47.559217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ianp5a", + "uid": "3665018", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T09:08:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103182758, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.5143081, + 48.1391637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nix78", + "uid": "57470", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T08:44:05Z", + "reviewed_features": [], + "create": 7, + "modify": 11, + "delete": 0, + "area": 0.00455334018054976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103180679, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 19.21700565, + 47.48696645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nix78", + "uid": "57470", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T08:22:40Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103178974, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 19.237448, + 47.4826637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gabriele_sani", + "uid": "7078274", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T08:20:46Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103178811, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.883755, + 44.2846558 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kersentaart", + "uid": "9812520", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-19T07:33:08Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.0110833813761602, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103175160, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6449865, + 51.0940244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Johnny Carlsen", + "uid": "38985", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T07:06:55Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00403107807199988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103173062, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 99.1390195, + 18.7485279 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sam Wilson", + "uid": "36235", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T23:45:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103157057, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 115.768089, + -32.055927 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ShakyIsles", + "uid": "1968467", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T23:31:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.61977999954336e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103156898, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 175.2197404, + -40.46107615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Discostu36", + "uid": "8265165", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T20:53:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103153907, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1239779, + 54.3264599 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T20:15:39Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00317797638605992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103152905, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.10913835, + 37.8621806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T20:03:02Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000119049140999968, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103152539, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.1293489, + 37.8943816 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "greeninsano", + "uid": "13111722", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T19:54:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103152292, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 25.4270774, + 57.3837463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T19:53:16Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00796069173495001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103152262, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.09752765, + 37.84683495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mex", + "uid": "54831", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T16:56:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.12640000003352e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103146450, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.8391177999999999, + 51.130258 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NLthijs48", + "uid": "2997785", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T16:42:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.31581600007204e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103145897, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9073992, + 52.404361949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T15:53:05Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.000367336449479934, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103143869, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.17043415, + 41.0795563 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T15:33:16Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00031673534139991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103143021, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.1569461, + 41.08970645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T15:16:30Z", + "reviewed_features": [], + "create": 0, + "modify": 42, + "delete": 0, + "area": 0.268738891313764, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103142359, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.02470170000001, + 41.408981100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T15:04:44Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00531850202624015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103141835, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.21750209999999, + 41.0497343 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T14:15:23Z", + "reviewed_features": [], + "create": 3, + "modify": 33, + "delete": 0, + "area": 0.00130231914814981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103139801, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.15871295, + 41.08753605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T14:13:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.71949999831865e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103139706, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.18066114999999, + 41.07892185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T14:06:52Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103139388, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.1795744, + 41.088582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kkonrad", + "uid": "13109738", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T13:54:46Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00894197615134992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103138821, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27922425, + 48.14709545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "art-smith", + "uid": "13106766", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T12:56:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103136285, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4503622, + 39.410636 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ConsEbt", + "uid": "313448", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T12:55:10Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103136249, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 151.2959513, + -33.7027022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cimm", + "uid": "3921", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T12:47:08Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 7.4709575999147e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103135976, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7030966, + 50.8789727 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ConsEbt", + "uid": "313448", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T12:39:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.33621800030818e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103135677, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 150.3785788, + -35.555895750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ConsEbt", + "uid": "313448", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T12:37:29Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000206650548000155, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103135600, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 150.37994400000002, + -35.5548857 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ConsEbt", + "uid": "313448", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T12:36:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103135574, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 150.3777334, + -35.5567564 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ConsEbt", + "uid": "313448", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T12:26:34Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103135174, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 151.2814003, + -33.7044204 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wvdp", + "uid": "436419", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T12:01:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.36459999963662e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103134334, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25903275, + 51.8222502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wvdp", + "uid": "436419", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T12:00:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103134287, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2510968, + 51.8217336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AE35", + "uid": "21323", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T11:37:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103133460, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.0682571, + 55.8387637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tobim91", + "uid": "3233303", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T11:25:39Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.26231692900523, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103133004, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.44694775, + 48.831289049999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tobim91", + "uid": "3233303", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T11:19:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000816463992599982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103132818, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.53531555, + 48.0541955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cimm", + "uid": "3921", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T11:16:09Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000090187992719992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103132726, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7016007, + 50.8617558 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "norc_kroska", + "uid": "11117699", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T10:38:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103131542, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5848571, + 46.0554088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "norc_kroska", + "uid": "11117699", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T10:34:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103131428, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6044779, + 46.1405958 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "norc_kroska", + "uid": "11117699", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T10:32:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103131310, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5823525, + 46.0538395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sw-mapper", + "uid": "13101576", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T10:28:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103131213, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1667269, + 47.7592266 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hfs", + "uid": "9607", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T09:53:25Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00428406135195021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103130080, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.08300595, + 52.39096485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Bertware", + "uid": "9437839", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T09:51:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103130019, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.0532542, + 59.3280479 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.6.8d", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T09:33:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103129483, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.186226, + 50.791883 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8d", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T07:21:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.55400899996394e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103125915, + "host": "pietervdvn.github.io", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23062295, + 51.207059150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.8c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-17T17:16:25Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 2.04511339995621e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103111818, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -80.4528252, + 22.142556550000002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-17T16:08:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103109636, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1127181, + 50.9586203 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-17T16:06:36Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 1.10451599996608e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103109566, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1129396, + 50.9586681 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.6.8c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-17T14:34:41Z", + "reviewed_features": [], + "create": 3, + "modify": 11, + "delete": 0, + "area": 0.000274273084799911, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103105940, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1804904, + 50.787774999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8c", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-17T14:11:11Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000438474412399815, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103104998, + "host": "pietervdvn.github.io", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2196887, + 51.2116155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-17T07:09:28Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.17530000002046e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103090698, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39774275, + 51.041594700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-17T05:15:43Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.13190400006893e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103088015, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.82477639999999, + -36.1375687 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-17T02:17:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103085747, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.3656633, + 47.6833449 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-16T23:42:30Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103084174, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.9875318, + -34.5789783 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-16T15:35:58Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103069368, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1696897, + 52.0642062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-16T12:27:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103060042, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2008889, + 51.0566202 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-16T07:45:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.26704899999955e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103040206, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4396516999999998, + 51.079451649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-16T05:39:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103031392, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5969482, + 51.960931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-16T01:24:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103022181, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0801399, + 14.627217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-16T01:21:03Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 2.64575000048055e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103022129, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.08002834999999, + 14.62726415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T19:43:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.61669400002303e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103014625, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3732209, + 50.823650400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T19:14:19Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00694221903827992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103013551, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3717702, + 50.836002500000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T18:56:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103012908, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3311079, + 50.8281226 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T18:35:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103012164, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4049165, + 51.2255603 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T15:35:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103004622, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4178337, + 51.2250521 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PlugInSites", + "uid": "10651792", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T14:24:20Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103000972, + "host": "pietervdvn.github.io", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.8378696, + 39.1773855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-15T13:56:37Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.000133313531220044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102999680, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20380205, + 50.9201449 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bvrslypp", + "uid": "6043705", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T12:30:49Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.12576000007887e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102995332, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.581072750000001, + 51.2926095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-15T08:38:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000118920104000334, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102978786, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9414342, + 10.32766865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T08:31:03Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102978286, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0802326, + 50.7483334 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 4, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T08:30:06Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102978222, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0803936, + 50.7482694 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T15:21:59Z", + "reviewed_features": [], + "create": 11, + "modify": 10, + "delete": 0, + "area": 0.0000010292669999901, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102938986, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18619965, + 50.8029491 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T15:21:27Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.12607999981963e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102938966, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.111650699999998, + 44.8915116 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T15:20:22Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102938911, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.1117, + 44.8914119 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8629358073", + "osm_id": 8629358073, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8629367363", + "osm_id": 8629367363, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8629415207", + "osm_id": 8629415207, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8629400389", + "osm_id": 8629400389, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8629547854", + "osm_id": 8629547854, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T13:59:19Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.00420776010656995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102935084, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.12801045, + 44.82816575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T13:58:46Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000171875714199933, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102935052, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.1440383, + 44.77670835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T13:57:46Z", + "reviewed_features": [], + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.0000213572437499836, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102935009, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.144091249999999, + 44.776653749999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T10:56:33Z", + "reviewed_features": [], + "create": 5, + "modify": 6, + "delete": 0, + "area": 0.00387908651595003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102924646, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.208219750000001, + 44.62089455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8628812676", + "osm_id": 8628812676, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8628820575", + "osm_id": 8628820575, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8628800102", + "osm_id": 8628800102, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8628881151", + "osm_id": 8628881151, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8629040331", + "osm_id": 8629040331, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8628993373", + "osm_id": 8628993373, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8629017392", + "osm_id": 8629017392, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T10:54:22Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.00389536925175034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102924500, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.20821665, + 44.62065385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T10:40:17Z", + "reviewed_features": [], + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.00474099585593994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102923547, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.210166699999998, + 44.615996249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "klimaanvzw", + "uid": "6799245", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-14T09:21:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102917633, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4807181, + 51.0244802 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "klimaanvzw", + "uid": "6799245", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-14T09:17:25Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102917347, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4807181, + 51.0244802 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-13T18:43:19Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102883707, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9145579, + 50.5179022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-13T18:11:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102882576, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9145799, + 50.5181073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-13T14:22:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.86247639998338e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102871643, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8697363, + 50.3727392 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakub Trojan", + "uid": "273212", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-13T12:32:34Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102866363, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.4726391, + 49.0704289 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-13T05:41:16Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102842331, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2244466, + -39.8271305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-13T03:06:41Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000128341503999887, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102837072, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.94531219999999, + 10.3293194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-12T16:21:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102816405, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7322572, + -33.4072292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rjvdboon", + "uid": "614203", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-12T15:26:38Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 2.83709999998727e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102813868, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78439705, + 52.2290127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-12T13:15:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102806889, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6100038, + 51.9647292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-12T13:12:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102806691, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3425459, + 44.5032332 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rjvdboon", + "uid": "614203", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-12T11:52:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.000129264218010035, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102801419, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7373068499999995, + 52.220523549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-12T11:31:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102799932, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3456652, + 50.8350219 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-12T11:21:27Z", + "reviewed_features": [], + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.000011292288549996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102799192, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09525235, + 50.99594035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Kr_gr", + "uid": "13059466", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-12T07:58:25Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00024624256169003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102783422, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.794268150000001, + 50.97436585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #HailHydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T23:12:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00105261379236004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102759468, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21656295, + 51.244409000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8-rc1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-11T21:11:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.08224840002404e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102757073, + "host": "pietervdvn.github.io", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.209079, + 51.1925388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rjvdboon", + "uid": "614203", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-11T20:24:39Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000402589690199862, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102755841, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7275342, + 52.22449535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bvrslypp", + "uid": "6043705", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T19:40:55Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 0.00000299028571999828, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102754248, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7296015000000002, + 51.0508134 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bvrslypp", + "uid": "6043705", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T18:29:29Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000154772265599918, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102751407, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7055742, + 51.0558532 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T18:08:10Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.0000095997302800027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102750676, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7337853, + 52.225321 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T17:52:27Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102750134, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6043096, + 50.8529614 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T14:04:25Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102740799, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.198081, + 51.201627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8617584052", + "name": "Fietsbieb Brugge", + "osm_id": 8617584052, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T13:33:35Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102739472, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1973138, + 51.2008153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T12:57:02Z", + "reviewed_features": [], + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.000236533479660046, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102737684, + "host": "mapcomplete.osm.be", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20798675, + 51.2062196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fietsersbond aarschot", + "uid": "13040125", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-10T18:30:12Z", + "reviewed_features": [], + "create": 0, + "modify": 36, + "delete": 0, + "area": 0.0000682200686699867, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102710972, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83656535, + 50.98734195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rjvdboon", + "uid": "614203", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 5, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-10T17:51:13Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 2.64600000024765e-11, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102709715, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.722986499999999, + 52.22228135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fietsersbond aarschot", + "uid": "13040125", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-10T15:21:12Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.0000574085058799997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102703590, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83650355, + 50.9865121 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-10T14:14:00Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000343149632000415, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102700597, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.345097299999999, + 44.5107983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "boute002", + "uid": "2140799", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-09T20:29:49Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 2.89759199998603e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102669411, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4073440999999995, + 51.9211641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "boute002", + "uid": "2140799", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-09T20:22:41Z", + "reviewed_features": [], + "create": 3, + "modify": 10, + "delete": 0, + "area": 3.51893700000598e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102669097, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40757975, + 51.921111749999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "boute002", + "uid": "2140799", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-09T20:19:34Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102668943, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4081759, + 51.9212422 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "boute002", + "uid": "2140799", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-09T19:41:12Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00277469429639999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102667263, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4486801, + 51.904408399999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cserpell", + "uid": "1714449", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-09T19:17:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102666164, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.441575, + -33.0500485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whturner", + "uid": "3667103", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-09T17:38:15Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102661524, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0046157, + 50.8964051 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-09T17:18:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102660494, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3425459, + 44.5032332 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-09T16:53:36Z", + "reviewed_features": [], + "create": 10, + "modify": 14, + "delete": 0, + "area": 0.0000644296816800379, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102659150, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.33836805, + 44.4989622 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fietsersbond aarschot", + "uid": "13040125", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-09T16:08:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000156678900599872, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102656676, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8360416, + 50.986051450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-09T07:59:15Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000521634127499633, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102620070, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23805335, + 50.885279749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-09T02:32:23Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102597132, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9404717, + 10.3292374 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-09T01:23:26Z", + "reviewed_features": [], + "create": 6, + "modify": 17, + "delete": 0, + "area": 0.0034476627226505, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102595572, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.92198594999999, + 10.33818525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "boute002", + "uid": "2140799", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T20:43:40Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102589454, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4077894, + 51.9209483 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T20:17:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.27890000011825e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102588517, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.90769755, + 53.609603 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Edlocks", + "uid": "7336654", + "editor": "MapComplete 0.6.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-08T20:01:11Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.0000222179345499587, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102587984, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39999115, + 50.82557315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bvrslypp", + "uid": "6043705", + "editor": "MapComplete 0.6.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T16:12:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102577817, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7475748, + 51.0455389 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T15:28:16Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 1.26744900030859e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102575704, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35240855, + 51.30594765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T15:13:20Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 5.58688000040053e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102574932, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26724155, + 50.6997463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T13:20:07Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102567817, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1102168, + 51.0214354 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-551382276", + "osm_id": 551382276, + "reasons": [ + 42 + ], + "version": 5, + "primary_tags": { + "leisure": "bird_hide" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T13:17:18Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.000307111979019999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102567651, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2311538, + 51.33597315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T13:08:41Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 7.14516800002654e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102567179, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11034435, + 51.0214572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bvrslypp", + "uid": "6043705", + "editor": "MapComplete 0.6.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-08T11:15:26Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.000015550438239997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102558508, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7489742, + 51.0413653 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ttt1234", + "uid": "13021769", + "editor": "MapComplete 0.6.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-08T11:12:00Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 4.48306920001406e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102558206, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7517157, + 51.04478105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-08T10:36:04Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000305142551999958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102555125, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1139212, + 52.08138995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T07:31:37Z", + "reviewed_features": [], + "create": 7, + "modify": 12, + "delete": 0, + "area": 0.0000409976802599987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102535749, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.112507900000001, + 52.081776649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "Pieter Vander Vennet", + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-08T06:47:42Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00188264112461994, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2021-04-08T08:25:12.264507Z", + "id": 102530987, + "host": "mapcomplete.braindeaddev.com", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87194575, + 51.0002284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T23:27:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102510085, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.3684554, + 47.6796484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T16:23:39Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102496039, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1436508, + 51.1713439 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-07T15:24:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000103863856001017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102493349, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4510942, + 51.0964328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-07T15:22:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000485754363339964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102493261, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44279065, + 51.095555700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-07T15:15:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102492943, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4468089, + 51.090752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T14:00:06Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000666116304000712, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102488784, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9201219, + 53.6188554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bvrslypp", + "uid": "6043705", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-07T13:02:34Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102485188, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7507582, + 51.0442895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ttt1234", + "uid": "13021769", + "editor": "MapComplete 0.6.6", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-07T12:28:19Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102482959, + "host": "pietervdvn.github.io", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8628745, + 51.1327033 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ttt1234", + "uid": "13021769", + "editor": "MapComplete 0.6.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-07T12:23:13Z", + "reviewed_features": [], + "create": 10, + "modify": 31, + "delete": 0, + "area": 0.00000115233440000871, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102482612, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "AGIV", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7513375, + 51.0446731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T11:00:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102476144, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1440102, + 51.1724743 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T10:37:48Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102474193, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.716965, + 51.0341386 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T08:26:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102461994, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8239271, + 50.7374363 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T07:58:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102459404, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2362217, + 50.735992 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.4d", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-06T16:55:38Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 3.01671699994085e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102422572, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25500125, + 51.44798445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8598664388", + "osm_id": 8598664388, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "fossil" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4c", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/urban_fossils/urban_fossils.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-06T10:21:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102398005, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/urban_fossils/urban_fossils.json", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2200536, + 51.2157723 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.5c", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T22:04:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102358828, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7324476, + -33.407209 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SuSanne Grittner", + "uid": "13007801", + "editor": "MapComplete 0.6.5c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T21:33:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102358109, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2995993, + 52.5213147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Technopolice_newBiE", + "uid": "12219485", + "editor": "MapComplete 0.6.4-unlocked", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T20:19:19Z", + "reviewed_features": [], + "create": 92, + "modify": 139, + "delete": 0, + "area": 0.0000572588815199876, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102356016, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3460678, + 50.841520700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8596316025", + "osm_id": 8596316025, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "fossil" + } + } + ], + "user": "dmlu", + "uid": "5229804", + "editor": "MapComplete 0.6.4c", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/urban_fossils/urban_fossils.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T20:04:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102355554, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/urban_fossils/urban_fossils.json", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1900152, + 45.4656144 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T18:31:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000740294734399144, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102352301, + "host": "mapcomplete.braindeaddev.com", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1366728999999998, + 51.315722550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-05T18:11:39Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 2.93583779998462e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102351482, + "host": "mapcomplete.osm.be", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21724295, + 51.2120107 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.6.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T17:36:55Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102350088, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9933496, + 51.163066 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T17:35:17Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.36999999404562e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102350006, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9933259, + 51.16306575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #stolpersteine", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-05T16:15:45Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102346405, + "host": "mapcomplete.osm.be", + "theme": "stolpersteine", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4892502, + 51.9009947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "antonbundle", + "uid": "1734201", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T15:25:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102343955, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8856546, + 50.6829334 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michel Stuyts", + "uid": "62284", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-05T15:19:39Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102343682, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5303126, + 50.6037899 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-05T14:01:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102339517, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1757848, + 45.4635752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michel Stuyts", + "uid": "62284", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-05T13:33:24Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102337939, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.554868, + 50.5942339 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T12:19:06Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000019705574699962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102333160, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1301413499999997, + 50.95133615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T12:04:09Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00043761148256, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102331957, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "AGIV10cm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1053365, + 50.9870572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #basketswings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T11:58:49Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102331552, + "host": "mapcomplete.osm.be", + "theme": "basketswings", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0929177, + 50.9946582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T11:08:22Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 9.21647999987422e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102327643, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0964235, + 50.997031699999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T11:06:58Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000316486065719986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102327546, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0980845500000003, + 50.987492 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lunaticstraydog", + "uid": "8577239", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-05T08:07:09Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.00198010120559976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102312791, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2028713, + 48.5011147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.6.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T06:26:33Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102305143, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1183711, + 50.9641453 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #fire", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T18:10:12Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102282803, + "host": "mapcomplete.braindeaddev.com", + "theme": "fire", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1319752, + 51.2838332 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.6.5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T17:52:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102282189, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5935479, + 51.1852562 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-04T16:19:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102278803, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1698273, + 52.9012462 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T14:22:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102273824, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1167767, + 50.9928367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T14:18:45Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000219466239999485, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102273630, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0957344, + 50.996829000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-04T13:39:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102271836, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2014294, + 45.3565504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-04T13:28:55Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102271360, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.224726, + 51.2021413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-04T11:12:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102266136, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5965995, + 51.9497286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JuanjoMC", + "uid": "9414587", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T10:58:57Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000795311238000712, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102265697, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.358930900000001, + 50.89988295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #fire", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T10:38:42Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 1.6735661000243e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102265111, + "host": "mapcomplete.braindeaddev.com", + "theme": "fire", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13103445, + 51.31298645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T05:14:01Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0000749783209399803, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102257369, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3671199000000005, + 50.87177965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #HailHydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T01:17:09Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000974178379998733, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102255313, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.95219565, + 10.3396154 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T19:17:44Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102248624, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3422572, + 51.2470648 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T16:14:39Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.000019608709119999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102242966, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.260155300000001, + 45.4676949 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 96, + "name": "Feature with very long name" + } + ], + "tags": [], + "features": [ + { + "url": "node-8590039107", + "name": "Frans Grünwald;Else Ada Grünwald-Frankenberg;Leonard David Grünwald;Jetty Cecile Grünwald;Cäcilie Frankenberg-Wolf", + "osm_id": 8590039107, + "reasons": [ + 96 + ], + "version": 4, + "primary_tags": { + "historic": "memorial" + } + }, + { + "url": "node-5872864559", + "name": "Elias den Hartog;Rebecca Annegien den Hartog-Lermer;Cornelia den Hartog;Engeltje den Hartog;Jacob Aron den Hartog;Aron den Hartog", + "osm_id": 5872864559, + "reasons": [ + 96 + ], + "version": 5, + "primary_tags": { + "historic": "memorial" + } + }, + { + "url": "node-5872305429", + "name": "Leon Salomon Kannewasser;Maartje Salomon Kannewasser;Aron Salomon Kannewasser;Jacomina Kannewasser-Oudkerk", + "osm_id": 5872305429, + "reasons": [ + 96 + ], + "version": 4, + "primary_tags": { + "historic": "memorial" + } + }, + { + "url": "node-8590319083", + "name": "Elisabeth Polak-Polak;Hartog Philip Benedictus;Jacob Benedictus;Judith Benedictus;Mathilda Benedictus;Roosje Benedictus", + "osm_id": 8590319083, + "reasons": [ + 96 + ], + "version": 4, + "primary_tags": { + "historic": "memorial" + } + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #stolpersteine", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T16:03:50Z", + "reviewed_features": [], + "create": 37, + "modify": 142, + "delete": 0, + "area": 0.00199748567824005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102242557, + "host": "mapcomplete.osm.be", + "theme": "stolpersteine", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7358061, + 52.6201108 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 45, + "name": "Profanity tag" + }, + { + "id": 96, + "name": "Feature with very long name" + } + ], + "tags": [], + "features": [ + { + "url": "node-8589489988", + "name": "Elisabeth Polak-Polak;Hartog Philip Benedictus;Jacob Benedictus;Judith Benedictus;Mathilda Benedictus;Roosje Benedictus", + "osm_id": 8589489988, + "reasons": [ + 96 + ], + "version": 6, + "primary_tags": { + "historic": "memorial" + } + }, + { + "url": "node-5871326494", + "name": "Salomon Prins;Vrouwtje Prins;Rosette van Praag;Helena Bouman", + "osm_id": 5871326494, + "reasons": [ + 45 + ], + "version": 5, + "primary_tags": { + "historic": "memorial" + } + }, + { + "url": "node-5872333350", + "name": "Mozes de Jongh;Berendina de Jongh-le Grand;Abraham de Jongh;Sara de Jongh;Henriëtte de Jongh", + "osm_id": 5872333350, + "reasons": [ + 96 + ], + "version": 5, + "primary_tags": { + "historic": "memorial" + } + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #stolpersteine", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T13:14:58Z", + "reviewed_features": [], + "create": 6, + "modify": 61, + "delete": 0, + "area": 0.000149134171410073, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102235750, + "host": "mapcomplete.osm.be", + "theme": "stolpersteine", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.743646249999999, + 52.62733815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T13:06:47Z", + "reviewed_features": [], + "create": 4, + "modify": 9, + "delete": 0, + "area": 7.12959999999188e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102235445, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3872587, + 49.884646399999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #HailHydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T13:00:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102235227, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0669408, + 14.572291 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jhuanjho", + "uid": "1008854", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T10:16:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.72259859999328e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102229797, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.99613195, + 43.2900836 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T09:20:09Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.25730160006425e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102227975, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.904452599999999, + 53.6078371 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T09:12:43Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.34693000003511e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102227748, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.91479025, + 53.60877845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T08:22:22Z", + "reviewed_features": [], + "create": 8, + "modify": 28, + "delete": 0, + "area": 0.000108613618960026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102226307, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1235607, + 52.08536065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-6501420012", + "osm_id": 6501420012, + "reasons": [ + 42 + ], + "version": 2, + "primary_tags": {} + } + ], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #HailHydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T07:57:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000166388026999852, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102225592, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.06255065, + 14.5743747 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 45, + "name": "Profanity tag" + } + ], + "tags": [], + "features": [ + { + "url": "node-8588979324", + "name": "Isaak Prins;Rosette Prins-Vlessing;Aron Prins", + "osm_id": 8588979324, + "reasons": [ + 45 + ], + "version": 4, + "primary_tags": { + "historic": "memorial" + } + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #stolpersteine", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T07:48:21Z", + "reviewed_features": [], + "create": 2, + "modify": 20, + "delete": 0, + "area": 0.0014236754067201, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102225336, + "host": "mapcomplete.osm.be", + "theme": "stolpersteine", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7328329, + 52.6163104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #HailHydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T07:40:52Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102225188, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0669408, + 14.572291 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kinjkajh", + "uid": "12107222", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T07:30:39Z", + "reviewed_features": [], + "create": 4, + "modify": 17, + "delete": 0, + "area": 0.000209281634719918, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102225012, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8708919, + 51.01655315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T01:46:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102220748, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7674406, + -33.4874239 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T01:44:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102220729, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osmfr", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7674406, + -33.4874239 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T01:37:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102220671, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7674595, + -33.4874413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-02T18:47:27Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102211506, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3780276, + 50.8603775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T17:20:14Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 5.90771999985983e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102208373, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2542579499999995, + 51.9564546 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T16:43:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000352765208000036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102206649, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8081131, + 50.724030400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #basketswings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T14:27:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102199776, + "host": "mapcomplete.osm.be", + "theme": "basketswings", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6996004, + 51.05936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T14:05:45Z", + "reviewed_features": [], + "create": 19, + "modify": 39, + "delete": 0, + "area": 0.000080013627040035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102198663, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1163223, + 52.0731162 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fietsersbond Leuven", + "uid": "12338983", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-02T13:53:47Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00128590361844, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102198108, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71149255, + 50.8815833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #stolpersteine", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T13:52:21Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102198052, + "host": "mapcomplete.osm.be", + "theme": "stolpersteine", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7105625, + 52.6003287 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T13:48:19Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000525571153000583, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102197860, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.661284950000001, + 49.93608915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michel Stuyts", + "uid": "62284", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-02T12:47:32Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102194677, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4446054, + 51.1900344 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T12:25:14Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 7.60703999993804e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102193207, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8240842, + 50.73734745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T12:23:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102193059, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8236044, + 50.7375385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michel Stuyts", + "uid": "62284", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-02T11:41:25Z", + "reviewed_features": [], + "create": 6, + "modify": 13, + "delete": 0, + "area": 0.00000429654795999498, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102190068, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4438583000000005, + 51.18943075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T11:30:48Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102189327, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8116952, + 50.7486504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T08:37:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102175932, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.804531, + 50.6994104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WandelenMetKinderen", + "uid": "12727758", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-02T08:21:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.79990500000569e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102174721, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2007486, + 50.986216150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WandelenMetKinderen", + "uid": "12727758", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-02T07:50:58Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102172588, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.268695, + 50.986261 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-01T21:50:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102149904, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.9743066, + 42.3045529 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "landscapemapper", + "uid": "220206", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-01T19:37:32Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00010112235821996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102146104, + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.508066249999999, + 47.1583082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fietsersbond Leuven", + "uid": "12338983", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-01T19:28:11Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000715264941099993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102145840, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.722838899999999, + 50.87538325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-01T17:43:41Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.00018640842999997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102142262, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3336542, + 44.49516355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-01T17:43:09Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000161375794998794, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102142242, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.327612949999999, + 44.489386249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "landscapemapper", + "uid": "220206", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-01T15:40:27Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000539952290000532, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102137022, + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.50951195, + 47.1440686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fietsersbond Leuven", + "uid": "12338983", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-01T15:21:04Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000690211367999573, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102136102, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7300211, + 50.8866063 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-01T11:54:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000224087775001536, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102123964, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91501175, + 51.227475749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-01T11:54:10Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.000363588364930064, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102123961, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46708445, + 52.33395005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-01T08:43:28Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 5.54800000003041e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102108527, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5285835500000005, + 51.9567207 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-01T03:17:06Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000578964960000298, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102086552, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2307119, + -39.84341085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-01T02:27:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102085289, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2372803, + -39.845244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skifans", + "uid": "2800603", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-31T22:51:54Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0360993456790307, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105646814, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68591945, + 53.86010565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SNT-LJM-Cognac", + "uid": "13403395", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #buildings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-31T22:32:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.75388200002124e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105646533, + "host": "mapcomplete.osm.be", + "theme": "buildings", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.3178882, + 45.701599650000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4b", + "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": "2021-05-31T13:43:29Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 8.76105370006996e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105627749, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.594497849999996, + -34.64502795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4b", + "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": "2021-05-31T13:08:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.06144799968454e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105626142, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7917208, + -34.649936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.4a", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-31T09:35:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105612563, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2061303, + 51.1871501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.4a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-31T07:50:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105605501, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2084011, + 51.1869047 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MarcoR", + "uid": "175882", + "editor": "MapComplete 0.7.4a", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-31T05:44:32Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105597334, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "it", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.3257719, + 43.5032495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-31T03:40:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105592095, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7310614, + -33.4677007 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.4a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-31T03:40:00Z", + "reviewed_features": [], + "create": 7, + "modify": 7, + "delete": 0, + "area": 0.0000682160367299801, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105592093, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 122.09953485, + 13.92089145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4a", + "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": "2021-05-31T00:44:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.26439999980428e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105588545, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4666664, + -34.53998395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kudlav", + "uid": "3272933", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T18:48:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000246617365199878, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105579878, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.60259305, + 49.2251541 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kudlav", + "uid": "3272933", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T18:44:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105579726, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.6172481, + 49.2177212 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-30T16:36:32Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0234074587466393, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105575306, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02200465, + 50.9174665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T15:35:19Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000121806212160024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105573038, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9549544, + 53.6245624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T14:19:09Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000356571648000553, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105569986, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.973136499999999, + 53.631291700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T13:59:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105569231, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8566539, + 56.2576637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T13:37:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105568447, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9517362, + 50.8464569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T11:33:17Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105564069, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9468304, + 50.8470988 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-30T10:11:41Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105561348, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7515642, + 50.9784145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T10:06:43Z", + "reviewed_features": [], + "create": 5, + "modify": 12, + "delete": 0, + "area": 0.0126068645892792, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105561178, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "AGIVFlandersGRB", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0210699000000005, + 50.9183135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T09:34:02Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105560091, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.958101, + 50.8471648 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T08:31:50Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105558256, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9135947, + 53.6079631 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T00:09:02Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000839388575200038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105551818, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.35904239999999, + 47.675138000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T20:25:10Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105547366, + "host": "pietervdvn.github.io", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9269374, + 50.3546674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "familiapicarol", + "uid": "593367", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T15:27:46Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000245568644001263, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105538502, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "ca", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4607644, + 42.35879065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T12:43:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000194043474000496, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105533079, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8827781, + 51.215784549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-29T11:47:38Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105531157, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8590768, + 56.2553563 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T10:49:44Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000789733988890074, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105529143, + "host": "pietervdvn.github.io", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09923075, + 51.19348925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T10:31:22Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000414838908660149, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105528545, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9001811, + 51.21942425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-29T10:20:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105528141, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6419618, + 49.9305073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-29T10:15:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105527976, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6461159, + 49.9334178 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-29T10:13:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105527901, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6421056, + 49.9303136 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rayanr666", + "uid": "11372864", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T09:30:12Z", + "reviewed_features": [], + "create": 10, + "modify": 10, + "delete": 0, + "area": 0.0111552753926401, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105526392, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7907508, + 50.785135600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T09:22:20Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105526094, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3486896, + 51.1744232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-29T08:58:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105525175, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3779956, + 48.908687 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T07:54:33Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105523172, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1191509, + 50.9693049 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "joren0081", + "uid": "8430443", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T07:23:23Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105522221, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4155276, + 51.2062991 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hendrik_III", + "uid": "13435357", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T05:59:02Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.0000588646911000232, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105520167, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4533185, + 51.25020945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4", + "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": "2021-05-29T00:27:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105515868, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6400716, + -34.6513452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-28T22:41:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105514466, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8592109, + 56.2416367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4", + "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": "2021-05-28T13:43:16Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000119458880000552, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105495953, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6027297, + -34.645712599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-28T13:39:02Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000366760057000145, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105495698, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23532355, + 50.7344225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-28T13:33:43Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105495425, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1226049, + 52.0831865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4", + "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": "2021-05-28T13:10:06Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00113673068852025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105494205, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7551985, + -34.657894049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-28T09:20:02Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105478384, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0064341, + 14.5511908 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-28T08:08:52Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105473570, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9881632, + 51.1787212 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-28T07:21:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105470322, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0526434, + 51.1962641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-27T20:22:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.62881999967089e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105448422, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.43556305000001, + 38.410135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-27T20:05:14Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000767541159200034, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105447817, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2123712500000003, + 51.1917379 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T19:46:53Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000301287056000039, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105447053, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20446725, + 51.2150768 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marvin Geisler", + "uid": "13424339", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-27T16:49:44Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0000026637356099939, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105438725, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.819718049999999, + 51.81127015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "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": "2021-05-27T14:37:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.10943999976556e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105432701, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.59432605, + -34.6447223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marvin Geisler", + "uid": "13424339", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-27T13:34:43Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000367587024000074, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105429893, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.806082199999999, + 51.8169858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "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": "2021-05-27T13:33:24Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000927233450000037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105429835, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6310854, + -34.6520687 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "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": "2021-05-27T13:22:21Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000365466097579998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105429373, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.69289845, + -34.6621691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T12:20:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105425711, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2165779, + 41.4330737 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8770455435", + "osm_id": 8770455435, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770347043", + "osm_id": 8770347043, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770347061", + "osm_id": 8770347061, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T11:44:33Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000104911685999595, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105423247, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23078415, + 41.440836399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946996065", + "osm_id": 3946996065, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946996107", + "osm_id": 3946996107, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946995645", + "osm_id": 3946995645, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946996137", + "osm_id": 3946996137, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T11:32:55Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 3.97057199995677e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105422476, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2219420000000003, + 41.43591605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mozita", + "uid": "8934185", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-27T09:53:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105415408, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1477031, + 52.3448603 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paytv", + "uid": "13422838", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-27T09:07:53Z", + "reviewed_features": [], + "create": 6, + "modify": 9, + "delete": 0, + "area": 0.000126185690399969, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105410749, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7139912, + 52.2423022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-27T08:13:17Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.397542050461923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105406148, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.036989350000001, + 51.1393507 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 2, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T07:33:34Z", + "reviewed_features": [], + "create": 4, + "modify": 39, + "delete": 0, + "area": 0.00141826827872004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105403334, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2177818, + 51.20740275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T07:24:09Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105402639, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2034321, + 51.1822992 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T22:58:45Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105382757, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.4734044, + -33.5889291 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T22:45:31Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000520888725599873, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105382527, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.573256600000001, + 50.9321513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T20:04:38Z", + "reviewed_features": [], + "create": 1, + "modify": 22, + "delete": 0, + "area": 0.186393708881099, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105377923, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.04383355, + 53.256570499999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Roc BxC", + "uid": "13163796", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T17:36:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105372878, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2441183, + 41.4470779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208899", + "osm_id": 8744208899, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Roc BxC", + "uid": "13163796", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T17:25:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105372498, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2440553, + 41.4471712 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Roc BxC", + "uid": "13163796", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T17:19:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105372262, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2440553, + 41.4471712 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208896", + "osm_id": 8744208896, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "elisenda_sn", + "uid": "13418004", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T17:12:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105371990, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2440902, + 41.4471234 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Roc BxC", + "uid": "13163796", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T17:11:00Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 5.87790000019343e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105371947, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2440868, + 41.44712455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "CarmeP", + "uid": "13279572", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T17:07:24Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105371816, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2440287, + 41.4472179 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208896", + "osm_id": 8744208896, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "elisenda_sn", + "uid": "13418004", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T17:06:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105371789, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2440902, + 41.4471234 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Roc BxC", + "uid": "13163796", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T16:47:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105370974, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2436824, + 41.4478395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T16:35:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105370497, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7966235, + 48.1144586 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "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": "2021-05-26T13:19:58Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00565607714054903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105360947, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.62557405, + -34.65190285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T13:19:29Z", + "reviewed_features": [], + "create": 5, + "modify": 26, + "delete": 0, + "area": 0.00051048993196005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105360924, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19414885, + 51.2022593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T13:13:11Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000217021238999722, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105360560, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1959963499999997, + 51.19238775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T13:07:51Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105360228, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.196541, + 51.1913916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MarcoR", + "uid": "175882", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T12:09:13Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 7.39284399995784e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105356597, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.3175247, + 43.5129753 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T12:07:15Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105356464, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2018441, + 51.247683 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T04:06:28Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000177536739149919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105324191, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.01143775, + 14.60215685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T22:20:11Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000163819133100364, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105317447, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37910115, + 50.86689885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #images", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T20:05:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105313902, + "host": "mapcomplete.osm.be", + "theme": "images", + "imagery": "osm", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.402338, + 51.039901 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208275", + "osm_id": 8744208275, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208260", + "osm_id": 8744208260, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208270", + "osm_id": 8744208270, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208049", + "osm_id": 8744208049, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208271", + "osm_id": 8744208271, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765851041", + "osm_id": 8765851041, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208267", + "osm_id": 8744208267, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208310", + "osm_id": 8744208310, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208315", + "osm_id": 8744208315, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208053", + "osm_id": 8744208053, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208304", + "osm_id": 8744208304, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765858085", + "osm_id": 8765858085, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208054", + "osm_id": 8744208054, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208055", + "osm_id": 8744208055, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765870929", + "osm_id": 8765870929, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765883773", + "osm_id": 8765883773, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208328", + "osm_id": 8744208328, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765857951", + "osm_id": 8765857951, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208290", + "osm_id": 8744208290, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208295", + "osm_id": 8744208295, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765860970", + "osm_id": 8765860970, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208343", + "osm_id": 8744208343, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765859423", + "osm_id": 8765859423, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208327", + "osm_id": 8744208327, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208347", + "osm_id": 8744208347, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208356", + "osm_id": 8744208356, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208357", + "osm_id": 8744208357, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208358", + "osm_id": 8744208358, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765860731", + "osm_id": 8765860731, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T18:44:53Z", + "reviewed_features": [], + "create": 14, + "modify": 44, + "delete": 0, + "area": 0.0000072869514499922, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105310901, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25165135, + 41.44837595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744207825", + "osm_id": 8744207825, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744207829", + "osm_id": 8744207829, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208236", + "osm_id": 8744208236, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765777424", + "osm_id": 8765777424, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208253", + "osm_id": 8744208253, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208255", + "osm_id": 8744208255, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744198615", + "osm_id": 8744198615, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765766055", + "osm_id": 8765766055, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208258", + "osm_id": 8744208258, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765766232", + "osm_id": 8765766232, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765767531", + "osm_id": 8765767531, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765762438", + "osm_id": 8765762438, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T18:32:07Z", + "reviewed_features": [], + "create": 8, + "modify": 19, + "delete": 0, + "area": 0.00000269868384000592, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105310408, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2531290999999998, + 41.4505361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tom Schneider @FFWBrück", + "uid": "13382854", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T17:39:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105308266, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.7623636, + 52.1835731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T17:18:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105307197, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2158218, + 51.2006089 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T17:00:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105306242, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4683959, + 46.9334184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alan Orth", + "uid": "10607774", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T14:32:48Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105298752, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 23.3210091, + 42.6795374 + ] + } + }, + { + "type": "Feature", + "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": "2021-05-25T12:31:10Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 1.9490169999989e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105292377, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.76625915, + 52.8400339 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T11:49:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105289590, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.4846171, + -33.5905772 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alan Orth", + "uid": "10607774", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T11:39:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105288905, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 23.3616829, + 42.7037798 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T10:29:44Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00403718708348001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105283711, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2324194, + 51.221882449999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T08:18:54Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.00000435244712001284, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105273964, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.713385, + 51.092517099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T07:33:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105270921, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2158218, + 51.2006089 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SNT-LJM-Cognac", + "uid": "13403395", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T07:31:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000204138719999855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105270712, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.3197247, + 45.70180405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T00:12:44Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105254015, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0535163, + 14.7564885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T00:11:19Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.09187999983138e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105253999, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.05351089999999, + 14.75653905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ethanmad", + "uid": "13403755", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-24T21:30:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105251257, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.3893261, + 37.770719 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-24T19:19:45Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105246987, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4352976, + 51.191794 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-24T17:52:54Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 0.827927566204646, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105243384, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84051635, + 50.86614145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-24T13:31:04Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105230130, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2752024, + 50.7917724 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-24T12:56:01Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105227975, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.106668, + 51.0274239 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-24T12:17:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105225506, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2023899, + 52.0686648 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-24T12:17:04Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.0000143528293500015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105225482, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46774745, + 50.77929245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OscarBrownbread", + "uid": "4637589", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-24T08:29:34Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.0000516541032300105, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105208199, + "host": "pietervdvn.github.io", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.29504625, + 53.85439265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OscarBrownbread", + "uid": "4637589", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-24T07:56:34Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000232789639739958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105205876, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9432471, + 51.53845695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "menganito", + "uid": "11199632", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-24T05:17:30Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000874767730300334, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105195214, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 21.25382085, + 48.72730525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "menganito", + "uid": "11199632", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-24T05:04:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105194536, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 21.2563617, + 48.7374982 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-24T02:15:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105189586, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7584149, + -33.4895703 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GeorgeHoneywood", + "uid": "10031443", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-23T16:23:28Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000012856360000038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105175759, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5472319999999999, + 51.4319502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T16:10:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105175143, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.614514, + 50.7909286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MOTTE123", + "uid": "13382854", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-23T15:16:49Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 0.0000959672329000387, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105171605, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.756734999999999, + 52.18132575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T13:58:49Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105166704, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6910387, + 50.8416995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-23T13:35:05Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000285965315999881, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105165897, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7887527, + 48.1039734 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T12:31:06Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105163811, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6746772, + 50.8518793 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NLthijs48", + "uid": "2997785", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-23T11:39:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000467974701600034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105162112, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9047789999999996, + 52.4055037 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T10:53:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105160761, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6922644, + 50.8546733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsecurePeanut", + "uid": "13338897", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T09:55:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.7428399995477e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105158908, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -89.59835100000001, + 44.530470449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsecurePeanut", + "uid": "13338897", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T09:46:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105158635, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -89.5715612, + 44.5272569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "menganito", + "uid": "11199632", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-23T06:53:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.4832020000262e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105154337, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 21.92493695, + 48.749327300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-23T06:00:34Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105153445, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 120.9734014, + 14.6264747 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T01:29:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105150997, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.371635, + 47.6815637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T17:10:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105141050, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7080653, + 51.0016916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T17:07:06Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000213906758000218, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105140957, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70902825, + 51.002085199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "klimaanvzw", + "uid": "6799245", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-22T13:00:57Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105132121, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4900823, + 51.0255114 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T10:35:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105127274, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.325668, + 51.0851891 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T08:49:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105123795, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "AGIV", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.324901, + 51.0848623 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T08:45:54Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105123659, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3250432, + 51.0848202 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T07:30:29Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105121717, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0938607, + 51.0299026 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T03:37:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105117154, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7871767, + -34.6603102 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T03:31:46Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000277146809040082, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105117106, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.790958849999996, + -34.658889099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T20:33:44Z", + "reviewed_features": [], + "create": 3, + "modify": 14, + "delete": 0, + "area": 0.00142192726343003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105110251, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73894005, + 51.07994775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944731386", + "osm_id": 3944731386, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732004", + "osm_id": 3944732004, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T20:27:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.09856779999914e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105110084, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2152739500000003, + 41.4346289 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944734362", + "osm_id": 3944734362, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492737", + "osm_id": 3944492737, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944490919", + "osm_id": 3944490919, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8211364598", + "osm_id": 8211364598, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T20:16:28Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 4.92624000003089e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105109714, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2135683999999998, + 41.4375731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944496403", + "osm_id": 3944496403, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944496385", + "osm_id": 3944496385, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T20:04:38Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 5.72343310002256e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105109333, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21459425, + 41.43908105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944501214", + "osm_id": 3944501214, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T19:57:06Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.26106000025223e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105109048, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.217211, + 41.44065545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Kale Bikkel", + "uid": "2570101", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T19:53:57Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105108934, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6734764, + 52.1223227 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tom Ameye", + "uid": "12652421", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T19:07:42Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000387052151149972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105107153, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37460995, + 50.95609045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Boekenruilkastje Landskouter", + "uid": "13385171", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T18:55:13Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105106698, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8008447, + 50.9731441 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MOTTE123", + "uid": "13382854", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T18:31:10Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105105662, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.7625809, + 52.183676 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T16:17:37Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105100265, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "UrbISOrtho2019", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.374147, + 50.8678918 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T13:29:32Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000657937549239699, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105093255, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.62278435, + -34.650230300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T13:18:06Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105092710, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2061303, + 51.1871501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MOTTE123", + "uid": "13382854", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T12:15:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105089211, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.7625809, + 52.183676 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T10:44:24Z", + "reviewed_features": [], + "create": 2, + "modify": 26, + "delete": 0, + "area": 0.0974995391926399, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105083652, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14727235, + 51.07386030000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T10:36:02Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105083136, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2843487, + 51.2471323 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T10:16:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.54899399993906e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105081897, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29516325, + 51.2515511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T07:31:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105070958, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2368134, + 51.1928043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wprzyb", + "uid": "1317025", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T07:19:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105070267, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.0424686, + 51.0993964 + ] + } + }, + { + "type": "Feature", + "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": "2021-05-21T05:17:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105062544, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8147658, + 53.1617286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T05:03:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105061768, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0171562, + 14.5568088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T00:30:11Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000894031305600462, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105054854, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6494128, + -34.6543642 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T18:42:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105046037, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3107749, + 51.1620554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-20T18:25:47Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00000118738586999877, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105045474, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23143845000001, + -39.819421250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-20T17:14:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105042730, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2077396, + 51.2500368 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Leumas-69", + "uid": "10940041", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-20T15:04:55Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105036795, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7091491, + 51.0691059 + ] + } + }, + { + "type": "Feature", + "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": "2021-05-20T14:47:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105036015, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8549909, + 53.1356141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T13:32:19Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00173052071721997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105032317, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.58407975, + -34.645720600000004 + ] + } + }, + { + "type": "Feature", + "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": "2021-05-20T11:43:11Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000404082137159841, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105025981, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.853645799999999, + 53.129142200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T10:54:04Z", + "reviewed_features": [], + "create": 3, + "modify": 25, + "delete": 0, + "area": 0.000746127454099904, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105022554, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21228935, + 51.2381667 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T10:22:09Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00127313674155003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105020219, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.255092149999999, + 50.74929295 + ] + } + }, + { + "type": "Feature", + "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": "2021-05-20T09:08:15Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105014411, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7963319, + 53.1290517 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T04:56:01Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.94947500030528e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104995459, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.72981245, + -34.66411025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T00:16:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104988367, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5969843, + -34.6450966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-19T19:31:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104981745, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4833377, + 51.0134216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-19T19:09:56Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.000241209448280125, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104980984, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71845875, + 51.0784364 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-19T18:40:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.95786000017248e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104979847, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23125875, + -39.8190834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Huglu96", + "uid": "722577", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-19T17:52:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104978018, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4079707, + 52.5020373 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946997519", + "osm_id": 3946997519, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-19T17:40:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 5.46839999936015e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104977477, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2240514, + 41.4417342 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947008063", + "osm_id": 3947008063, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947008119", + "osm_id": 3947008119, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-19T17:31:06Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.48432000015402e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104977097, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2225965, + 41.4440076 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-19T15:33:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104972004, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1138035, + 50.7955749 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-19T13:18:41Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00258745148634043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104964940, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.662437499999996, + -34.65480575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-19T12:56:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000113060320000243, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104963609, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3319900000000002, + 50.9880195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-19T12:47:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104963056, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2255468, + 51.2076194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "nireee", + "uid": "13366187", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #vegan", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-19T11:13:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104955721, + "theme": "vegan", + "language": "de", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6986102, + 50.1287726 + ] + } + }, + { + "type": "Feature", + "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": "2021-05-19T08:16:05Z", + "reviewed_features": [], + "create": 16, + "modify": 6, + "delete": 0, + "area": 0.00465482597519971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104940762, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8452518, + 53.13347455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-18T20:01:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104912323, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2320207, + -39.8183833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-18T16:52:17Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.55810000093581e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104904505, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2312281, + -39.81929845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-18T14:29:12Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000241303464000051, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104897806, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7446938, + 51.1793416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-18T13:14:16Z", + "reviewed_features": [], + "create": 1, + "modify": 25, + "delete": 0, + "area": 0.00663776668980098, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104894007, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6431496, + -34.65222145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-18T13:11:13Z", + "reviewed_features": [], + "create": 2, + "modify": 18, + "delete": 0, + "area": 0.000243898604200056, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104893843, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2519605, + 51.1968298 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-18T11:49:42Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.50556000039021e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104888917, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7315988, + 50.87381135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-18T11:46:18Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104888664, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7344131, + 50.8700529 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-18T08:26:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104873407, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1136635, + 51.0178601 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-18T04:58:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104859305, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.37015615, + 47.6948642 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-18T00:28:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104852510, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7267282, + -34.6645689 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JoeG", + "uid": "73276", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T15:25:12Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00000608292612006287, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104834837, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 149.06017185000002, + -35.231631 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2i", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-17T15:24:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000172669751999869, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104834804, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2453575, + 50.731274799999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kraan46", + "uid": "11628862", + "editor": "MapComplete 0.7.2i", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T15:00:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.29600000034974e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104833676, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4747274, + 51.0270199 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2h", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-17T14:35:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104832489, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2521088, + 50.7411765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2f", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-17T13:09:28Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.00455061565647063, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104828217, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.65658295, + -34.65332685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "christophemaesmechelen", + "uid": "2961776", + "editor": "MapComplete 0.7.2f", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T12:17:10Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104825060, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4981589, + 51.0255454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.7.2f", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-17T12:09:24Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.07530000022849e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104824521, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93846925, + 42.68486875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T10:23:21Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000125047037699949, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104817521, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02077345, + 50.83733555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.2f", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T09:23:55Z", + "reviewed_features": [], + "create": 2, + "modify": 20, + "delete": 0, + "area": 4.47345430003361e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104813054, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2251739500000003, + 51.20791935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2f", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-17T08:16:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104808321, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2335913, + 50.7345064 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Trissegers", + "uid": "13347134", + "editor": "MapComplete 0.7.2f", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T07:21:40Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104804552, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.468469, + 51.0310196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T02:25:46Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104790533, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0071355, + 14.7190524 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T01:06:26Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104789456, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 120.9940356, + 14.7303498 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T18:00:28Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000172669751999869, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104779755, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "AGIV10cm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2453575, + 50.731274799999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T14:25:14Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104771433, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1042263, + 51.0214067 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-16T14:23:32Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104771353, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5249457, + 50.7767051 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T14:23:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104771328, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1001049, + 51.0165051 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-16T13:59:28Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 4.81260000011153e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104770413, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5251066, + 50.7767484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T12:43:16Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000517734557999552, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104767319, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11835755, + 52.096576 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T12:04:44Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000311507510400063, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104765820, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7363475, + 50.8773984 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T12:03:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104765784, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6188464, + 45.4487601 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T12:01:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104765698, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7415926, + 50.8787892 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T11:52:57Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.0000334736836599998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104765380, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.735982, + 50.87727125000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T11:44:56Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104765110, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7323153, + 50.8748135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T11:32:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104764684, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1237641, + 52.0848937 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jordi L", + "uid": "3016696", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-16T09:54:02Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.99207999992294e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104761467, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.221376, + 41.4389884 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Emnetis", + "uid": "3904333", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-16T05:12:38Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104754445, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 113.4056023, + 23.0781105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "lvgx", + "uid": "484826", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-16T01:09:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000126935520000077, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104752561, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45296565, + 45.445305000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T23:04:31Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 5.04171999947101e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104751316, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.221924, + -39.813445650000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T22:26:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104750812, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.765833, + 50.2997654 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T21:58:33Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104750300, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0361083, + 51.2711004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T17:55:35Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.000434144641600044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104744199, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8774373, + 50.9694044 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "art_m_wb", + "uid": "12876924", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T13:20:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.21924580000104e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104733470, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 19.52303335, + 50.5240756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-15T10:46:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104726944, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2174305, + 41.4385019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-15T10:39:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104726636, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2203555, + 51.20661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-15T10:30:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104726156, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.235082, + 51.2096004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-15T10:28:22Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.32703099985006e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104726005, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2150213499999998, + 41.438468150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-15T10:22:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104725636, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2139703, + 41.4361383 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T09:32:14Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.128066535526462, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104723348, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5190169000000004, + 51.02368035000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jordi L", + "uid": "3016696", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T09:25:43Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.00000801754085001187, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104723073, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2173656499999996, + 41.43833875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-15T08:51:10Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.74638000007436e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104721756, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2172017, + 41.434478150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michael Nixt", + "uid": "6641970", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T03:40:49Z", + "reviewed_features": [], + "create": 3, + "modify": 31, + "delete": 0, + "area": 0.0000792762710000282, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104714129, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.1442248, + 40.06020855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T01:43:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104713106, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0018167, + 14.572307 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-14T19:30:45Z", + "reviewed_features": [], + "create": 5, + "modify": 13, + "delete": 0, + "area": 0.00108082307840002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104704762, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7704386, + 51.086784699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T19:20:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.61390579997499e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104704361, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "imagery": "osm", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3510853000000003, + 51.12035995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T19:16:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104704249, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2917034, + 51.1194612 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T19:15:38Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.71999999777611e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104704200, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2916979, + 51.1194475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T18:35:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.62082570001013e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104702488, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2163805500000002, + 41.43967845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-14T18:17:27Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.533609039953077, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104701749, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69846715, + 51.071773699999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T17:38:30Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104700044, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2129082, + 51.2048633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pirgrr", + "uid": "3121125", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T16:00:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104695241, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5928277, + 44.8376667 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pirgrr", + "uid": "3121125", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T15:52:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104694873, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5864462, + 44.8556083 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T13:04:08Z", + "reviewed_features": [], + "create": 0, + "modify": 63, + "delete": 0, + "area": 0.00681024527324964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104686398, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.65663195, + -34.65148765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-14T12:28:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.09062080004156e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104684651, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.204661300000001, + 59.7365509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T12:11:18Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.00000395090358000759, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104683745, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11833765, + 52.1010281 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "familiapicarol", + "uid": "593367", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T12:03:25Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104683353, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "ca", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.823591, + 41.7275416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T09:52:26Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000426296273000131, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104677661, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11099965, + 52.1085511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-14T09:27:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104676697, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0345202, + 14.5668445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T01:56:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.72580000012572e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104664124, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7530451, + -34.6703418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivan 33", + "uid": "9186359", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T20:16:26Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.13509699996356e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104657616, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 30.25208455, + 53.73048105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T19:58:58Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00170796197175018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104657063, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.24717815, + 59.75303675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "1212121200", + "uid": "12176526", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T18:34:22Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00000230821854000452, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104654185, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "LV_ORTOFOTO_C6", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.01391385, + 56.945104400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JannikK", + "uid": "10114379", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T18:20:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.05435300006088e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104653601, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.90920725, + 53.66523165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.2a", + "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": "2021-05-13T18:05:01Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000834014677900043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104652989, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "imagery": "osm", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4227627500000004, + 51.1023685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Felix Edelmann", + "uid": "2274641", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T17:53:54Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.000050030318969919, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104652456, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.776667849999999, + 48.10687955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JannikK", + "uid": "10114379", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T16:25:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.49519699999579e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104648605, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.90998645, + 53.66403065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T16:19:05Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 1.89144599997866e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104648304, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.89911965, + 53.608688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclenodenetworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T15:36:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.89499619994156e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104646395, + "host": "mapcomplete.osm.be", + "theme": "cyclenodenetworks", + "imagery": "osm", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4458708500000004, + 51.092950099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Felix Edelmann", + "uid": "2274641", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T15:16:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104645437, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7705245, + 48.1048285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T13:18:31Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.05049200017463e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104639757, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7922004, + -34.64985275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T12:28:18Z", + "reviewed_features": [], + "create": 0, + "modify": 23, + "delete": 0, + "area": 0.0592368489595782, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104637130, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.92746095, + 59.7159054 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "coalins", + "uid": "13318098", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T10:12:54Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 2.60725704031522, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104627844, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6307239000000004, + 44.17029475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T01:46:23Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.65305000027636e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104602765, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.73429595, + -34.66356725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T00:03:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104601380, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5657576, + -34.6405413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lalolan", + "uid": "11113526", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T23:16:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104600714, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.6113777, + 41.1460496 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lalolan", + "uid": "11113526", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T23:14:15Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000157583756900196, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104600674, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.612524350000001, + 41.14066355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T20:16:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000159178613999576, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104596179, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43869195, + 51.0801872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T18:55:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104593203, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.2708725, + -32.983775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T18:41:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104592637, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7019879, + 51.0584335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #infoboard", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T18:29:18Z", + "reviewed_features": [], + "create": 0, + "modify": 60, + "delete": 0, + "area": 0.00655563572640037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104592091, + "host": "pietervdvn.github.io", + "theme": "infoboard", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0380195, + 51.457571099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.1-rc1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T17:01:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104586934, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.2706328, + -32.9839877 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.7.1-rc1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T15:18:12Z", + "reviewed_features": [], + "create": 7, + "modify": 10, + "delete": 0, + "area": 0.00000384245136000285, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104582639, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.767740100000001, + 48.113208650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.7.1-rc1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T15:13:24Z", + "reviewed_features": [], + "create": 14, + "modify": 15, + "delete": 0, + "area": 9.09811250006411e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104582393, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.76746245, + 48.11476485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-12T15:03:50Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000110316870000061, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104581895, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9931475, + 50.8290779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.1-rc1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-12T13:38:03Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0000026661900599964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104577870, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07470975, + 51.4148192 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-12T13:26:16Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00338596775867982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104577362, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.633130949999995, + -34.6531933 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jason Olshefsky", + "uid": "107979", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T13:13:17Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.95637399980937e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104576707, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.6209281, + 43.11637895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T08:44:14Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104558350, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osmfr", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0388835, + 14.6079696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T06:59:05Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000654444680001034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104551517, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 120.58377300000001, + 14.13368525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T06:51:27Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104550986, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 120.5912738, + 14.1325571 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treestryder", + "uid": "159516", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-12T05:37:13Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000896512216320031, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104546473, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -84.54920870000001, + 42.7354279 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T23:51:18Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00164296950467951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104538496, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.568991999999994, + -34.6431586 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PHolzwarth", + "uid": "117365", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-11T17:44:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104527766, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9373163, + 48.4837389 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Globelotter", + "uid": "6141733", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-11T17:16:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104526734, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4501882, + 51.1738214 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T15:48:27Z", + "reviewed_features": [], + "create": 0, + "modify": 61, + "delete": 0, + "area": 0.00954903828479985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104522364, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1213388, + 51.518561399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T14:30:12Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000227250519029999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104518647, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.072036349999999, + 51.48815095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.1-rc1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-11T13:26:38Z", + "reviewed_features": [], + "create": 4, + "modify": 8, + "delete": 0, + "area": 0.00101606045673006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104515780, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76689865, + 51.00651235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T13:12:00Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 2.27640000001181e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104515024, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7917543, + -34.64996855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T11:20:02Z", + "reviewed_features": [], + "create": 4, + "modify": 13, + "delete": 0, + "area": 0.00000332487050000623, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104508863, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1941562, + 41.415860949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T11:07:58Z", + "reviewed_features": [], + "create": 0, + "modify": 71, + "delete": 0, + "area": 0.098939680445122, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104508109, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.276447, + 51.387630900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-11T10:52:00Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104507010, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0592133, + 14.7358283 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T09:33:32Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.00256551186345057, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104501788, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53862785, + 51.30497205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.1-rc1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-11T08:34:18Z", + "reviewed_features": [], + "create": 4, + "modify": 10, + "delete": 0, + "area": 0.000761700387420269, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104497856, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73253795, + 51.046897200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T08:07:05Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.00145321778605998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104496134, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.524248699999999, + 51.33767885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T05:27:55Z", + "reviewed_features": [], + "create": 22, + "modify": 2, + "delete": 0, + "area": 0.126046920920882, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104486192, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3291065, + 51.42827975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T03:40:28Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000260292045000656, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104481256, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.53007235, + 13.964517050000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T00:11:36Z", + "reviewed_features": [], + "create": 3, + "modify": 13, + "delete": 0, + "area": 0.00433506589542041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104477735, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.64622055, + -34.6512051 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "laurent-38", + "uid": "3909835", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T22:38:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104476330, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.154912, + 45.6122344 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.1c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T21:32:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104474953, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198332, + 51.215705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OSMWeekly", + "uid": "8610118", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T20:31:19Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.93492900000202e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104473387, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.78820765, + 42.2565572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OSMWeekly", + "uid": "8610118", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T20:29:47Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104473335, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.788479, + 42.2567096 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marek-M", + "uid": "598860", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T20:09:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104472684, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.4968553, + 54.464641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.1c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T18:33:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104469520, + "host": "127.0.0.1:1234", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2259732, + 51.2116402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T18:06:44Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104468481, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2259732, + 51.2116402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.1c", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T17:15:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.45802739998738e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104466370, + "host": "pietervdvn.github.io", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2320207, + 51.20471125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "art_m_wb", + "uid": "12876924", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T14:17:34Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000511359803999122, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104458078, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 19.3897633, + 50.669220800000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T13:16:04Z", + "reviewed_features": [], + "create": 0, + "modify": 39, + "delete": 0, + "area": 0.00447981987648967, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104454897, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.65694965, + -34.65330095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T13:05:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00926067326812094, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104454337, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.15683315, + 40.9864849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gptm", + "uid": "2873411", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T12:26:28Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104451926, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0796346, + 50.9344553 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T11:34:54Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 2.38561374141807, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104448218, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8660219, + 43.651728250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marcin Sołoguba", + "uid": "6559812", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T11:19:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104447014, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 23.2262608, + 53.1678182 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T08:34:04Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104434320, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8549909, + 53.1356141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mozita", + "uid": "8934185", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T06:05:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104424404, + "host": "waldbrand-app.de", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5852344, + 52.6791026 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mikel Ortega", + "uid": "151106", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T20:40:32Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 3.13950000007853e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104410838, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.9039446, + 43.32459235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MaraLS", + "uid": "42613", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T17:55:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104405796, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7459706, + 48.1192639 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-09T17:10:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104404430, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.8004411, + 45.1618381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.1b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-09T16:40:03Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 1.34904000000791e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104403405, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.220041, + 51.21575955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "David Crochet", + "uid": "50624", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T16:21:23Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000471072066399558, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104402711, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37773829999999997, + 49.1845414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T16:09:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104402358, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8872236, + 51.0093569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jared", + "uid": "3887", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T16:05:40Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 9.46868940013134e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104402223, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.306483, + 43.71324155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-09T12:43:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104395169, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2682475, + 51.1566463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dcs", + "uid": "236412", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T11:53:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104393563, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.7749105, + 39.2895893 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dcs", + "uid": "236412", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T11:39:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104393090, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.8697199, + 39.2103621 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dcs", + "uid": "236412", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T11:37:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104393035, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.7622867, + 39.2846994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-09T10:45:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104391660, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.6935299, + 45.4364119 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.1b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-09T09:57:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104390359, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.220067, + 51.2157567 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-09T03:28:26Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.59624739998659e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104383378, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.52641295000001, + 13.963484399999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T02:17:06Z", + "reviewed_features": [], + "create": 7, + "modify": 8, + "delete": 0, + "area": 0.00012154687428001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104382849, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0495587, + 14.55443325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-08T15:36:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104369957, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2859606, + 44.4990997 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-08T15:16:01Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104369288, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1136635, + 51.0178601 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-08T15:04:58Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000461262977000638, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104368933, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11020745, + 51.01776305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "nyctea", + "uid": "8656991", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-08T13:32:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104365650, + "host": "mapcomplete.braindeaddev.com", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7097807, + 51.0375149 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-08T08:58:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104355582, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8420487, + 50.8816233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-08T08:13:16Z", + "reviewed_features": [], + "create": 7, + "modify": 13, + "delete": 0, + "area": 0.00000397414228000236, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104354080, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1170282, + 52.096787750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-08T00:14:13Z", + "reviewed_features": [], + "create": 3, + "modify": 30, + "delete": 0, + "area": 0.00871533981770017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104345309, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.60225185, + -34.6472755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-07T16:12:17Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104329987, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0956148, + 51.027961 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-07T14:40:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.77909999756847e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104325174, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.49182545, + -34.54722945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "art_m_wb", + "uid": "12876924", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-07T07:16:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104296439, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.144859, + 50.3474723 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-07T04:25:15Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000516114599998662, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104285378, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0555447, + 14.6240254 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-07T01:33:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104280247, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7041112, + 51.052696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-07T01:23:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104280055, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7045624, + 51.0527661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-06T23:57:22Z", + "reviewed_features": [], + "create": 5, + "modify": 34, + "delete": 0, + "area": 0.00651875013344104, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104278464, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6455025, + -34.6527314 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "art_m_wb", + "uid": "12876924", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-06T20:43:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.48838469999256e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104274050, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.610203349999999, + 51.12703915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "landscapemapper", + "uid": "220206", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-06T20:30:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104273585, + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.881065, + 46.2899434 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-06T20:04:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.28207360000264e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104272719, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9051662, + 53.608371399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Globelotter", + "uid": "6141733", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-06T15:56:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000523227690509952, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104263517, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4596047500000005, + 51.13965455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-06T13:45:33Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 1.84864679999715e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104257325, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.55756735, + -34.639685400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gillonde", + "uid": "1965001", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-06T13:20:51Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104256048, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.006488, + 52.1035974 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-06T12:41:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104253724, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3259754, + 50.9959771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Larmax", + "uid": "8105430", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-06T08:13:28Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104233157, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.7403955, + 60.160001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-06T07:08:42Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104228418, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9413681, + 42.6852421 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-06T03:32:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104216445, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0188074, + 14.6546927 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-06T00:30:18Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00000295339426998673, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104212562, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.73221545, + -34.66389115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T22:44:46Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00000423983388001802, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104210379, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7851824, + -34.6513911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michael Nixt", + "uid": "6641970", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T20:36:05Z", + "reviewed_features": [], + "create": 1, + "modify": 14, + "delete": 0, + "area": 0.0000434059718399561, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104206928, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.07524185, + 39.9373766 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michael Nixt", + "uid": "6641970", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T20:34:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.19804000054977e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104206891, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.0759429, + 39.9378049 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "familiapicarol", + "uid": "593367", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T18:52:01Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.11259111286773, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104203072, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "ca", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8556325500000002, + 42.08456045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947008463", + "osm_id": 3947008463, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947008578", + "osm_id": 3947008578, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947070933", + "osm_id": 3947070933, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8327515258", + "osm_id": 8327515258, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8702003591", + "osm_id": 8702003591, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947070927", + "osm_id": 3947070927, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947070932", + "osm_id": 3947070932, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8701996043", + "osm_id": 8701996043, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944503747", + "osm_id": 3944503747, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944504276", + "osm_id": 3944504276, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947068928", + "osm_id": 3947068928, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8701994195", + "osm_id": 8701994195, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947070942", + "osm_id": 3947070942, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944500631", + "osm_id": 3944500631, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071258", + "osm_id": 3947071258, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944493484", + "osm_id": 3944493484, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944499361", + "osm_id": 3944499361, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947070948", + "osm_id": 3947070948, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-05T14:43:36Z", + "reviewed_features": [], + "create": 5, + "modify": 28, + "delete": 0, + "area": 0.0000543223456599874, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104191631, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21788375, + 41.441146 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-05T13:34:45Z", + "reviewed_features": [], + "create": 1, + "modify": 67, + "delete": 0, + "area": 0.00566578340899988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104188466, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5826525, + -34.6273904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-05T13:13:38Z", + "reviewed_features": [], + "create": 1, + "modify": 43, + "delete": 0, + "area": 0.0018906987607195, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104187522, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7045993, + -34.658935549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Discostu36", + "uid": "8265165", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T09:52:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104175591, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1351653, + 54.3256607 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T04:45:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104156628, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2560088, + -39.8161799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T04:08:02Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104154788, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.8959752, + 10.3078378 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-05T03:43:09Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00010602932522, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104153784, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.778126900000004, + -34.65372755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T03:32:52Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00897791762664999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104153485, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.10015485, + 37.84436925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T02:20:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104151893, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.8980177, + 10.305034 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #viewpoints", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-04T21:44:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000375247208000645, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104147363, + "host": "mapcomplete.osm.be", + "theme": "viewpoints", + "imagery": "osm", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2991582, + 51.1105638 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8696762328", + "osm_id": 8696762328, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8699019504", + "osm_id": 8699019504, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8699036763", + "osm_id": 8699036763, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762333", + "osm_id": 8696762333, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762358", + "osm_id": 8696762358, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762339", + "osm_id": 8696762339, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944730886", + "osm_id": 3944730886, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944730901", + "osm_id": 3944730901, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758703", + "osm_id": 8696758703, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8699035085", + "osm_id": 8699035085, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762348", + "osm_id": 8696762348, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944729117", + "osm_id": 3944729117, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758686", + "osm_id": 8696758686, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758681", + "osm_id": 8696758681, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8699088591", + "osm_id": 8699088591, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758678", + "osm_id": 8696758678, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758676", + "osm_id": 8696758676, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8699049466", + "osm_id": 8699049466, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731034", + "osm_id": 3944731034, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731303", + "osm_id": 3944731303, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762367", + "osm_id": 8696762367, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758680", + "osm_id": 8696758680, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762376", + "osm_id": 8696762376, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762372", + "osm_id": 8696762372, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731402", + "osm_id": 3944731402, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762366", + "osm_id": 8696762366, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762370", + "osm_id": 8696762370, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944729138", + "osm_id": 3944729138, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944729107", + "osm_id": 3944729107, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758673", + "osm_id": 8696758673, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762381", + "osm_id": 8696762381, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762388", + "osm_id": 8696762388, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758659", + "osm_id": 8696758659, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758674", + "osm_id": 8696758674, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762386", + "osm_id": 8696762386, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8699123528", + "osm_id": 8699123528, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758653", + "osm_id": 8696758653, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762416", + "osm_id": 8696762416, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758670", + "osm_id": 8696758670, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762407", + "osm_id": 8696762407, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944729153", + "osm_id": 3944729153, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731381", + "osm_id": 3944731381, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731273", + "osm_id": 3944731273, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987557", + "osm_id": 3946987557, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987398", + "osm_id": 3946987398, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987601", + "osm_id": 3946987601, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987237", + "osm_id": 3946987237, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987570", + "osm_id": 3946987570, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987630", + "osm_id": 3946987630, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762463", + "osm_id": 8696762463, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987375", + "osm_id": 3946987375, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987582", + "osm_id": 3946987582, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987438", + "osm_id": 3946987438, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762462", + "osm_id": 8696762462, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762433", + "osm_id": 8696762433, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762447", + "osm_id": 8696762447, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762448", + "osm_id": 8696762448, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731427", + "osm_id": 3944731427, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762436", + "osm_id": 8696762436, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987314", + "osm_id": 3946987314, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944730961", + "osm_id": 3944730961, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731052", + "osm_id": 3944731052, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-04T17:43:17Z", + "reviewed_features": [], + "create": 26, + "modify": 120, + "delete": 0, + "area": 0.0000158922657599935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104139265, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2195097, + 41.4331789 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-04T12:58:24Z", + "reviewed_features": [], + "create": 7, + "modify": 57, + "delete": 0, + "area": 0.00687913206770883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104126031, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.66135815, + -34.65304625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-04T11:37:14Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104120947, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9034492, + 10.293082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "meihou", + "uid": "581277", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-04T09:52:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.52267279999746e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104112998, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80683305, + 49.4253923 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-04T09:37:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104111803, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.8954294, + 10.2950032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-04T04:23:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104089998, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9019094, + 10.2979115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-03T23:59:24Z", + "reviewed_features": [], + "create": 1, + "modify": 13, + "delete": 0, + "area": 0.000341412432839728, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104083460, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5591645, + -34.641718 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-03T20:03:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104078157, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3282392, + 50.9950974 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-03T18:51:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104075504, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7664052, + 48.1051001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-03T13:25:47Z", + "reviewed_features": [], + "create": 6, + "modify": 69, + "delete": 0, + "area": 0.0400697216642791, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104060228, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6272041, + -34.602365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael Baier", + "uid": "13203884", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-03T11:41:35Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104053396, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7777917, + 48.1106173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-03T11:25:51Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.0000390062558400138, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104052303, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27718205, + 51.9809647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-03T03:37:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104019987, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9114166, + 10.3126037 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947007403", + "osm_id": 3947007403, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073124", + "osm_id": 3947073124, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8327515256", + "osm_id": 8327515256, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007575", + "osm_id": 3947007575, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3448322522", + "osm_id": 3448322522, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3453962740", + "osm_id": 3453962740, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073345", + "osm_id": 3947073345, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947072414", + "osm_id": 3947072414, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947074417", + "osm_id": 3947074417, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073865", + "osm_id": 3947073865, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007431", + "osm_id": 3947007431, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947074959", + "osm_id": 3947074959, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071272", + "osm_id": 3947071272, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947074699", + "osm_id": 3947074699, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071763", + "osm_id": 3947071763, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073599", + "osm_id": 3947073599, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071338", + "osm_id": 3947071338, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071284", + "osm_id": 3947071284, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947072100", + "osm_id": 3947072100, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947072121", + "osm_id": 3947072121, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947070896", + "osm_id": 3947070896, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071307", + "osm_id": 3947071307, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966354", + "osm_id": 3946966354, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966576", + "osm_id": 3946966576, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947072066", + "osm_id": 3947072066, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8245829986", + "osm_id": 8245829986, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944503108", + "osm_id": 3944503108, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073904", + "osm_id": 3947073904, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965156", + "osm_id": 3946965156, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965031", + "osm_id": 3946965031, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965080", + "osm_id": 3946965080, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944497984", + "osm_id": 3944497984, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944495535", + "osm_id": 3944495535, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965294", + "osm_id": 3946965294, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965452", + "osm_id": 3946965452, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006286", + "osm_id": 3947006286, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8561873442", + "osm_id": 8561873442, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946963458", + "osm_id": 3946963458, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8561873436", + "osm_id": 8561873436, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498001", + "osm_id": 3944498001, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8561873430", + "osm_id": 8561873430, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962913", + "osm_id": 3946962913, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8245829984", + "osm_id": 8245829984, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962139", + "osm_id": 3946962139, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944493468", + "osm_id": 3944493468, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8561873435", + "osm_id": 8561873435, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946963489", + "osm_id": 3946963489, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492684", + "osm_id": 3944492684, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8173421666", + "osm_id": 8173421666, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733331", + "osm_id": 3944733331, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944734368", + "osm_id": 3944734368, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962234", + "osm_id": 3946962234, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733753", + "osm_id": 3944733753, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-02T18:29:49Z", + "reviewed_features": [], + "create": 0, + "modify": 63, + "delete": 0, + "area": 0.000016143469959991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104007776, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2204143, + 41.440472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-02T15:35:08Z", + "reviewed_features": [], + "create": 2, + "modify": 18, + "delete": 0, + "area": 0.0000539267489399301, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104000793, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8063272, + 48.10575575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-02T13:43:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103995755, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23042, + 51.9621928 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947073349", + "osm_id": 3947073349, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3441737825", + "osm_id": 3441737825, + "reasons": [ + 43 + ], + "version": 7, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073257", + "osm_id": 3947073257, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-6066258258", + "osm_id": 6066258258, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-02T13:40:43Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000042443610000056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103995633, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2187200000000002, + 41.4428286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-02T12:23:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103992573, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23042, + 51.9621928 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-02T11:10:43Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103989669, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.8872808, + 10.2965048 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael Baier", + "uid": "13203884", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-02T10:40:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103988585, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7777917, + 48.1106173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-02T10:12:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103987605, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6706588, + 51.9843105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-02T10:09:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.98204910000728e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103987479, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67008075, + 51.98169805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-02T05:38:22Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 5.74769999892468e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103980048, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.88120695, + 10.29909565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-02T02:50:25Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 5.91013999977144e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103978229, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.8891895, + 10.310557249999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-02T01:18:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103977483, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.366381, + 47.6851819 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "andralves", + "uid": "12438683", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T23:26:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103976357, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.6169446, + 41.423333 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T21:50:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.88335410003579e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103975090, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.37256805, + 47.68166775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "landscapemapper", + "uid": "220206", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T20:43:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103973538, + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1075186, + 47.1630492 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T19:23:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.53329599994662e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103971314, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37094715, + 51.0996413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T18:21:28Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000248981201639955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103969136, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3983913, + 51.02951505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T17:30:05Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103967153, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3892071, + 50.9775205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T15:46:56Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000530983048960017, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103962843, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "AGIV", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1106110000000005, + 51.0320236 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T12:41:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103955246, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3306748, + 50.9963862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T12:27:08Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.17750000014066e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103954692, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.04459055, + 14.55266605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T12:19:43Z", + "reviewed_features": [], + "create": 0, + "modify": 52, + "delete": 0, + "area": 0.000206513324969938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103954376, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.667157250000001, + 51.98629615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T12:10:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103954078, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8355383, + 48.0713649 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T08:40:55Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103947055, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5989388, + 51.929751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T08:19:53Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000694166572000048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103946394, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6134907, + 51.9609535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T07:39:41Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.224890266789529, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103945261, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 120.82017015, + 14.38436445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T05:54:42Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103942970, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7633237, + -34.657805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-30T19:59:04Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107226511, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3795404, + 50.8534846 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefano1703", + "uid": "13675370", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-30T19:38:09Z", + "reviewed_features": [], + "create": 14, + "modify": 0, + "delete": 0, + "area": 0.00164236872281991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107225716, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.609601000000001, + 52.003398950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-30T19:13:02Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.1340086633907, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107224814, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7908486, + 51.08049485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-30T18:10:37Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107222570, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3495708, + 44.5274979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-7182608604", + "osm_id": 7182608604, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608597", + "osm_id": 7182608597, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880765404", + "osm_id": 8880765404, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880761681", + "osm_id": 8880761681, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608605", + "osm_id": 7182608605, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608599", + "osm_id": 7182608599, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343374", + "osm_id": 8818343374, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608607", + "osm_id": 7182608607, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608606", + "osm_id": 7182608606, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343371", + "osm_id": 8818343371, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818364825", + "osm_id": 8818364825, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880733500", + "osm_id": 8880733500, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608603", + "osm_id": 7182608603, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343399", + "osm_id": 8818343399, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818356211", + "osm_id": 8818356211, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608602", + "osm_id": 7182608602, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880796678", + "osm_id": 8880796678, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880804524", + "osm_id": 8880804524, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343427", + "osm_id": 8818343427, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880812358", + "osm_id": 8880812358, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880766651", + "osm_id": 8880766651, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343434", + "osm_id": 8818343434, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343431", + "osm_id": 8818343431, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343397", + "osm_id": 8818343397, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880819059", + "osm_id": 8880819059, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818326993", + "osm_id": 8818326993, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753812", + "osm_id": 8875753812, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753811", + "osm_id": 8875753811, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818327043", + "osm_id": 8818327043, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818326999", + "osm_id": 8818326999, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753816", + "osm_id": 8875753816, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901415", + "osm_id": 8875901415, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880806352", + "osm_id": 8880806352, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901425", + "osm_id": 8875901425, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901430", + "osm_id": 8875901430, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818327092", + "osm_id": 8818327092, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818327054", + "osm_id": 8818327054, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880868181", + "osm_id": 8880868181, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901431", + "osm_id": 8875901431, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901383", + "osm_id": 8875901383, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901380", + "osm_id": 8875901380, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901379", + "osm_id": 8875901379, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901393", + "osm_id": 8875901393, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901381", + "osm_id": 8875901381, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901435", + "osm_id": 8875901435, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901385", + "osm_id": 8875901385, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901390", + "osm_id": 8875901390, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901402", + "osm_id": 8875901402, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901382", + "osm_id": 8875901382, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071651", + "osm_id": 8880071651, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901395", + "osm_id": 8875901395, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071647", + "osm_id": 8880071647, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901384", + "osm_id": 8875901384, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880920290", + "osm_id": 8880920290, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071663", + "osm_id": 8880071663, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880913364", + "osm_id": 8880913364, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880932770", + "osm_id": 8880932770, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071694", + "osm_id": 8880071694, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880940033", + "osm_id": 8880940033, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071697", + "osm_id": 8880071697, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071722", + "osm_id": 8880071722, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071650", + "osm_id": 8880071650, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901354", + "osm_id": 8875901354, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071732", + "osm_id": 8880071732, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071738", + "osm_id": 8880071738, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901378", + "osm_id": 8875901378, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071730", + "osm_id": 8880071730, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901357", + "osm_id": 8875901357, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071696", + "osm_id": 8880071696, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901361", + "osm_id": 8875901361, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901362", + "osm_id": 8875901362, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901369", + "osm_id": 8875901369, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901366", + "osm_id": 8875901366, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901364", + "osm_id": 8875901364, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901360", + "osm_id": 8875901360, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901359", + "osm_id": 8875901359, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071691", + "osm_id": 8880071691, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901363", + "osm_id": 8875901363, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753728", + "osm_id": 8875753728, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901356", + "osm_id": 8875901356, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753727", + "osm_id": 8875753727, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753719", + "osm_id": 8875753719, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901358", + "osm_id": 8875901358, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901365", + "osm_id": 8875901365, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880971787", + "osm_id": 8880971787, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875761845", + "osm_id": 8875761845, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753746", + "osm_id": 8875753746, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901331", + "osm_id": 8875901331, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071729", + "osm_id": 8880071729, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901328", + "osm_id": 8875901328, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901340", + "osm_id": 8875901340, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901338", + "osm_id": 8875901338, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901336", + "osm_id": 8875901336, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901333", + "osm_id": 8875901333, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901343", + "osm_id": 8875901343, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901342", + "osm_id": 8875901342, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901339", + "osm_id": 8875901339, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8881018665", + "osm_id": 8881018665, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071773", + "osm_id": 8880071773, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071775", + "osm_id": 8880071775, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071741", + "osm_id": 8880071741, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8881024346", + "osm_id": 8881024346, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071772", + "osm_id": 8880071772, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071768", + "osm_id": 8880071768, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071745", + "osm_id": 8880071745, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901344", + "osm_id": 8875901344, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901337", + "osm_id": 8875901337, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071747", + "osm_id": 8880071747, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071774", + "osm_id": 8880071774, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071769", + "osm_id": 8880071769, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071766", + "osm_id": 8880071766, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071744", + "osm_id": 8880071744, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8881026375", + "osm_id": 8881026375, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071743", + "osm_id": 8880071743, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071767", + "osm_id": 8880071767, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8881019467", + "osm_id": 8881019467, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071761", + "osm_id": 8880071761, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071759", + "osm_id": 8880071759, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071755", + "osm_id": 8880071755, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071764", + "osm_id": 8880071764, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071756", + "osm_id": 8880071756, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071753", + "osm_id": 8880071753, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-30T18:03:48Z", + "reviewed_features": [], + "create": 57, + "modify": 155, + "delete": 0, + "area": 0.0000552284396899659, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107222299, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22171375, + 41.45695365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ymairesse", + "uid": "13325952", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-30T17:42:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107221479, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3982776, + 50.8243429 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-30T17:14:20Z", + "reviewed_features": [], + "create": 0, + "modify": 69, + "delete": 0, + "area": 0.000216837754530026, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107220326, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.77773075, + 41.62106125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MD JAHEER", + "uid": "6830974", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-30T14:30:24Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000220598188199367, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107212429, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 81.66232, + 18.38939245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/OpenWindPowerMap/OpenWindPowerMap.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-30T12:17:19Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000467424262199896, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107205684, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/openwindpowermap/openwindpowermap.json", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8167856000000002, + 50.98108245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-30T01:49:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107175505, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.7101614, + -36.8704582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "elfronto", + "uid": "113505", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-29T22:42:01Z", + "reviewed_features": [], + "create": 0, + "modify": 76, + "delete": 0, + "area": 0.0000168909390399816, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107173275, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "fr", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3871468, + 48.707442900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-29T19:45:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107167852, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7759992, + 41.6278924 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-29T19:12:05Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.239600881833118, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107166629, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0965746, + 50.97009545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-29T17:55:37Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107163685, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3552986, + 50.8481911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-29T17:00:35Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000414872440599941, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107160947, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.776543650000001, + 41.6248751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SDimona", + "uid": "718675", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-29T14:13:35Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000428752990110042, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107153340, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31585175, + 50.13701275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-29T13:29:50Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.00167524025458991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107151395, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.565281649999999, + 51.270291150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "juliazet", + "uid": "12333071", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #waterpumps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-29T11:59:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107146857, + "host": "mapcomplete.osm.be", + "theme": "waterpumps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4610474, + 52.5168006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RudiEn", + "uid": "10472364", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-29T10:42:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107141636, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3433171, + 60.3948088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thomas132", + "uid": "9643191", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-29T01:41:51Z", + "reviewed_features": [], + "create": 8, + "modify": 7, + "delete": 0, + "area": 0.0000286955255600134, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107115215, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -93.65300395, + 41.7347538 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "P Kanzler", + "uid": "6173912", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T20:59:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107110641, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0191421, + 49.4062913 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "P Kanzler", + "uid": "6173912", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T20:45:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107110151, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0132982, + 49.4097763 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-28T17:31:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107102352, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7821286, + 41.622697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "toeklk", + "uid": "219908", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T17:23:40Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000160897471999752, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107102022, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.721686399999999, + 50.8657805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T15:29:11Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000157514989260066, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107096772, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7897045, + 41.618785450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-28T14:00:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107092269, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7469949, + 50.7976986 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-28T13:44:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107091444, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.804531, + 50.6994104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-28T12:37:19Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000259939745999193, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107088207, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12246765, + 52.0725717 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-28T11:30:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107083996, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7457193, + 50.7978641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-28T10:02:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107078002, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6214948, + 43.105798 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "daveemtb", + "uid": "19799", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T08:50:22Z", + "reviewed_features": [], + "create": 4, + "modify": 17, + "delete": 0, + "area": 0.0216607764216999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107073450, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76547185, + 50.997573 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T07:41:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000234863280000123, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107069393, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3984036, + 50.8776843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T04:07:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.81485929996431e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107057978, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.79573605, + 41.61802005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "toeklk", + "uid": "219908", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-27T20:55:40Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000791465386139899, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107051089, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7591382, + 50.867187650000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811448723", + "osm_id": 8811448723, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448722", + "osm_id": 8811448722, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448724", + "osm_id": 8811448724, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870271765", + "osm_id": 8870271765, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936429", + "osm_id": 8807936429, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448706", + "osm_id": 8811448706, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448726", + "osm_id": 8811448726, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822726720", + "osm_id": 8822726720, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822726723", + "osm_id": 8822726723, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870217504", + "osm_id": 8870217504, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936389", + "osm_id": 8807936389, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936391", + "osm_id": 8807936391, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870249747", + "osm_id": 8870249747, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870292669", + "osm_id": 8870292669, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807922193", + "osm_id": 8807922193, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448721", + "osm_id": 8811448721, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936341", + "osm_id": 8807936341, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807922172", + "osm_id": 8807922172, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807922165", + "osm_id": 8807922165, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936422", + "osm_id": 8807936422, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936374", + "osm_id": 8807936374, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448725", + "osm_id": 8811448725, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878144", + "osm_id": 8807878144, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936331", + "osm_id": 8807936331, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878190", + "osm_id": 8807878190, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870340002", + "osm_id": 8870340002, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878189", + "osm_id": 8807878189, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807898547", + "osm_id": 8807898547, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716163", + "osm_id": 8822716163, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716159", + "osm_id": 8822716159, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878185", + "osm_id": 8807878185, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870340100", + "osm_id": 8870340100, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870321981", + "osm_id": 8870321981, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822735970", + "osm_id": 8822735970, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822735971", + "osm_id": 8822735971, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716165", + "osm_id": 8822716165, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870348109", + "osm_id": 8870348109, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822735974", + "osm_id": 8822735974, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716161", + "osm_id": 8822716161, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878207", + "osm_id": 8807878207, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870345691", + "osm_id": 8870345691, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716160", + "osm_id": 8822716160, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807898558", + "osm_id": 8807898558, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716164", + "osm_id": 8822716164, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878204", + "osm_id": 8807878204, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807898554", + "osm_id": 8807898554, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822726618", + "osm_id": 8822726618, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822735969", + "osm_id": 8822735969, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822736020", + "osm_id": 8822736020, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807898598", + "osm_id": 8807898598, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807922194", + "osm_id": 8807922194, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822736021", + "osm_id": 8822736021, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807898596", + "osm_id": 8807898596, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807872983", + "osm_id": 8807872983, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-27T19:01:55Z", + "reviewed_features": [], + "create": 15, + "modify": 57, + "delete": 0, + "area": 0.0000337058266600001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107048155, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2396728, + 41.445234549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brianh", + "uid": "19612", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-27T16:09:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107042682, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.2089359, + 53.2957435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brianh", + "uid": "19612", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-27T14:08:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107038209, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.2178975, + 53.2956951 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-27T13:47:35Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107037475, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0620822, + 51.077856 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-27T13:45:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107037393, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0619696, + 51.0778931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-27T12:50:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107035399, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0502295, + 51.0771769 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-27T12:33:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107034753, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0618511, + 51.0775862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marek-M", + "uid": "598860", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-27T11:22:02Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 5.35502839997452e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107032250, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.41077345, + 54.4414818 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8869396149", + "osm_id": 8869396149, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448753", + "osm_id": 8811448753, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878152", + "osm_id": 8807878152, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807909940", + "osm_id": 8807909940, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807909936", + "osm_id": 8807909936, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807909929", + "osm_id": 8807909929, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807909930", + "osm_id": 8807909930, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807898522", + "osm_id": 8807898522, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807910017", + "osm_id": 8807910017, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Sandra55", + "uid": "13279584", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-27T08:44:00Z", + "reviewed_features": [], + "create": 2, + "modify": 15, + "delete": 0, + "area": 0.000194694247769928, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107027382, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23593435, + 41.44066755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OttoR", + "uid": "4123522", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-26T12:27:13Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107000974, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9728638, + 52.3336624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807921831", + "osm_id": 8807921831, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942789", + "osm_id": 8807942789, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Neusgs", + "uid": "4733200", + "editor": "MapComplete 0.8.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": "2021-06-26T11:30:23Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000012527088000001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106999343, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2423586, + 41.4421288 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T10:05:39Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 3.2909994000133e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106996980, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60826, + 51.92917365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T08:51:55Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000408985793400183, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106994817, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.79599475, + 41.6221853 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T08:49:24Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106994743, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.108259, + 52.0950938 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T08:45:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106994630, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1078083, + 52.0960307 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T07:25:24Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000105329460999996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106992939, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11912845, + 52.087902 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T07:01:36Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000575772551999423, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106992587, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7994719, + 41.6156986 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T06:57:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106992507, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1410035, + 51.0276438 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Botschfter", + "uid": "12456299", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-26T06:37:56Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106992154, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0934908, + 50.4049327 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T22:48:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106986341, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1330481, + 51.0266148 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T18:01:05Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000109635872800214, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106977731, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.799350499999999, + 41.6191791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T16:48:41Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 2.22854279995628e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106974457, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1169738, + 52.08955555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T15:53:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106971808, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8992688, + 51.1283964 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-25T15:32:43Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000181782328410007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106970741, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.775844549999999, + 48.10832284999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T14:54:37Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.24195000005578e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106969091, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90200385, + 51.12583105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T14:50:49Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106968916, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1197919, + 52.0925035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RudiEn", + "uid": "10472364", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T14:39:53Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000204344788000557, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106968408, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3143855, + 60.3960622 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T14:33:42Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106968072, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9575567, + 51.1203863 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T11:00:55Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00021169438127993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106956961, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9086306, + 51.11858145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T08:31:13Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 4.77615919993337e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106946936, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.864247300000001, + 51.408950250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T07:51:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106944340, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4467402, + 51.0917122 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #RailwaySignals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T03:24:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106929887, + "host": "mapcomplete.osm.be", + "theme": "railwaysignals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7878928, + -34.6510406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-24T20:46:00Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106922300, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3264648, + 50.8772372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-24T20:43:05Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106922165, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3264058, + 50.8772236 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-24T19:05:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000157911912000238, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106917819, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53177025, + 50.4039388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ainali", + "uid": "75514", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-24T18:41:04Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106916939, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.914287, + 52.3688819 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-24T17:56:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106915283, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3320802, + 50.9341511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-24T17:38:50Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.000122039095500032, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106914677, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.8104460499999995, + 41.6136903 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.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": "2021-06-24T13:23:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106903098, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7214746, + -34.6653664 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "söm4324", + "uid": "328638", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-24T13:10:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106902414, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.8994036, + 48.3401015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.8.0-rc2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-24T12:14:08Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106899042, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.029673, + 50.9669615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.0d", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-24T11:45:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106897288, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3460491, + 44.4971024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sejohnson", + "uid": "25398", + "editor": "MapComplete 0.8.0d", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-24T00:27:29Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106863963, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "VGIN-Imagery_WM", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.1497646, + 38.8830742 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-23T22:02:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106861737, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9385411, + 42.6799724 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MikelEH", + "uid": "173870", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T20:04:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000464831483999192, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106858650, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.0058401999999997, + 43.331150199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MikelEH", + "uid": "173870", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T20:01:58Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000208995691100202, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106858558, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.01377555, + 43.327766749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RudiEn", + "uid": "10472364", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T19:41:19Z", + "reviewed_features": [], + "create": 2, + "modify": 14, + "delete": 0, + "area": 0.000110194893480046, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106857949, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3190333, + 60.400436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibault Rommel", + "uid": "5846458", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T19:25:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000104297193000054, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106857350, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35486515, + 50.85517525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "juliazet", + "uid": "12333071", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #waterpumps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T19:12:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000801754515899912, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106856805, + "host": "mapcomplete.osm.be", + "theme": "waterpumps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.44864525, + 52.50195295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-23T17:20:22Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000277217434200356, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106852236, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.81486855, + 41.617787199999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Adeh", + "uid": "13624583", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T15:43:15Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.000284502921200022, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106847962, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.408041, + 50.84443955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-23T14:48:41Z", + "reviewed_features": [], + "create": 6, + "modify": 7, + "delete": 0, + "area": 0.0000291232391999902, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106845498, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5909852, + 14.0256778 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rmikke", + "uid": "69607", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T14:24:40Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.000399841990000002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106844386, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 21.066690700000002, + 52.237429000000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CCCGGG", + "uid": "6098724", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T13:59:53Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106843249, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.8745216, + 45.8710111 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "juliazet", + "uid": "12333071", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #waterpumps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T10:22:11Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000212631996990021, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106830043, + "host": "mapcomplete.osm.be", + "theme": "waterpumps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.48499025, + 52.539233249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibault Rommel", + "uid": "5846458", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T09:38:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106827156, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2634724, + 50.8306239 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MikelEH", + "uid": "173870", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T06:57:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106816614, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.0168216, + 43.3268002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robert Whittaker", + "uid": "84263", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-23T05:53:09Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106812639, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7675936, + 52.4184735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #RailwaySignals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T04:37:11Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 1.05695680002092e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106808369, + "host": "mapcomplete.osm.be", + "theme": "railwaysignals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7877295, + -34.651022100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.0-rc2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T22:53:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.86690000001795e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106801712, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.75769905000001, + -33.493288899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thevetchlings", + "uid": "132929", + "editor": "MapComplete 0.8.0b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T22:01:54Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.13906080000826e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106800750, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.09193035, + 50.3944184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SMUsamaShah", + "uid": "12480786", + "editor": "MapComplete 0.8.0b", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-22T20:34:36Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106798030, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1458612, + 52.2141956 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Russ McD", + "uid": "346601", + "editor": "MapComplete 0.8.0b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T18:58:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106794873, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.7170866, + 52.0587911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-22T17:15:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000157911912000238, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106791031, + "host": "pietervdvn.github.io", + "path": "mc/feature/units/", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53177025, + 50.4039388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "lvgx", + "uid": "484826", + "editor": "MapComplete 0.8.0b", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T16:11:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106788186, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "fr", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.5180982, + 45.3491915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "frank vanhyfte", + "uid": "1026732", + "editor": "MapComplete 0.8.0b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T14:30:43Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00171151073963992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106783109, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7168, + 51.073654149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robert Whittaker", + "uid": "84263", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T13:10:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000304214446900122, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106778953, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75020115, + 52.41434385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8856648996", + "osm_id": 8856648996, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8856650449", + "osm_id": 8856650449, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T10:58:16Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00000546201809999889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106771302, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6132603000000001, + 51.18753755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.8.0-rc2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-22T10:57:21Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00000483307123000889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106771234, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99737665, + 51.46671255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "xxoonn", + "uid": "7364813", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T06:11:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000494097082000062, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106752218, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 28.3095468, + 48.12838435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #RailwaySignals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-22T04:20:08Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.1577399996874e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106746369, + "host": "mapcomplete.osm.be", + "theme": "railwaysignals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.787898150000004, + -34.6510947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.0a", + "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": "2021-06-22T02:39:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106743321, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.787923, + -34.650952 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.0-rc2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T23:16:16Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.00260000620986e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106740533, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.58024155000001, + -33.5907841 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T20:31:17Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000326225059199439, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106736580, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.810981999999999, + 41.6180713 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Matthieu Gaillet", + "uid": "287979", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #windpower", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T19:11:25Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00238206411058902, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106733641, + "host": "mapcomplete.osm.be", + "theme": "windpower", + "imagery": "osm", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08076655, + 50.29907455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wolfgang8741", + "uid": "307520", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T18:16:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106731786, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4565247, + 39.4148476 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-21T18:15:42Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106731770, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3122652, + 50.7261627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946964245", + "osm_id": 3946964245, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962201", + "osm_id": 3946962201, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962926", + "osm_id": 3946962926, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962004", + "osm_id": 3946962004, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607241", + "osm_id": 8706607241, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962243", + "osm_id": 3946962243, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946997699", + "osm_id": 3946997699, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962247", + "osm_id": 3946962247, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607235", + "osm_id": 8706607235, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962460", + "osm_id": 3946962460, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964505", + "osm_id": 3946964505, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962242", + "osm_id": 3946962242, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964169", + "osm_id": 3946964169, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962934", + "osm_id": 3946962934, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607188", + "osm_id": 8706607188, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607156", + "osm_id": 8706607156, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607146", + "osm_id": 8706607146, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607167", + "osm_id": 8706607167, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607169", + "osm_id": 8706607169, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607149", + "osm_id": 8706607149, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606977", + "osm_id": 8706606977, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607170", + "osm_id": 8706607170, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606973", + "osm_id": 8706606973, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607045", + "osm_id": 8706607045, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854443379", + "osm_id": 8854443379, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607007", + "osm_id": 8706607007, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607063", + "osm_id": 8706607063, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606976", + "osm_id": 8706606976, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607229", + "osm_id": 8706607229, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606974", + "osm_id": 8706606974, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607222", + "osm_id": 8706607222, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607200", + "osm_id": 8706607200, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607247", + "osm_id": 8706607247, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607249", + "osm_id": 8706607249, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606984", + "osm_id": 8706606984, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606989", + "osm_id": 8706606989, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854654647", + "osm_id": 8854654647, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606962", + "osm_id": 8706606962, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606969", + "osm_id": 8706606969, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606940", + "osm_id": 8706606940, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606992", + "osm_id": 8706606992, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606948", + "osm_id": 8706606948, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606941", + "osm_id": 8706606941, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606938", + "osm_id": 8706606938, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606928", + "osm_id": 8706606928, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607037", + "osm_id": 8706607037, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607020", + "osm_id": 8706607020, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854875113", + "osm_id": 8854875113, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854621854", + "osm_id": 8854621854, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811623095", + "osm_id": 8811623095, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607085", + "osm_id": 8706607085, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607038", + "osm_id": 8706607038, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854901661", + "osm_id": 8854901661, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607105", + "osm_id": 8706607105, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854843829", + "osm_id": 8854843829, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607307", + "osm_id": 8706607307, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607012", + "osm_id": 8706607012, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854985969", + "osm_id": 8854985969, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811623089", + "osm_id": 8811623089, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8855055613", + "osm_id": 8855055613, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770347061", + "osm_id": 8770347061, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607026", + "osm_id": 8706607026, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346837", + "osm_id": 8770346837, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811623053", + "osm_id": 8811623053, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811503055", + "osm_id": 8811503055, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346846", + "osm_id": 8770346846, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346847", + "osm_id": 8770346847, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346831", + "osm_id": 8770346831, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811503063", + "osm_id": 8811503063, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346856", + "osm_id": 8770346856, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715696", + "osm_id": 8811715696, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715657", + "osm_id": 8811715657, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715664", + "osm_id": 8811715664, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346857", + "osm_id": 8770346857, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346849", + "osm_id": 8770346849, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346848", + "osm_id": 8770346848, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715698", + "osm_id": 8811715698, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715663", + "osm_id": 8811715663, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346736", + "osm_id": 8770346736, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-21T17:59:06Z", + "reviewed_features": [], + "create": 17, + "modify": 102, + "delete": 0, + "area": 0.0000528712960799628, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106731136, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2311233, + 41.43989525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Welshie", + "uid": "508", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T17:21:46Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000339036892899733, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106729600, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60655155, + 51.443386149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Welshie", + "uid": "508", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T17:18:26Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0182089856449001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106729452, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66924345, + 51.5211231 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T16:26:46Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0000782934285599601, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106727082, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.8035423, + 41.61691945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "andrewsh", + "uid": "71631", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-21T11:38:17Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106712647, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.1108171, + 48.1439458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibault Rommel", + "uid": "5846458", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T08:50:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106702422, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.395986, + 50.8565891 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.0-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T07:46:15Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106699081, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7785003, + 51.014973 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-21T07:05:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000250641783000901, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106696782, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32852645, + 50.84211865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-20T22:18:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106682441, + "host": "pietervdvn.github.io", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0627553, + 51.1631967 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Steven Lauwers", + "uid": "6799245", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-20T19:22:58Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106678215, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4806838, + 51.0216314 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-20T19:07:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106677882, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5183164, + 50.9798866 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8850821987", + "osm_id": 8850821987, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "emergency": "ULB" + } + } + ], + "user": "Feuerwehr Amt Putlitz-Berge", + "uid": "13580003", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-20T16:25:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106672801, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8748876, + 53.239025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mgeiser", + "uid": "14686", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-20T14:58:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000023196603999964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106669409, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5239051, + 47.4146851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-20T13:39:33Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106666526, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.2602001, + 59.7173728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8849968887", + "osm_id": 8849968887, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758241", + "osm_id": 8811758241, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758196", + "osm_id": 8811758196, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804738", + "osm_id": 8811804738, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804740", + "osm_id": 8811804740, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804739", + "osm_id": 8811804739, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-20T09:54:14Z", + "reviewed_features": [], + "create": 3, + "modify": 10, + "delete": 0, + "area": 0.0000195215545800037, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106659240, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23742605, + 41.4390898 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-20T09:48:59Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106659065, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3604404, + 50.8424905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "claravds", + "uid": "13593555", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-20T08:27:21Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106656754, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7592565, + 51.0445581 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skyfredo", + "uid": "3500358", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-19T20:08:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106645256, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6474642, + 46.686447 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-19T19:09:42Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106643640, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4349977, + 50.7657692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-19T17:58:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106641633, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3852293, + 50.7594359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-19T17:40:16Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.47064000000968e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106641056, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2130821999999997, + 51.216153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ymairesse", + "uid": "13325952", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-19T16:39:18Z", + "reviewed_features": [], + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.000762909842640194, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106639119, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4077103, + 50.8185517 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-19T13:52:31Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000670129384199925, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106633095, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07447395, + 53.0870862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811758224", + "osm_id": 8811758224, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804871", + "osm_id": 8811804871, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758208", + "osm_id": 8811758208, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758231", + "osm_id": 8811758231, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758230", + "osm_id": 8811758230, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758217", + "osm_id": 8811758217, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758207", + "osm_id": 8811758207, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758212", + "osm_id": 8811758212, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758220", + "osm_id": 8811758220, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-19T11:52:16Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 3.53421959998595e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106629351, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2356328, + 41.4392396 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811797532", + "osm_id": 8811797532, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804724", + "osm_id": 8811804724, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811797576", + "osm_id": 8811797576, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811797533", + "osm_id": 8811797533, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804749", + "osm_id": 8811804749, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811797549", + "osm_id": 8811797549, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811797529", + "osm_id": 8811797529, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804853", + "osm_id": 8811804853, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-19T10:06:02Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000054754888000019, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106625656, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2386850000000003, + 41.437396250000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-19T08:52:39Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106622963, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2572879, + 50.8426534 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AlexeyTyur", + "uid": "10509852", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-19T02:19:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106614434, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -112.07274125, + 33.4625901 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnuntoo", + "uid": "1843426", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-18T20:39:34Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106608684, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.79409629999998, + 61.1872781 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Olli1220", + "uid": "13415916", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-18T19:00:18Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106605042, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6645755, + 52.1846388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-18T18:49:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.34557799997547e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106604643, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4279213, + 51.10014875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-18T15:06:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106595402, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4665137, + 50.3579165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-18T14:54:15Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106594930, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7814314, + 48.1086634 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-18T10:51:41Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.0044699717605397, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106583466, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2440671500000002, + 51.216379 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-18T08:33:17Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00202452675519969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106575401, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8662103, + 50.9958733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-18T08:24:01Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106574955, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1816176, + 51.1931976 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #windpower", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-18T07:21:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000631299317998147, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106571251, + "host": "mapcomplete.osm.be", + "theme": "windpower", + "imagery": "osm", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8063254, + 50.99397785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-18T05:15:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106564027, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7588237, + -33.4944575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lukas Podzhog", + "uid": "11428111", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T22:32:56Z", + "reviewed_features": [], + "create": 12, + "modify": 41, + "delete": 0, + "area": 0.000114787326159999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106554571, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3689763500000005, + 50.8509216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alazeo", + "uid": "8657522", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-17T18:54:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106547773, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7240504, + 51.0537634 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lukas Podzhog", + "uid": "11428111", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T16:48:09Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000259797344000018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106542885, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4469925, + 50.843114 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-17T14:18:31Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000265828811080018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106535621, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2048985, + 51.3199888 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208677", + "osm_id": 8744208677, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208630", + "osm_id": 8744208630, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "montse ma", + "uid": "13553228", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T13:44:49Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.07268950000778e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106533915, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24871825, + 41.452016150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-17T13:34:44Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.0000810656870399676, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106533490, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6308613, + -34.6501123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8841805569", + "osm_id": 8841805569, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T11:50:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106527618, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23495, + 41.4405327 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Matthieu Gaillet", + "uid": "287979", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/OpenWindPowerMap/OpenWindPowerMap.json", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T10:05:45Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0636084589693203, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106520703, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/openwindpowermap/openwindpowermap.json", + "imagery": "SPW_ORTHO_LAST", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.016924400000001, + 50.3442427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/OpenWindPowerMap/OpenWindPowerMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T08:58:24Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.00646570500815011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106516180, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/openwindpowermap/openwindpowermap.json", + "imagery": "osm", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62373295, + 51.197543350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Feuerwehr Amt Putlitz-Berge", + "uid": "13580003", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-17T08:56:29Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106516051, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.0327356, + 53.2451823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-17T08:39:28Z", + "reviewed_features": [], + "create": 10, + "modify": 40, + "delete": 0, + "area": 0.00430452029760043, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106514955, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2306443, + 51.2089972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-17T07:22:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106509898, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1810248, + 51.1975359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ChristianA", + "uid": "429903", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T06:17:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.30233679998538e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106505668, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.3636667, + 58.67330685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T03:19:33Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.71416399979953e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106496650, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.73707425, + -33.5164379 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-16T22:49:06Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.6473600001571e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106492683, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61555725, + 51.1860527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #skateparks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-16T19:37:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106487346, + "host": "mapcomplete.osm.be", + "theme": "skateparks", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1982204, + 51.1872852 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8812977059", + "osm_id": 8812977059, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839766352", + "osm_id": 8839766352, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812977060", + "osm_id": 8812977060, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839754061", + "osm_id": 8839754061, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001023", + "osm_id": 8813001023, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812977074", + "osm_id": 8812977074, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001046", + "osm_id": 8813001046, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001022", + "osm_id": 8813001022, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455199", + "osm_id": 8770455199, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001045", + "osm_id": 8813001045, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455195", + "osm_id": 8770455195, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455231", + "osm_id": 8770455231, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839810276", + "osm_id": 8839810276, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001038", + "osm_id": 8813001038, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001097", + "osm_id": 8813001097, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001099", + "osm_id": 8813001099, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001037", + "osm_id": 8813001037, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839775584", + "osm_id": 8839775584, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839795993", + "osm_id": 8839795993, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455162", + "osm_id": 8770455162, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455163", + "osm_id": 8770455163, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455239", + "osm_id": 8770455239, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455299", + "osm_id": 8770455299, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455186", + "osm_id": 8770455186, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455197", + "osm_id": 8770455197, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455300", + "osm_id": 8770455300, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455296", + "osm_id": 8770455296, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455313", + "osm_id": 8770455313, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839858770", + "osm_id": 8839858770, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001119", + "osm_id": 8813001119, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001108", + "osm_id": 8813001108, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001104", + "osm_id": 8813001104, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455295", + "osm_id": 8770455295, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455312", + "osm_id": 8770455312, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455314", + "osm_id": 8770455314, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001117", + "osm_id": 8813001117, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839859503", + "osm_id": 8839859503, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455226", + "osm_id": 8770455226, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839888057", + "osm_id": 8839888057, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455225", + "osm_id": 8770455225, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839887166", + "osm_id": 8839887166, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001120", + "osm_id": 8813001120, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7221184063", + "osm_id": 7221184063, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7221184068", + "osm_id": 7221184068, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813015858", + "osm_id": 8813015858, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7221184073", + "osm_id": 7221184073, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001111", + "osm_id": 8813001111, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839873143", + "osm_id": 8839873143, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7221184072", + "osm_id": 7221184072, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812977065", + "osm_id": 8812977065, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813015859", + "osm_id": 8813015859, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812977063", + "osm_id": 8812977063, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812977053", + "osm_id": 8812977053, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818558656", + "osm_id": 8818558656, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818558764", + "osm_id": 8818558764, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818558651", + "osm_id": 8818558651, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818558652", + "osm_id": 8818558652, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818558765", + "osm_id": 8818558765, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839926043", + "osm_id": 8839926043, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818542890", + "osm_id": 8818542890, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818446069", + "osm_id": 8818446069, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839959178", + "osm_id": 8839959178, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818542870", + "osm_id": 8818542870, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818542865", + "osm_id": 8818542865, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818542860", + "osm_id": 8818542860, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818542863", + "osm_id": 8818542863, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818542864", + "osm_id": 8818542864, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818446070", + "osm_id": 8818446070, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818511903", + "osm_id": 8818511903, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818446044", + "osm_id": 8818446044, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-16T18:14:23Z", + "reviewed_features": [], + "create": 25, + "modify": 83, + "delete": 0, + "area": 0.0000294387985500018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106484165, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22210595, + 41.45090255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "A_Giese", + "uid": "13575554", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-16T17:59:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106483648, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7827296, + 53.1345328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnuntoo", + "uid": "1843426", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-16T17:33:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106482783, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.72364305000002, + 61.2029519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Globelotter", + "uid": "6141733", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-16T14:05:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000393717997999459, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106473431, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5164848, + 51.130294649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5b", + "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": "2021-06-16T13:42:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106472157, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5988948, + -34.6451119 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-16T12:28:35Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.000611350483549981, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106467529, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22363235, + 51.30519845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-16T12:28:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106467492, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9357654, + 42.6803247 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Etdonc", + "uid": "13573147", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-16T10:54:26Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106460720, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3331087, + 50.8765703 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-16T01:58:18Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106428757, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.36437325, + 47.6833503 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-16T00:18:17Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.98276699991533e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106427529, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.34921865, + 47.683291600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-15T20:43:47Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106423177, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6155697, + 51.1854563 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744209672", + "osm_id": 8744209672, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209663", + "osm_id": 8744209663, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209682", + "osm_id": 8744209682, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209684", + "osm_id": 8744209684, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209674", + "osm_id": 8744209674, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209675", + "osm_id": 8744209675, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209680", + "osm_id": 8744209680, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209652", + "osm_id": 8744209652, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836746573", + "osm_id": 8836746573, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209485", + "osm_id": 8744209485, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595813", + "osm_id": 8807595813, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595812", + "osm_id": 8807595812, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652528", + "osm_id": 8807652528, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836732649", + "osm_id": 8836732649, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595809", + "osm_id": 8807595809, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836769897", + "osm_id": 8836769897, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652417", + "osm_id": 8807652417, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652536", + "osm_id": 8807652536, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652533", + "osm_id": 8807652533, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209607", + "osm_id": 8744209607, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595810", + "osm_id": 8807595810, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836771220", + "osm_id": 8836771220, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209578", + "osm_id": 8744209578, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595816", + "osm_id": 8807595816, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836748723", + "osm_id": 8836748723, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595805", + "osm_id": 8807595805, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595794", + "osm_id": 8807595794, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595774", + "osm_id": 8807595774, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595775", + "osm_id": 8807595775, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807657467", + "osm_id": 8807657467, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595808", + "osm_id": 8807595808, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209673", + "osm_id": 8744209673, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807657493", + "osm_id": 8807657493, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595776", + "osm_id": 8807595776, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665527", + "osm_id": 8807665527, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836769678", + "osm_id": 8836769678, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595779", + "osm_id": 8807595779, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665567", + "osm_id": 8807665567, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652472", + "osm_id": 8807652472, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665522", + "osm_id": 8807665522, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652464", + "osm_id": 8807652464, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836760785", + "osm_id": 8836760785, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665632", + "osm_id": 8807665632, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665580", + "osm_id": 8807665580, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807657451", + "osm_id": 8807657451, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665611", + "osm_id": 8807665611, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665640", + "osm_id": 8807665640, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665625", + "osm_id": 8807665625, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665589", + "osm_id": 8807665589, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665624", + "osm_id": 8807665624, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665553", + "osm_id": 8807665553, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652465", + "osm_id": 8807652465, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836810564", + "osm_id": 8836810564, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665622", + "osm_id": 8807665622, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665584", + "osm_id": 8807665584, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836817054", + "osm_id": 8836817054, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836790876", + "osm_id": 8836790876, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665585", + "osm_id": 8807665585, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836783173", + "osm_id": 8836783173, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665643", + "osm_id": 8807665643, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665581", + "osm_id": 8807665581, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665634", + "osm_id": 8807665634, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665591", + "osm_id": 8807665591, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665582", + "osm_id": 8807665582, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665588", + "osm_id": 8807665588, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652418", + "osm_id": 8807652418, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836820132", + "osm_id": 8836820132, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665596", + "osm_id": 8807665596, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665612", + "osm_id": 8807665612, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595777", + "osm_id": 8807595777, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665626", + "osm_id": 8807665626, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652448", + "osm_id": 8807652448, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652445", + "osm_id": 8807652445, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665649", + "osm_id": 8807665649, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652447", + "osm_id": 8807652447, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652441", + "osm_id": 8807652441, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836817374", + "osm_id": 8836817374, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650446", + "osm_id": 8812650446, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652442", + "osm_id": 8807652442, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836838073", + "osm_id": 8836838073, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650494", + "osm_id": 8812650494, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665618", + "osm_id": 8807665618, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650428", + "osm_id": 8812650428, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836828608", + "osm_id": 8836828608, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650438", + "osm_id": 8812650438, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652434", + "osm_id": 8807652434, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836834897", + "osm_id": 8836834897, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650451", + "osm_id": 8812650451, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650455", + "osm_id": 8812650455, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650457", + "osm_id": 8812650457, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650453", + "osm_id": 8812650453, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758186", + "osm_id": 8811758186, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758185", + "osm_id": 8811758185, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431605", + "osm_id": 8811431605, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-15T18:47:07Z", + "reviewed_features": [], + "create": 18, + "modify": 87, + "delete": 0, + "area": 0.000106573120910057, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106419096, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24250505, + 41.44191085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-15T14:03:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106406539, + "host": "192.168.88.253:1234", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2245804, + 51.215657 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-15T11:31:56Z", + "reviewed_features": [], + "create": 4, + "modify": 31, + "delete": 0, + "area": 0.00103065142663995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106397570, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1937398000000004, + 51.33658905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-15T11:21:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0172293330474014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106396842, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0414097, + 50.9205177 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-15T09:55:20Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 6.26364089996515e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106390470, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68579225, + 50.87367895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-15T09:17:41Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 1.58960319998113e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106387614, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6634291, + 50.8672283 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-15T09:09:29Z", + "reviewed_features": [], + "create": 4, + "modify": 13, + "delete": 0, + "area": 0.00000132264351998633, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106386975, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2404108999999996, + 51.210834750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-15T08:52:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.08012170001285e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106385826, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66315185, + 50.86702405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-15T07:38:39Z", + "reviewed_features": [], + "create": 3, + "modify": 14, + "delete": 0, + "area": 0.000407656466320098, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106380928, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20948705, + 51.1967086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnuntoo", + "uid": "1843426", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-14T22:24:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106360002, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.75799404999998, + 61.2061611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnuntoo", + "uid": "1843426", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T20:53:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106357695, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.7236431, + 61.2029519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GrietVH", + "uid": "13560807", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T19:35:51Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106355182, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4830905, + 51.0398257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946962877", + "osm_id": 3946962877, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833127483", + "osm_id": 8833127483, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964983", + "osm_id": 3946964983, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965070", + "osm_id": 3946965070, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962237", + "osm_id": 3946962237, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964944", + "osm_id": 3946964944, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606922", + "osm_id": 8706606922, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964925", + "osm_id": 3946964925, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637940", + "osm_id": 8811637940, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637956", + "osm_id": 8811637956, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964985", + "osm_id": 3946964985, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811623059", + "osm_id": 8811623059, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833236126", + "osm_id": 8833236126, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637945", + "osm_id": 8811637945, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637958", + "osm_id": 8811637958, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637939", + "osm_id": 8811637939, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811623053", + "osm_id": 8811623053, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715680", + "osm_id": 8811715680, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637944", + "osm_id": 8811637944, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965060", + "osm_id": 3946965060, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715684", + "osm_id": 8811715684, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637875", + "osm_id": 8811637875, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637900", + "osm_id": 8811637900, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811503022", + "osm_id": 8811503022, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811503018", + "osm_id": 8811503018, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607068", + "osm_id": 8706607068, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637941", + "osm_id": 8811637941, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448673", + "osm_id": 8811448673, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833279391", + "osm_id": 8833279391, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448703", + "osm_id": 8811448703, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833285186", + "osm_id": 8833285186, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448702", + "osm_id": 8811448702, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833249623", + "osm_id": 8833249623, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811623072", + "osm_id": 8811623072, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448669", + "osm_id": 8811448669, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833293662", + "osm_id": 8833293662, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448692", + "osm_id": 8811448692, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448701", + "osm_id": 8811448701, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448663", + "osm_id": 8811448663, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448700", + "osm_id": 8811448700, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431583", + "osm_id": 8811431583, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448734", + "osm_id": 8811448734, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448674", + "osm_id": 8811448674, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637882", + "osm_id": 8811637882, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448735", + "osm_id": 8811448735, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942852", + "osm_id": 8807942852, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431589", + "osm_id": 8811431589, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431591", + "osm_id": 8811431591, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942882", + "osm_id": 8807942882, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942807", + "osm_id": 8807942807, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833300761", + "osm_id": 8833300761, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431590", + "osm_id": 8811431590, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942883", + "osm_id": 8807942883, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942884", + "osm_id": 8807942884, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942809", + "osm_id": 8807942809, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942805", + "osm_id": 8807942805, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448730", + "osm_id": 8811448730, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942885", + "osm_id": 8807942885, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431584", + "osm_id": 8811431584, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431588", + "osm_id": 8811431588, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942849", + "osm_id": 8807942849, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942910", + "osm_id": 8807942910, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942888", + "osm_id": 8807942888, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942854", + "osm_id": 8807942854, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942855", + "osm_id": 8807942855, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942951", + "osm_id": 8807942951, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942948", + "osm_id": 8807942948, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942944", + "osm_id": 8807942944, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942922", + "osm_id": 8807942922, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942938", + "osm_id": 8807942938, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942804", + "osm_id": 8807942804, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921897", + "osm_id": 8807921897, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942950", + "osm_id": 8807942950, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942924", + "osm_id": 8807942924, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942905", + "osm_id": 8807942905, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942886", + "osm_id": 8807942886, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921881", + "osm_id": 8807921881, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942887", + "osm_id": 8807942887, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942837", + "osm_id": 8807942837, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942942", + "osm_id": 8807942942, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942941", + "osm_id": 8807942941, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807891010", + "osm_id": 8807891010, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921837", + "osm_id": 8807921837, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807870600", + "osm_id": 8807870600, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921895", + "osm_id": 8807921895, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209136", + "osm_id": 8744209136, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209158", + "osm_id": 8744209158, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942907", + "osm_id": 8807942907, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209160", + "osm_id": 8744209160, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807870601", + "osm_id": 8807870601, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209135", + "osm_id": 8744209135, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208879", + "osm_id": 8744208879, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209159", + "osm_id": 8744209159, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209146", + "osm_id": 8744209146, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209148", + "osm_id": 8744209148, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921762", + "osm_id": 8807921762, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208881", + "osm_id": 8744208881, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796786712", + "osm_id": 8796786712, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-14T18:15:37Z", + "reviewed_features": [], + "create": 16, + "modify": 99, + "delete": 0, + "area": 0.000195342278760016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106352086, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23578025, + 41.4432731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-14T17:13:28Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 5.56663840002724e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106349807, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.359883700000001, + 44.497995700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811431538", + "osm_id": 8811431538, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T16:00:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000002033021080004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106346957, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2398496000000003, + 41.44005855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-14T14:32:43Z", + "reviewed_features": [], + "create": 8, + "modify": 34, + "delete": 0, + "area": 0.0058730880600001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106343083, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2401533999999996, + 51.2314305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-14T13:59:46Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106341586, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2199034, + 51.2157079 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5b", + "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": "2021-06-14T13:32:09Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00459789261036064, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106340240, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.61445435, + -34.652380300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T12:49:30Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106338046, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6320188, + 51.7466482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T11:45:38Z", + "reviewed_features": [], + "create": 7, + "modify": 8, + "delete": 0, + "area": 8.8923088000464e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106334094, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23988455, + 41.439640499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8831834734", + "osm_id": 8831834734, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744207969", + "osm_id": 8744207969, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "montse ma", + "uid": "13553228", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T11:42:42Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000336052287000709, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106333893, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25119265, + 41.45159155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T11:08:06Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106331264, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2119413, + 51.2161752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811431663", + "osm_id": 8811431663, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431665", + "osm_id": 8811431665, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431645", + "osm_id": 8811431645, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431644", + "osm_id": 8811431644, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960807", + "osm_id": 8807960807, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T09:48:08Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 8.8548075000067e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106325499, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24206565, + 41.43956195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "nicolambo", + "uid": "12403569", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-13T21:43:02Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106298509, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.474571, + 51.0331244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-13T20:36:54Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.033151499986e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106296949, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osmfr", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.57533355, + -33.60786365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8829810955", + "osm_id": 8829810955, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "montse ma", + "uid": "13553228", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-13T16:40:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106289865, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2516957, + 41.4516107 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-13T16:30:11Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106289501, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9455588, + 41.5384073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-13T02:14:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.83202399988106e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106269713, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5593782, + 13.9631211 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-12T20:56:44Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00101939491107993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106265939, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5446573, + 51.015526699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944732524", + "osm_id": 3944732524, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732743", + "osm_id": 3944732743, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732925", + "osm_id": 3944732925, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732874", + "osm_id": 3944732874, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-12T18:35:02Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.89613070000915e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106262532, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21991605, + 41.43618465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FlawOfAverages", + "uid": "4988361", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-12T16:50:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106259611, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1252923, + 57.52189 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FlawOfAverages", + "uid": "4988361", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-12T16:30:41Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00159983407547989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106258920, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1217972, + 57.158449700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #infotafel", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-12T10:42:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106248402, + "host": "pietervdvn.github.io", + "theme": "infotafel", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9772384, + 51.450567 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944733307", + "osm_id": 3944733307, + "reasons": [ + 43 + ], + "version": 7, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-12T10:19:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106247654, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2181348, + 41.4369497 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-12T08:40:09Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106244653, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1200299, + 52.0889095 + ] + } + }, + { + "type": "Feature", + "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": "2021-06-11T19:00:27Z", + "reviewed_features": [], + "create": 6, + "modify": 4, + "delete": 0, + "area": 0.00489549907988024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106229310, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8176342, + 53.15545185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kalepom", + "uid": "392288", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-11T16:41:23Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 9.43616200009493e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106225224, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5354039, + 47.22013895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-11T13:49:49Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.0000672114655999949, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106218338, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2224668999999997, + 51.1817236 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-11T13:47:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106218210, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2177214, + 51.1852644 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-11T10:11:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106206655, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2093006, + 51.2504045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-11T10:05:54Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106206319, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2093006, + 51.2504045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-11T08:18:25Z", + "reviewed_features": [], + "create": 2, + "modify": 13, + "delete": 0, + "area": 0.0000209571895800057, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106199557, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "Mapbox", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2193945, + 51.20038115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-11T08:14:58Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106199356, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "Mapbox", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2207564, + 51.1968115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T19:36:15Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106174805, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2256675, + 51.2009292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T14:47:33Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106162717, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2358518, + 50.7362727 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T13:48:05Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0799440740714425, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106160156, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5288760999999997, + 51.1046504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5a", + "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": "2021-06-10T13:24:23Z", + "reviewed_features": [], + "create": 1, + "modify": 21, + "delete": 0, + "area": 0.00252049350432013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106159036, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.66589385, + -34.6542771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T12:54:01Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106157565, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.4111477, + 51.667655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T12:05:20Z", + "reviewed_features": [], + "create": 5, + "modify": 29, + "delete": 0, + "area": 0.000189944582519961, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106155038, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198309, + 51.210788050000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T09:57:58Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106146705, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2837828, + 50.7132916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T07:13:30Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.000187980272219982, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106135263, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2165451000000003, + 51.201877550000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-09T18:42:28Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106112177, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2524009, + 51.956147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5a", + "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": "2021-06-09T14:22:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.77909999756847e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106101463, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.49182545, + -34.54722945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-09T12:58:34Z", + "reviewed_features": [], + "create": 8, + "modify": 16, + "delete": 0, + "area": 0.00132695962624003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106097152, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1598628, + 51.953407299999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-09T11:53:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106093301, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3497738, + 44.5030433 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-09T11:22:41Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.0496157636274295, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106091074, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06109805, + 51.03158645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-09T06:32:55Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00408401316960023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106072658, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7997411999999997, + 51.1744513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lawchen", + "uid": "553964", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-09T05:47:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106070096, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5420542, + 24.9968233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T22:08:54Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.00000163167569999259, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106058676, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.75982205, + -33.4864679 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T22:02:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106058511, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6642932, + -33.5369547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mareksch", + "uid": "12935906", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T19:50:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106054883, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.6944958, + 49.2065668 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811797611", + "osm_id": 8811797611, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T19:43:19Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.22457750003222e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106054597, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23953945, + 41.43921375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T19:31:41Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000367118790999931, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106054181, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.659544, + 51.112606850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T18:03:20Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106051121, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6425298, + 51.7474555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T17:49:50Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000139499830199941, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106050573, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8635547, + 51.033286450000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T16:49:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106047941, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198846, + 51.2157082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T15:59:55Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.0000344295267000236, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106045737, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8604228000000003, + 51.03445105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T15:17:10Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.0000112135430499913, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106043773, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.78210735, + 48.10966005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T15:11:04Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106043486, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198712, + 51.2157065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T14:31:55Z", + "reviewed_features": [], + "create": 0, + "modify": 23, + "delete": 0, + "area": 0.00223185254137998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106041609, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21332315, + 51.357829100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T13:58:11Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0648750359569194, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106040090, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0196522999999997, + 50.91703675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5", + "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": "2021-06-08T13:40:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106039166, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.598192, + -34.645163 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T13:37:12Z", + "reviewed_features": [], + "create": 1, + "modify": 22, + "delete": 0, + "area": 0.00750502886369999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106039020, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26063735, + 51.314180699999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T12:38:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106035974, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9140444, + 52.5125487 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T12:31:51Z", + "reviewed_features": [], + "create": 6, + "modify": 9, + "delete": 0, + "area": 0.00000960950448002223, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106035531, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9142402, + 52.5115096 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811431673", + "osm_id": 8811431673, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431677", + "osm_id": 8811431677, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431674", + "osm_id": 8811431674, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T11:44:45Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 3.76399999998925e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106032433, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2402151, + 41.44001605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T11:32:19Z", + "reviewed_features": [], + "create": 3, + "modify": 15, + "delete": 0, + "area": 0.00041935779439995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106031602, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1991914, + 51.1968607 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T11:27:51Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.0153657695491605, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106031262, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "CyclOSM", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.600244849999999, + 51.1025837 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T11:24:28Z", + "reviewed_features": [], + "create": 2, + "modify": 69, + "delete": 0, + "area": 0.0125468875634399, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106031010, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30232, + 51.3011769 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T11:00:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.81667999853649e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106029375, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.4353391, + 38.40942545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807921806", + "osm_id": 8807921806, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807925058", + "osm_id": 8807925058, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921809", + "osm_id": 8807921809, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921811", + "osm_id": 8807921811, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807925051", + "osm_id": 8807925051, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921810", + "osm_id": 8807921810, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Neusgs", + "uid": "4733200", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T09:42:07Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.00000220783871999981, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106024174, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2423232, + 41.4427319 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "4b696d", + "uid": "1420318", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T09:35:18Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000388517472001227, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106023713, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.733525, + 51.028718 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "4b696d", + "uid": "1420318", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T09:30:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000421068199999815, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106023369, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.73361425, + 51.025560600000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T09:05:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106021684, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5617332, + 13.9642587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T08:41:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.60022399999422e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106020085, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5627184, + 13.964552300000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T08:08:29Z", + "reviewed_features": [], + "create": 4, + "modify": 17, + "delete": 0, + "area": 0.000165989698199995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106018086, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2195606, + 51.194798950000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T07:45:40Z", + "reviewed_features": [], + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.519445340454995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106016740, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.970667949999999, + 50.965588499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "relation-5583904", + "osm_id": 5583904, + "reasons": [ + 42 + ], + "version": 6, + "primary_tags": {} + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T07:02:13Z", + "reviewed_features": [], + "create": 3, + "modify": 37, + "delete": 0, + "area": 0.00160111532728003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106013851, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4203578, + 51.2797844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T05:10:23Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106006559, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6330753, + 51.7437815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5", + "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": "2021-06-08T01:36:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106000128, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.8656073, + -34.3709202 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5", + "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": "2021-06-08T00:49:17Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.68682719998656e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105999548, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.643626100000006, + -34.652601149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "NoiramK", + "uid": "4149326", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T23:46:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.57419999826466e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105998691, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.9856387, + 69.64829945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807960748", + "osm_id": 8807960748, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T14:30:37Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.43518999994191e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105978830, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24270295, + 41.4410455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807930802", + "osm_id": 8807930802, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930780", + "osm_id": 8807930780, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930782", + "osm_id": 8807930782, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209326", + "osm_id": 8744209326, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209325", + "osm_id": 8744209325, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T14:19:23Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.0000222860601600019, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105978238, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2444271000000002, + 41.4427731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744209410", + "osm_id": 8744209410, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209403", + "osm_id": 8744209403, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209413", + "osm_id": 8744209413, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209405", + "osm_id": 8744209405, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209407", + "osm_id": 8744209407, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209360", + "osm_id": 8744209360, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209409", + "osm_id": 8744209409, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209362", + "osm_id": 8744209362, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209392", + "osm_id": 8744209392, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T14:09:06Z", + "reviewed_features": [], + "create": 2, + "modify": 14, + "delete": 0, + "area": 0.00000139107443999805, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105977655, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2475017, + 41.44585205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744209365", + "osm_id": 8744209365, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209402", + "osm_id": 8744209402, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209375", + "osm_id": 8744209375, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T14:03:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.30314999998862e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105977341, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2473639, + 41.4457751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5", + "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": "2021-06-07T13:40:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105976109, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5963626, + -34.6450242 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T13:34:44Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105975823, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.246541, + 41.4449598 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807925122", + "osm_id": 8807925122, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807925127", + "osm_id": 8807925127, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209343", + "osm_id": 8744209343, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807925133", + "osm_id": 8807925133, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942789", + "osm_id": 8807942789, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807925128", + "osm_id": 8807925128, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T13:22:07Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.0000149088693599894, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105975143, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2447127, + 41.4432125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811431712", + "osm_id": 8811431712, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431706", + "osm_id": 8811431706, + "reasons": [ + 43 + ], + "version": 7, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960820", + "osm_id": 8807960820, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431703", + "osm_id": 8811431703, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811742010", + "osm_id": 8811742010, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431711", + "osm_id": 8811431711, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431707", + "osm_id": 8811431707, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960834", + "osm_id": 8807960834, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T12:57:40Z", + "reviewed_features": [], + "create": 1, + "modify": 14, + "delete": 0, + "area": 0.00000298222154999232, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105973903, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24159955, + 41.44022445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811431705", + "osm_id": 8811431705, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431704", + "osm_id": 8811431704, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431702", + "osm_id": 8811431702, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T12:50:15Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 4.13643399999516e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105973481, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24075985, + 41.439421 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T11:22:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000844307103998409, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105967734, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8979314, + 51.2443251 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-07T11:05:38Z", + "reviewed_features": [], + "create": 5, + "modify": 29, + "delete": 0, + "area": 0.000358049561760125, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105966634, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2180064, + 51.2115635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Supaplex", + "uid": "274857", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T09:53:54Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.000161193489599945, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105961584, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5348307, + 25.016046 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Supaplex", + "uid": "274857", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T09:41:04Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 3.9392751999824e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105960694, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.53882379999999, + 25.0042755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T09:04:38Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0291171079525006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105958093, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82498285, + 51.1112813 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T08:59:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105957714, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2409078, + 41.4395575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811043327", + "osm_id": 8811043327, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811076019", + "osm_id": 8811076019, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T08:51:53Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 4.6589399998865e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105957149, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24044115, + 41.4390991 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947007276", + "osm_id": 3947007276, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007284", + "osm_id": 3947007284, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "dapiam", + "uid": "13507845", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T08:37:35Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000677257237800493, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105956109, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2214031, + 41.44005755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811018324", + "osm_id": 8811018324, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811017870", + "osm_id": 8811017870, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811031299", + "osm_id": 8811031299, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811033191", + "osm_id": 8811033191, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T08:32:58Z", + "reviewed_features": [], + "create": 11, + "modify": 14, + "delete": 0, + "area": 2.64636120001984e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105955772, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24095945, + 41.4388925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mozita", + "uid": "8934185", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T08:15:04Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105954534, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.9653397, + 52.3725338 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CroKimba", + "uid": "354984", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T07:32:55Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105951675, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.4357159, + 43.508435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CroKimba", + "uid": "354984", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T07:28:19Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 7.99413999974617e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105951340, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.459122049999998, + 43.504516499999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T07:10:56Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105950164, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2002831, + 51.1905568 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-07T05:15:52Z", + "reviewed_features": [], + "create": 1, + "modify": 17, + "delete": 0, + "area": 0.00000790507003998906, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105943292, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5602915, + 13.96404145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T02:13:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00209534957724953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105937496, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.52045785, + -33.57646745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-07T01:09:44Z", + "reviewed_features": [], + "create": 12, + "modify": 39, + "delete": 0, + "area": 0.00000939122600004095, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105936609, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.55977060000001, + 13.963536999999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T19:54:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000381812291999691, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105931217, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25437095, + 50.7427329 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T17:38:07Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105926906, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2955177, + 50.7100694 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T14:36:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105919595, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "Mapbox", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5628028, + 13.9645049 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T11:44:28Z", + "reviewed_features": [], + "create": 11, + "modify": 30, + "delete": 0, + "area": 0.0000036352090900038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105913606, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.55997805, + 13.96351355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T11:39:21Z", + "reviewed_features": [], + "create": 7, + "modify": 15, + "delete": 0, + "area": 5.99149150001178e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105913448, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.55918835, + 13.96252165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T11:35:32Z", + "reviewed_features": [], + "create": 5, + "modify": 13, + "delete": 0, + "area": 5.10130900001811e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105913334, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.55882105, + 13.963075700000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T10:54:40Z", + "reviewed_features": [], + "create": 44, + "modify": 79, + "delete": 0, + "area": 0.0000107127050699845, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105912076, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.56047235, + 13.96380055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoka", + "uid": "818053", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-06T10:43:38Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000783575572000138, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105911702, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.16815515, + 48.57143069999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T10:32:34Z", + "reviewed_features": [], + "create": 10, + "modify": 20, + "delete": 0, + "area": 0.00000469388458003469, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105911320, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.56123410000001, + 13.96411745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoka", + "uid": "818053", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-06T10:31:43Z", + "reviewed_features": [], + "create": 7, + "modify": 6, + "delete": 0, + "area": 0.00311376975552001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105911293, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.14531465, + 48.5831383 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlights", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T09:39:29Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 4.94026800011263e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105909453, + "host": "mapcomplete.osm.be", + "theme": "streetlights", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.56038095, + 13.9630335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T09:20:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105908867, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5613266, + 13.9652043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ambush", + "uid": "9731", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-06T09:10:43Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105908527, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.4411152, + 47.0465848 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T00:49:01Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000194335286099669, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105901100, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.35923034999999, + 47.66017115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-05T22:22:59Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.245886507470602, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105899520, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69861065, + 51.0226315 + ] + } + }, + { + "type": "Feature", + "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": "2021-06-05T17:53:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105892449, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7295088, + 52.8390529 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "elliotsjoqvist", + "uid": "12786426", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-05T15:19:24Z", + "reviewed_features": [], + "create": 0, + "modify": 44, + "delete": 0, + "area": 0.00000208394672000221, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105886639, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.933488700000002, + 58.3496403 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786303536", + "osm_id": 8786303536, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-05T14:08:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105883927, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.230196, + 41.4503282 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208619", + "osm_id": 8744208619, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208617", + "osm_id": 8744208617, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "ccasado", + "uid": "1071888", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-05T11:30:33Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.36125500000906e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105878208, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24914995, + 41.45277285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-05T09:13:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105873635, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.5890863, + 45.515874 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786303537", + "osm_id": 8786303537, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T21:42:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105861949, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2302382, + 41.4503545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786303539", + "osm_id": 8786303539, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T21:26:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105861451, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2302936, + 41.4503862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944732052", + "osm_id": 3944732052, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946995081", + "osm_id": 3946995081, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946995625", + "osm_id": 3946995625, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732331", + "osm_id": 3944732331, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731959", + "osm_id": 3944731959, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732123", + "osm_id": 3944732123, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946995106", + "osm_id": 3946995106, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-6010958536", + "osm_id": 6010958536, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732108", + "osm_id": 3944732108, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732114", + "osm_id": 3944732114, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T19:38:48Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000032519779600142, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105857810, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2198333, + 41.4352922 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946962245", + "osm_id": 3946962245, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964488", + "osm_id": 3946964488, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962942", + "osm_id": 3946962942, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964509", + "osm_id": 3946964509, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964180", + "osm_id": 3946964180, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964197", + "osm_id": 3946964197, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964520", + "osm_id": 3946964520, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964188", + "osm_id": 3946964188, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964217", + "osm_id": 3946964217, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946963461", + "osm_id": 3946963461, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T18:11:12Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000027133940699941, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105854608, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22370635, + 41.438410250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8781004538", + "osm_id": 8781004538, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781004534", + "osm_id": 8781004534, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "ccasado", + "uid": "1071888", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:47:03Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.30649119999822e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105853706, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2486658999999998, + 41.454603649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744209175", + "osm_id": 8744209175, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209180", + "osm_id": 8744209180, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209179", + "osm_id": 8744209179, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208520", + "osm_id": 8744208520, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209171", + "osm_id": 8744209171, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Montse Ventura Cabús", + "uid": "13480180", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:45:25Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 2.68021890001014e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105853623, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24777735, + 41.44702155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8783848051", + "osm_id": 8783848051, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783848050", + "osm_id": 8783848050, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "CarmeP", + "uid": "13279572", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T17:44:12Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.43016000006537e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105853585, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2465580999999997, + 41.4522395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944496053", + "osm_id": 3944496053, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944496438", + "osm_id": 3944496438, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944496924", + "osm_id": 3944496924, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944497288", + "osm_id": 3944497288, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944499441", + "osm_id": 3944499441, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498874", + "osm_id": 3944498874, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944494229", + "osm_id": 3944494229, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:38:49Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00000530507736001426, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105853357, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2176522, + 41.4390691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8804866774", + "osm_id": 8804866774, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780992991", + "osm_id": 8780992991, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780992996", + "osm_id": 8780992996, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780992992", + "osm_id": 8780992992, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781004535", + "osm_id": 8781004535, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781004534", + "osm_id": 8781004534, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780992995", + "osm_id": 8780992995, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781004553", + "osm_id": 8781004553, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781004536", + "osm_id": 8781004536, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "ccasado", + "uid": "1071888", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:32:20Z", + "reviewed_features": [], + "create": 1, + "modify": 24, + "delete": 0, + "area": 9.62408179998287e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105853089, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24879765, + 41.4542158 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944734002", + "osm_id": 3944734002, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:29:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105852959, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2179836, + 41.4372123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944492752", + "osm_id": 3944492752, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944490879", + "osm_id": 3944490879, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944734105", + "osm_id": 3944734105, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:22:23Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.59920999996822e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105852637, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2187725499999997, + 41.4376102 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786303540", + "osm_id": 8786303540, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303547", + "osm_id": 8786303547, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303541", + "osm_id": 8786303541, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:19:03Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.37361599997679e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105852480, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2306509500000002, + 41.4507038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8779678766", + "osm_id": 8779678766, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780993005", + "osm_id": 8780993005, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780993002", + "osm_id": 8780993002, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780992999", + "osm_id": 8780992999, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8804848185", + "osm_id": 8804848185, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678772", + "osm_id": 8779678772, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678767", + "osm_id": 8779678767, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780993008", + "osm_id": 8780993008, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780993006", + "osm_id": 8780993006, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780993007", + "osm_id": 8780993007, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780993001", + "osm_id": 8780993001, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "ccasado", + "uid": "1071888", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:17:50Z", + "reviewed_features": [], + "create": 1, + "modify": 28, + "delete": 0, + "area": 4.8570192000152e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105852380, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2494715000000003, + 41.4536754 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786431228", + "osm_id": 8786431228, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786431219", + "osm_id": 8786431219, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786431311", + "osm_id": 8786431311, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Sandra55", + "uid": "13279584", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T17:12:31Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00000383907000000273, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105852106, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2476216, + 41.4594091 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208295", + "osm_id": 8744208295, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208304", + "osm_id": 8744208304, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208310", + "osm_id": 8744208310, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208315", + "osm_id": 8744208315, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765858085", + "osm_id": 8765858085, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208328", + "osm_id": 8744208328, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208358", + "osm_id": 8744208358, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208330", + "osm_id": 8744208330, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208343", + "osm_id": 8744208343, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208327", + "osm_id": 8744208327, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765860731", + "osm_id": 8765860731, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208347", + "osm_id": 8744208347, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208356", + "osm_id": 8744208356, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208513", + "osm_id": 8744208513, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208514", + "osm_id": 8744208514, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Montse Ventura Cabús", + "uid": "13480180", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:04:25Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.00000736886076000044, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105851717, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2500889500000003, + 41.447811599999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8784031928", + "osm_id": 8784031928, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784031919", + "osm_id": 8784031919, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784031929", + "osm_id": 8784031929, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784030313", + "osm_id": 8784030313, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8804809526", + "osm_id": 8804809526, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784030259", + "osm_id": 8784030259, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784030236", + "osm_id": 8784030236, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T16:56:04Z", + "reviewed_features": [], + "create": 1, + "modify": 14, + "delete": 0, + "area": 6.10051200000688e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105851287, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.232189, + 41.4516205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8779678698", + "osm_id": 8779678698, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Roc BxC", + "uid": "13163796", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T16:46:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850827, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2514325, + 41.4549361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8779678724", + "osm_id": 8779678724, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678725", + "osm_id": 8779678725, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678721", + "osm_id": 8779678721, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678735", + "osm_id": 8779678735, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "ccasado", + "uid": "1071888", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T16:40:10Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 1.85592229996277e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850512, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25078025, + 41.45437605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8784031949", + "osm_id": 8784031949, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784031950", + "osm_id": 8784031950, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784031951", + "osm_id": 8784031951, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784031948", + "osm_id": 8784031948, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T16:38:18Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 2.22443999964978e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850423, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2312985000000003, + 41.4526692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8783848162", + "osm_id": 8783848162, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Soco27", + "uid": "13476703", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T16:36:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850341, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2443126, + 41.4515501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944733307", + "osm_id": 3944733307, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8804773624", + "osm_id": 8804773624, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944495535", + "osm_id": 3944495535, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jordi L", + "uid": "3016696", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T16:30:36Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00000432727334001196, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850116, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21933575, + 41.4377469 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786410418", + "osm_id": 8786410418, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786387414", + "osm_id": 8786387414, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786431248", + "osm_id": 8786431248, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786440892", + "osm_id": 8786440892, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786440891", + "osm_id": 8786440891, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Sandra55", + "uid": "13279584", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T16:29:51Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 5.78154939995549e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850081, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2480501999999998, + 41.46028165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8792543513", + "osm_id": 8792543513, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678711", + "osm_id": 8779678711, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678737", + "osm_id": 8779678737, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678698", + "osm_id": 8779678698, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "ccasado", + "uid": "1071888", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T16:28:50Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 6.73842260000334e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850018, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25123315, + 41.455169 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8784031951", + "osm_id": 8784031951, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T16:26:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105849917, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2312484, + 41.4526581 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8781025441", + "osm_id": 8781025441, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025445", + "osm_id": 8781025445, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025446", + "osm_id": 8781025446, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025443", + "osm_id": 8781025443, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783808168", + "osm_id": 8783808168, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772065", + "osm_id": 8796772065, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772100", + "osm_id": 8796772100, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772094", + "osm_id": 8796772094, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772081", + "osm_id": 8796772081, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772121", + "osm_id": 8796772121, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772139", + "osm_id": 8796772139, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772104", + "osm_id": 8796772104, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772125", + "osm_id": 8796772125, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783808165", + "osm_id": 8783808165, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783808179", + "osm_id": 8783808179, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783808157", + "osm_id": 8783808157, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783878059", + "osm_id": 8783878059, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783829171", + "osm_id": 8783829171, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783878058", + "osm_id": 8783878058, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "CarmeP", + "uid": "13279572", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T16:25:08Z", + "reviewed_features": [], + "create": 0, + "modify": 45, + "delete": 0, + "area": 0.00000971668169999854, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105849844, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24433535, + 41.4523864 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786410418", + "osm_id": 8786410418, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786410420", + "osm_id": 8786410420, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Sandra55", + "uid": "13279584", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T16:22:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.74311000014993e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105849719, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2475410499999997, + 41.46062555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paytv", + "uid": "13422838", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T15:34:58Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000476437036259993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105847791, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7062946, + 52.24507525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4b", + "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": "2021-06-04T13:27:05Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0101944578186296, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105842201, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.54542575, + -34.60790505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-03T20:35:38Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000670354534800022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105799996, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1585389, + 50.8222133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-03T16:00:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105789049, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4480757, + 51.0935406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-03T15:23:47Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105787489, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9932969, + 50.8345362 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T14:13:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105784078, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2143784, + 51.1908391 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T12:46:32Z", + "reviewed_features": [], + "create": 3, + "modify": 18, + "delete": 0, + "area": 0.00000303374031999787, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105779816, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21504745, + 51.191972699999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Siel Createlli", + "uid": "13457794", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T11:43:56Z", + "reviewed_features": [], + "create": 0, + "modify": 57, + "delete": 0, + "area": 0.0108217165363204, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105776011, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45276285, + 51.154340700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Globelotter", + "uid": "6141733", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T10:10:44Z", + "reviewed_features": [], + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.00190928363734017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105770108, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48941035, + 51.150408999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T09:07:18Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000132778386400377, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105766002, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91692415, + 51.228060400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Globelotter", + "uid": "6141733", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T08:47:20Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000529488515399935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105764692, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.444729000000001, + 51.14208035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8781025433", + "osm_id": 8781025433, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025441", + "osm_id": 8781025441, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025445", + "osm_id": 8781025445, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025443", + "osm_id": 8781025443, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025446", + "osm_id": 8781025446, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Soco27", + "uid": "13476703", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T08:35:45Z", + "reviewed_features": [], + "create": 2, + "modify": 11, + "delete": 0, + "area": 6.04364279995272e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105763889, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24546005, + 41.4510151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gaby_", + "uid": "13471983", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T08:10:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105762389, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2450291, + 41.4506645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "miurahr", + "uid": "21118", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T00:40:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105745344, + "host": "pietervdvn.github.io", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 139.7362366, + 35.7696039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Daniel Chiarello", + "uid": "6903200", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-02T22:34:00Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105743538, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.6268828, + -27.0704663 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8781025441", + "osm_id": 8781025441, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Gaby_", + "uid": "13471983", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-02T19:40:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105738229, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2457176, + 41.4511451 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-02T18:34:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105735385, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5610879, + 53.0193794 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Daniel Chiarello", + "uid": "6903200", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-02T17:12:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105732069, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.6249731, + -27.0701085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Daniel Chiarello", + "uid": "6903200", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-02T17:03:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105731710, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.6276368, + -27.0701627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4b", + "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": "2021-06-02T13:41:43Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00000785112700001794, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105723896, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6085099, + -34.6463926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4b", + "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": "2021-06-02T13:40:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105723828, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5972709, + -34.6450947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-02T13:39:48Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0017133079766401, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105723801, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2111755, + 51.2295459 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-02T08:59:55Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105714421, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1533463, + 52.0844293 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-02T07:27:47Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105711334, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5359346, + 51.3830698 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-02T02:27:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105704959, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.4846171, + -33.5905772 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-01T18:46:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000224087775001536, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105694177, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91501175, + 51.227475749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-01T18:31:27Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.73754300001031e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105693580, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.362229, + 44.49929495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4b", + "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": "2021-06-01T13:17:43Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000643416582690142, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105680393, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.62100145, + -34.65041535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-01T11:52:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.05303679993956e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105676236, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9116600999999998, + 51.2221714 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-01T11:10:08Z", + "reviewed_features": [], + "create": 2, + "modify": 14, + "delete": 0, + "area": 0.00101532961786003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105673859, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1942644, + 51.22335055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Nos_Fi", + "uid": "526289", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-01T09:46:15Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.0028947820174098, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105669136, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.60473225, + 48.28955485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SNT-LJM-Cognac", + "uid": "13403395", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #buildings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-01T06:49:08Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000199322045999924, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105658938, + "host": "mapcomplete.osm.be", + "theme": "buildings", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31623695, + 45.699021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SNT-LJM-Cognac", + "uid": "13403395", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #buildings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-01T06:39:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000103599691999119, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105658372, + "host": "mapcomplete.osm.be", + "theme": "buildings", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.3137291, + 45.69814345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SNT-LJM-Cognac", + "uid": "13403395", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #buildings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-01T06:34:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.67152999996021e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105658173, + "host": "mapcomplete.osm.be", + "theme": "buildings", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31351865, + 45.69947915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-31T22:54:59Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108959257, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.7003344, + 26.5404793 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BREC10", + "uid": "13615286", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-31T20:44:13Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.21274000002955e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108956863, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4666412, + 44.415974 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-31T18:38:58Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108953733, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "AGIV", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2439621, + 51.095523 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-31T10:21:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.000644199335340262, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108928737, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17462375, + 52.089487399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-31T08:57:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.55954909999983e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108921995, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.910993250000001, + 51.07083325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-31T06:21:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108917989, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6962306, + 52.1436707 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Vincent Bombaerts", + "uid": "98569", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-31T00:27:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000140702490000867, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108913793, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60044785, + 50.665459999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-07-30T23:34:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.98380000088437e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108913244, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.468474900000004, + -34.53542445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T20:49:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000287492712000414, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108910248, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.473457, + 47.02391135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "norc_kroska", + "uid": "11117699", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-30T18:00:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108904991, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5063587, + 46.0541681 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T17:18:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108903379, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.042544, + 44.0834712 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T16:12:02Z", + "reviewed_features": [], + "create": 7, + "modify": 22, + "delete": 0, + "area": 8.6367609997985e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108900714, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18588895, + 50.801121949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T15:43:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108899480, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.042544, + 44.0834712 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T15:39:47Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108899343, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0426022, + 44.0833241 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-07-30T13:14:36Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00541374476319135, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108893407, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.65521725, + -34.65204885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T11:25:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 9.01801599999458e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108887082, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0426329, + 44.0837248 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-07-30T00:06:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108850883, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4452137, + -34.6198902 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T21:19:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.85139999959974e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108847389, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4166591, + 46.936766500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "crasu", + "uid": "31544", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-29T21:01:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108846702, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6629114, + 54.0071391 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946991490", + "osm_id": 3946991490, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992018", + "osm_id": 3946992018, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991548", + "osm_id": 3946991548, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992622", + "osm_id": 3946992622, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992653", + "osm_id": 3946992653, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992557", + "osm_id": 3946992557, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946993170", + "osm_id": 3946993170, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992650", + "osm_id": 3946992650, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992017", + "osm_id": 3946992017, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991975", + "osm_id": 3946991975, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946993216", + "osm_id": 3946993216, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960981176", + "osm_id": 8960981176, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991459", + "osm_id": 3946991459, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946994208", + "osm_id": 3946994208, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T20:46:24Z", + "reviewed_features": [], + "create": 2, + "modify": 18, + "delete": 0, + "area": 0.00000355878169998301, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108846162, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22556645, + 41.4350166 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946992581", + "osm_id": 3946992581, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991555", + "osm_id": 3946991555, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992646", + "osm_id": 3946992646, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992647", + "osm_id": 3946992647, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992564", + "osm_id": 3946992564, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T20:40:53Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 1.58376599998346e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108845967, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2241797, + 41.43492355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946990803", + "osm_id": 3946990803, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987626", + "osm_id": 3946987626, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987917", + "osm_id": 3946987917, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991998", + "osm_id": 3946991998, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987858", + "osm_id": 3946987858, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987286", + "osm_id": 3946987286, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987880", + "osm_id": 3946987880, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987215", + "osm_id": 3946987215, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991475", + "osm_id": 3946991475, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426165", + "osm_id": 8745426165, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426167", + "osm_id": 8745426167, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987587", + "osm_id": 3946987587, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987448", + "osm_id": 3946987448, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426182", + "osm_id": 8745426182, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380294", + "osm_id": 8745380294, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380293", + "osm_id": 8745380293, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426164", + "osm_id": 8745426164, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426162", + "osm_id": 8745426162, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380276", + "osm_id": 8745380276, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745425852", + "osm_id": 8745425852, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380255", + "osm_id": 8745380255, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426166", + "osm_id": 8745426166, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380258", + "osm_id": 8745380258, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960887643", + "osm_id": 8960887643, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380301", + "osm_id": 8745380301, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960896543", + "osm_id": 8960896543, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380263", + "osm_id": 8745380263, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380303", + "osm_id": 8745380303, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960904828", + "osm_id": 8960904828, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380256", + "osm_id": 8745380256, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960900043", + "osm_id": 8960900043, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960868066", + "osm_id": 8960868066, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960906265", + "osm_id": 8960906265, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960884722", + "osm_id": 8960884722, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960906266", + "osm_id": 8960906266, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960902706", + "osm_id": 8960902706, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960884721", + "osm_id": 8960884721, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380304", + "osm_id": 8745380304, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380302", + "osm_id": 8745380302, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960896542", + "osm_id": 8960896542, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960904829", + "osm_id": 8960904829, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380257", + "osm_id": 8745380257, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987369", + "osm_id": 3946987369, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987211", + "osm_id": 3946987211, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987325", + "osm_id": 3946987325, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960919116", + "osm_id": 8960919116, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960908055", + "osm_id": 8960908055, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960901792", + "osm_id": 8960901792, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987391", + "osm_id": 3946987391, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960904868", + "osm_id": 8960904868, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987248", + "osm_id": 3946987248, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745425831", + "osm_id": 8745425831, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987887", + "osm_id": 3946987887, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946989107", + "osm_id": 3946989107, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960923824", + "osm_id": 8960923824, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946989736", + "osm_id": 3946989736, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946990325", + "osm_id": 3946990325, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946989750", + "osm_id": 3946989750, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991555", + "osm_id": 3946991555, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946990783", + "osm_id": 3946990783, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960923823", + "osm_id": 8960923823, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991553", + "osm_id": 3946991553, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991494", + "osm_id": 3946991494, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T19:30:28Z", + "reviewed_features": [], + "create": 21, + "modify": 78, + "delete": 0, + "area": 0.00000962404233000736, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108843616, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22267645, + 41.43331525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PeterPNoster", + "uid": "13841292", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T18:02:45Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.103796184809791, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108840568, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.15879035, + 47.167780949999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ronx Ronquillo", + "uid": "401767", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T16:48:33Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108837580, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.116178, + 14.5786877 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T15:19:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108834111, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5895507, + 51.0933052 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Claudia De Pus", + "uid": "10236139", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T14:35:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108832023, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7047731, + 51.075759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-07-29T13:14:52Z", + "reviewed_features": [], + "create": 9, + "modify": 5, + "delete": 0, + "area": 0.00576679636259861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108828280, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6760433, + -34.653726649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Inti Valderas Caro", + "uid": "13839810", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-29T13:08:39Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000111718840799523, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108827981, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20041275, + 51.1929068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-29T12:58:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108827539, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5695252, + 53.017952 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T12:45:42Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000216130716899894, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108826890, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4480540499999996, + 51.0979195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Claudia De Pus", + "uid": "10236139", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T12:41:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000012897071600014, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108826680, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7046642, + 51.075796600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Claudia De Pus", + "uid": "10236139", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-29T10:19:33Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000165466148080007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108815732, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7055238, + 51.0729996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T08:56:15Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 4.40366000018867e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108808636, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "AGIV10cm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.262407, + 51.01584835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8578989106", + "name": "Op Wielekes Ledeberg", + "osm_id": 8578989106, + "reasons": [ + 43 + ], + "version": 9, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bicyclelib", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T20:15:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108778702, + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7456124, + 51.036743 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WardBeyens", + "uid": "10343215", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T19:59:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108778207, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0808656, + 51.3281815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T19:44:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108777669, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7403728, + 51.0339897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T19:38:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108777466, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7423387, + 51.0350406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T19:11:51Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000546318445999518, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108776638, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74268875, + 51.034529500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DanielMe", + "uid": "249390", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T16:15:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108769204, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9774026, + 50.6589766 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T15:51:28Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.000087390719000054, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108768073, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2374986, + 52.09015905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T15:23:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000943035012000178, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108766854, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7467693, + 51.03942015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + }, + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.4", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T14:31:38Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108764539, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5533368, + 50.991728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T14:31:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108764519, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5533368, + 50.991728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T14:28:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108764380, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "natuurpunt", + "imagery": "CartoDB.Positron", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2311794, + 51.2202459 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + }, + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.4", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T14:22:50Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108764179, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5498526, + 50.9909412 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T14:22:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108764159, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5498526, + 50.9909412 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T14:08:55Z", + "reviewed_features": [], + "create": 14, + "modify": 0, + "delete": 0, + "area": 0.0000169223839199883, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108763605, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "natuurpunt", + "imagery": "CartoDB.Positron", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2278937, + 51.22052895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T14:02:31Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00013189841721002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108763331, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74700715, + 51.03143235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-07-28T13:13:47Z", + "reviewed_features": [], + "create": 13, + "modify": 2, + "delete": 0, + "area": 0.00642378940574079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108760889, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6539211, + -34.652989649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T13:05:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.5538394999814e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108760468, + "host": "127.0.0.1:1234", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21895025, + 51.21512235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + }, + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karelle Keters", + "uid": "13702831", + "editor": "MapComplete 0.8.4", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T13:03:18Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108760335, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4391632, + 50.8767193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karelle Keters", + "uid": "13702831", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T13:03:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108760312, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4391632, + 50.8767193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tjum", + "uid": "79281", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T11:59:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108756674, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1100631, + 48.5490101 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T11:23:04Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000100136953599954, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108753434, + "host": "", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2196855, + 51.21544095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tjum", + "uid": "79281", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T11:19:21Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0172101889580405, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108753077, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0333881, + 48.52091525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karelle Keters", + "uid": "13702831", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T11:17:35Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00000240686907999761, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108752910, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "natuurpunt", + "imagery": "CartoDB.Positron", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64105585, + 50.9963688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T09:30:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108742931, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6428985, + 44.8982967 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T08:54:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108739795, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.633988, + 44.8940661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karelle Keters", + "uid": "13702831", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T08:15:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108736493, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2537717, + 51.2182316 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Willhelm_Mueller", + "uid": "308224", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T06:06:43Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 3.12078189233559, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108725681, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.96258015, + 51.9584416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T21:07:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108709342, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2216745, + 51.3042444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T20:55:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000335142853999643, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108708871, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2208458, + 51.305255450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T20:54:09Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000333680870000324, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108708826, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2191934, + 51.30727925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T20:49:39Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000334606080000285, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108708640, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21754245, + 51.3093032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T19:30:50Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108706282, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1194974, + 49.6696867 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T18:07:43Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 5.34209299997959e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108703673, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7456029500000003, + 51.0370814 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T18:00:55Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000165866688000461, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108703402, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7439911, + 51.037078199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T17:46:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108702879, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7454008, + 51.0368833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T17:39:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108702612, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7454953, + 51.0373494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T17:15:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.94692799996937e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108701765, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44542635, + 51.1396407 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-07-27T13:19:29Z", + "reviewed_features": [], + "create": 5, + "modify": 1, + "delete": 0, + "area": 0.00506554391943092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108691847, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.628302649999995, + -34.651587649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-27T12:51:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.19165170007364e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108690606, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97222045, + 51.12304215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Willhelm_Mueller", + "uid": "308224", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T10:29:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108680475, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.5425827, + 52.2556346 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Willhelm_Mueller", + "uid": "308224", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T10:26:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108680212, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.530704, + 52.2579515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "C-SIm", + "uid": "5032262", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T10:02:53Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108678356, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5205818, + 42.5275233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dasFF", + "uid": "6695709", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T09:38:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 8.34600000006654e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108676310, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3581119, + 48.6451984 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T08:17:47Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108670320, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1197442, + 52.0889652 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T03:48:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108652577, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.6167449, + -38.7327441 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-26T23:46:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.27540700003382e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108649257, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53041715, + 51.22723685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T23:24:50Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108648942, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.6160533, + 39.3244445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikelmaron", + "uid": "999", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-26T19:26:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108642981, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "Mapbox", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.9843903, + 38.9417097 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikelmaron", + "uid": "999", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-26T19:24:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108642896, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.9929744, + 38.9352868 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T14:37:07Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 6.53659999968115e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108631066, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98198105, + 50.957867300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-26T14:30:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.376389999707e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108630792, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.66789665, + -34.66014615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T14:10:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108629843, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9202898, + 45.5651718 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-07-26T13:20:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108627710, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "Mapbox", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.717643, + -34.6661333 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T13:09:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108627214, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9226714, + 45.5651055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T13:06:29Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108627066, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9228191, + 45.5646536 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T09:21:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108609516, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1992957, + 51.2504341 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-25T21:00:39Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.0228814089827609, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108580733, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6724676, + -33.54374985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-25T20:00:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108579166, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.7104652, + -36.8697646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-25T19:09:26Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.31313600006904e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108577675, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7731406, + -33.488473850000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-25T12:04:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108562739, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5352854, + 46.2692277 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-25T12:03:46Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.22799998504021e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108562725, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5351344000000005, + 46.2692284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-25T10:00:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.19165170007364e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108558900, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97222045, + 51.12304215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-25T08:49:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000108979809000292, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108556779, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62736645, + 50.86434745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexander_mart", + "uid": "458554", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-25T01:34:03Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0010830285095402, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108550458, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.96379145, + 56.4727002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-24T16:23:01Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00171027374740006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108538629, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2355926999999998, + 41.543791299999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-24T16:12:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.01425399996098e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108538300, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95734685, + 48.0559873 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-24T13:25:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108532499, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.504129, + 49.5927947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-24T13:24:00Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108532464, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5040458, + 49.5927651 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-24T13:10:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108532058, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5034987, + 49.5928573 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-24T13:05:46Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108531914, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5034987, + 49.5928573 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-24T07:53:45Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.27179999967618e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108522608, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6309916, + 51.957496 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-07-24T00:34:32Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.000421774771140168, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108516737, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.77106055, + -34.655521300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JackNUMBER", + "uid": "4846986", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T18:31:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108508414, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.069506, + 48.8824157 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T17:23:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108505875, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8838655, + 50.7742916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T17:23:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108505869, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8838655, + 50.7742916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T17:22:23Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108505836, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8838655, + 50.7742916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T17:20:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108505791, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8836831, + 50.7740032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T17:20:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108505781, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8836831, + 50.7740032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T17:20:08Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108505761, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8836831, + 50.7740032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T14:54:46Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000431810450999976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108499953, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2833604999999997, + 41.596085450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T14:49:32Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000286198648199722, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108499761, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21537925, + 41.544907699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T14:47:41Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108499693, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0629672, + 49.567449 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T14:04:55Z", + "reviewed_features": [], + "create": 7, + "modify": 10, + "delete": 0, + "area": 0.0923656979816407, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108498025, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84967595, + 50.9675912 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4-rc3", + "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": "2021-07-23T13:58:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108497725, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5296926, + -34.6390782 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-23T13:04:27Z", + "reviewed_features": [], + "create": 10, + "modify": 18, + "delete": 0, + "area": 0.00626756999880104, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108495359, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6633149, + -34.65173885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hazelnut2", + "uid": "433041", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T12:25:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108493319, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.5872921, + 43.1389492 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "White_Rabbit", + "uid": "604999", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T10:04:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.29168800002199e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108483772, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.3283045, + 45.516046700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T05:39:14Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000629172780000359, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108463738, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5663713, + 45.47880995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thomas132", + "uid": "9643191", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T02:41:08Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108456169, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -93.5570759, + 41.6753625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-22T23:56:36Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.00498066478784022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108454283, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6548431, + -34.648801199999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-22T15:15:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.81514999998824e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108436582, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3072549, + 51.23067575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-22T14:43:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000834172533999958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108435131, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3063540499999995, + 51.2423047 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PicoPlex", + "uid": "13702329", + "editor": "MapComplete 0.8.4/bike-infra", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-22T14:10:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000647996531997118, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108433663, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Positron", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24493, + 51.213230949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-22T13:03:50Z", + "reviewed_features": [], + "create": 7, + "modify": 11, + "delete": 0, + "area": 0.00644143685014108, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108430716, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.66412755, + -34.6525143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-22T12:20:24Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.533161182943247, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108428293, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82105535, + 41.34369865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.4/bike-infra", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-22T09:38:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108416991, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2099896, + 51.2189471 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-22T09:23:49Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 1.37082000002157e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108415854, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.365448, + 51.00100155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fizzie41", + "uid": "461130", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-22T05:13:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000412833206198478, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108397905, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 152.78021595, + -28.197958800000002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-22T00:12:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108390804, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7910967, + -34.6501798 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-22T00:12:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108390802, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5935962, + -34.6448995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-22T00:11:13Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108390788, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5935962, + -34.6448995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-21T22:24:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108389294, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7880751, + -34.6505571 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-21T21:51:13Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108388301, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3089677, + 51.2343257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-21T21:49:19Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 8.44838899993966e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108388258, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.78787265, + -34.65047105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-21T18:34:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108381433, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2436999, + 50.5964984 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kschimney", + "uid": "676950", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-21T18:09:29Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108380604, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0528616, + 52.2680928 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-21T13:44:38Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.32047999982601e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108369264, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.3701939, + -34.634742700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-21T13:21:20Z", + "reviewed_features": [], + "create": 13, + "modify": 21, + "delete": 0, + "area": 0.00416521351223975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108368191, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6060913, + -34.651439800000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-21T13:14:25Z", + "reviewed_features": [], + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.000366451561170048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108367822, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.75169235, + -34.65975415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dbrgn", + "uid": "317694", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-21T10:35:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108359961, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8227697, + 47.2275413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-21T07:16:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108351111, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.5874281, + -36.0949011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-21T03:45:48Z", + "reviewed_features": [], + "create": 6, + "modify": 4, + "delete": 0, + "area": 2.53535999994821e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108345017, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7880269, + -34.650549299999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-21T03:45:31Z", + "reviewed_features": [], + "create": 5, + "modify": 12, + "delete": 0, + "area": 9.67058999999111e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108345010, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.368774, + -34.63359135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-21T00:10:02Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.00386566315499994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108342671, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.69185155, + -34.654613 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-21T00:07:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108342662, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5657603, + -34.6407465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-20T20:11:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.52783399994883e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108337961, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0203997000000005, + 51.18336675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-20T20:09:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108337894, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0205408, + 51.1834753 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-20T19:54:08Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000278604949199947, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108337404, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00173385, + 51.1658759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michael Monschau", + "uid": "6801918", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-20T19:34:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108336700, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.591224, + 50.3595479 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michael Monschau", + "uid": "6801918", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-20T19:24:21Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000616985960260121, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108336297, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57653435, + 50.353613100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-20T13:11:37Z", + "reviewed_features": [], + "create": 18, + "modify": 22, + "delete": 0, + "area": 0.00681199149450069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108321249, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.653345099999996, + -34.652850650000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.4/bike-infra", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-20T08:08:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000194057600400171, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108298931, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2261438, + 51.2207042 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JanCrea", + "uid": "3358532", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #speelplekken_temp", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-20T06:50:04Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.00724530187625957, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108293269, + "host": "mapcomplete.osm.be", + "theme": "speelplekken_temp", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.479119799999999, + 51.14972285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-20T00:45:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108279039, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7887698, + -34.650802 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T18:04:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108269386, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7248091, + 51.0463223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "CarmeP", + "uid": "13279572", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T16:08:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108264053, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2444888, + 41.4527621 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dasFF", + "uid": "6695709", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T15:21:37Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.000327171077760041, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108261778, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.37269375, + 48.6594726 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dasFF", + "uid": "6695709", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T15:12:27Z", + "reviewed_features": [], + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.00298218531455991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108261301, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.403545099999999, + 48.6474566 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dasFF", + "uid": "6695709", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T14:56:22Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.000354792748679977, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108260504, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36969635, + 48.643115699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-19T13:47:48Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.00000435307425003243, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108257302, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.55607215, + -34.63999235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-19T13:47:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108257280, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5773514, + -34.6425593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-19T13:31:27Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108256380, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.592998, + 14.0253039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-19T13:20:05Z", + "reviewed_features": [], + "create": 5, + "modify": 8, + "delete": 0, + "area": 0.0040078130853001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108255793, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6643133, + -34.65404685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-19T12:28:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108252933, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4033236, + 51.1453697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4/bike-infra", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T10:27:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.5060869999901e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108242726, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57336795, + 53.02736564999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Nos_Fi", + "uid": "526289", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T10:13:02Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108241385, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.9470255, + 56.9688806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-19T09:08:45Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108235828, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6281972, + 52.9422425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-19T08:53:58Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108234620, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6276608, + 52.9441933 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fx99", + "uid": "130472", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T08:30:30Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00177002120105995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108232811, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.887518499999999, + 48.61831045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-19T04:34:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108216139, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5302183, + -34.6390572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "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": "2021-07-19T00:01:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108210956, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6555399, + -34.4580123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CJam25", + "uid": "11605632", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-18T16:28:39Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108199285, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1830368, + 47.2578633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dónal", + "uid": "574926", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/OpenLighthouseMap/OpenLighthouseMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-18T16:07:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.49524999992415e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108198429, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/openlighthousemap/openlighthousemap.json", + "imagery": "Stamen.TonerLite", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.25466665, + 51.79303815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-18T15:54:17Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.93087999936631e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108197990, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.3764379, + 48.065903399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T11:16:58Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108188557, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.837549, + 52.4468179 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T11:15:04Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108188508, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8361274, + 52.4474947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CJam25", + "uid": "11605632", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T10:30:25Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108187047, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1754642, + 47.26041 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CJam25", + "uid": "11605632", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T10:27:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108186945, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1830368, + 47.2578633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T09:30:58Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108185095, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1290193, + 52.0854267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclenodes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T09:11:09Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108184506, + "host": "mapcomplete.mobanisto.de", + "theme": "cyclenodes", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6194635, + 51.7501632 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T08:54:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108184012, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1265906, + 52.0909803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclenodes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T06:30:15Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000165062692620008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108180260, + "host": "mapcomplete.mobanisto.de", + "theme": "cyclenodes", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.600713200000001, + 51.78430925000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-17T22:32:56Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000240531911999337, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108175423, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.67418269999999, + 26.538453 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-17T14:12:29Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.0021942965223598, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108161942, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2342372, + 41.556681850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-17T13:23:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108160119, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2080541, + 41.8045116 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Felix Edelmann", + "uid": "2274641", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-17T11:30:58Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108156178, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8218416, + 48.1952926 + ] + } + }, + { + "type": "Feature", + "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": "2021-07-17T10:00:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108153380, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7766221, + 52.851453 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-17T09:06:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108151544, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1325849, + 52.0110929 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-17T08:46:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.31881599999959e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108150893, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2092133, + 41.5408444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-17T07:26:44Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.74369000001215e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108148756, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.194163400000001, + 51.998345150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Sorbus2", + "uid": "3754896", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-16T20:00:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108136748, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3684587, + 53.1441682 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrii'Chillik'Korda", + "uid": "883107", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-16T13:59:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.27077089999419e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108122622, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "ru" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 33.16033375, + 47.68635585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-16T13:17:16Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 1.13322000006175e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108120813, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02238265, + 52.0249272 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "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": "2021-07-16T13:10:22Z", + "reviewed_features": [], + "create": 13, + "modify": 16, + "delete": 0, + "area": 0.00662243232689882, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108120510, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6617686, + -34.65209835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-16T11:38:30Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000444957839220038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108114751, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39535925, + 52.114477300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-16T10:33:46Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 9.61959400002455e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108109786, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5495777, + 51.20743125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-16T10:30:15Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108109522, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5495039, + 51.2072901 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-16T09:53:15Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000350171759079984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108106716, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8789959, + 50.9949351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-16T09:52:41Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108106660, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8647842, + 50.9992925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-16T08:22:45Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00336837587274002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108100227, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5710134, + 47.47768965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-16T03:46:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108081595, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.38201140000001, + 47.8124236 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "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": "2021-07-16T00:31:40Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000737534453200086, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108078217, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.757661600000006, + -34.6578412 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T23:47:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108077506, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.3923603, + 48.0658702 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Futur3r", + "uid": "12121621", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T22:04:00Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108075710, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1111803, + 45.9067356 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T21:11:56Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000248870646850011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108074316, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.36960075, + 48.062547550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T21:03:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108074108, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.3758779, + 48.06631 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T20:59:20Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000373635485600302, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108073998, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.3579502, + 48.057223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T20:49:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000243789834998433, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108073645, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.35260665, + 48.05984875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T20:49:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000243789834998433, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108073623, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.35260665, + 48.05984875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T20:45:35Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000243789834998433, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108073474, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.35260665, + 48.05984875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T19:41:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108070696, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.213278, + 41.5388879 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T19:14:20Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 5.7940064000126e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069647, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2116168, + 41.536439 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8917864614", + "osm_id": 8917864614, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864919", + "osm_id": 8917864919, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864930", + "osm_id": 8917864930, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864936", + "osm_id": 8917864936, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864932", + "osm_id": 8917864932, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864925", + "osm_id": 8917864925, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864929", + "osm_id": 8917864929, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864954", + "osm_id": 8917864954, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864931", + "osm_id": 8917864931, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864955", + "osm_id": 8917864955, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864963", + "osm_id": 8917864963, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864964", + "osm_id": 8917864964, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864981", + "osm_id": 8917864981, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864980", + "osm_id": 8917864980, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864967", + "osm_id": 8917864967, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8923221736", + "osm_id": 8923221736, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854039", + "osm_id": 8917854039, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854020", + "osm_id": 8917854020, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864953", + "osm_id": 8917864953, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864965", + "osm_id": 8917864965, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841299", + "osm_id": 8917841299, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841302", + "osm_id": 8917841302, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841303", + "osm_id": 8917841303, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854055", + "osm_id": 8917854055, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864952", + "osm_id": 8917864952, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841306", + "osm_id": 8917841306, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841307", + "osm_id": 8917841307, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841301", + "osm_id": 8917841301, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841312", + "osm_id": 8917841312, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8923270763", + "osm_id": 8923270763, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854090", + "osm_id": 8917854090, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854081", + "osm_id": 8917854081, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854042", + "osm_id": 8917854042, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841305", + "osm_id": 8917841305, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841308", + "osm_id": 8917841308, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841300", + "osm_id": 8917841300, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854084", + "osm_id": 8917854084, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854074", + "osm_id": 8917854074, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841218", + "osm_id": 8917841218, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841239", + "osm_id": 8917841239, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841309", + "osm_id": 8917841309, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854072", + "osm_id": 8917854072, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854066", + "osm_id": 8917854066, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841298", + "osm_id": 8917841298, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841311", + "osm_id": 8917841311, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841313", + "osm_id": 8917841313, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841324", + "osm_id": 8917841324, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841323", + "osm_id": 8917841323, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841326", + "osm_id": 8917841326, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818480493", + "osm_id": 8818480493, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841325", + "osm_id": 8917841325, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841322", + "osm_id": 8917841322, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841349", + "osm_id": 8917841349, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854061", + "osm_id": 8917854061, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-15T19:11:10Z", + "reviewed_features": [], + "create": 2, + "modify": 64, + "delete": 0, + "area": 0.000049937219099996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069548, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2264390499999998, + 41.4573673 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T19:09:49Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000147240520000099, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069513, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2108323, + 41.5372516 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T19:08:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069477, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21127, + 41.5385792 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8880071791", + "osm_id": 8880071791, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071786", + "osm_id": 8880071786, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-15T19:07:55Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.09792660000817e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069450, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22470155, + 41.4593975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8875901324", + "osm_id": 8875901324, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-15T19:06:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069436, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2240657, + 41.4588307 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T19:00:17Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000172837993199884, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069344, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20948345, + 41.5409978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T19:00:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069342, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.207518, + 41.5435661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8875753785", + "osm_id": 8875753785, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901326", + "osm_id": 8875901326, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901322", + "osm_id": 8875901322, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-15T19:00:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000158375502000502, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069328, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22323085, + 41.458096999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8923250880", + "osm_id": 8923250880, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-15T18:54:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069302, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2217541, + 41.4567621 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "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": "2021-07-15T13:15:45Z", + "reviewed_features": [], + "create": 5, + "modify": 7, + "delete": 0, + "area": 0.00446692557604952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108055158, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.64597775, + -34.64964075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T10:55:44Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.504380501584115, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108044245, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44067755, + 50.764060549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "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": "2021-07-15T00:11:18Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000510195288960339, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108005513, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7321082, + -34.6616791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T22:10:38Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 5.79150000388124e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108003508, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.52819325, + -34.63900975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T17:32:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107994642, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9940647, + 48.5014852 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T13:13:02Z", + "reviewed_features": [], + "create": 18, + "modify": 20, + "delete": 0, + "area": 0.00586639018095078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107982711, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.64884975, + -34.653103349999995 + ] + } + }, + { + "type": "Feature", + "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": "2021-07-14T13:05:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107982302, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7682121, + 52.8421823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-14T12:24:24Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107980055, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5417852, + 47.450397 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-14T11:35:39Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107976415, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0629178, + 14.6475876 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "maze2p0", + "uid": "2817015", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-14T09:25:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000221323050399895, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107965514, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.66548525, + 49.4155586 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-14T07:09:19Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000030559985800025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107955142, + "host": "pietervdvn.github.io", + "path": "mc/master/", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56148415, + 53.0172139 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T06:16:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.3576600001346e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107951099, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4490648999999998, + 51.09201645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T00:10:46Z", + "reviewed_features": [], + "create": 6, + "modify": 6, + "delete": 0, + "area": 0.00395359726761067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937707, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.689340349999995, + -34.65437685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T00:10:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937706, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5674018, + -34.6408447 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T00:08:19Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.69359999884552e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937683, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5673964, + -34.640861799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T00:08:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937680, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5497877, + -34.6397402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T00:07:40Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937669, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5497877, + -34.6397104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "trolleway", + "uid": "397326", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-14T00:05:35Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000555300270799818, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937641, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 38.23359185, + 55.5566521 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "trolleway", + "uid": "397326", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-14T00:00:38Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937565, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 37.7109274, + 55.8018651 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T23:30:47Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937146, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "Mapbox", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0769222, + 50.7779514 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T21:34:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107934811, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0595318, + 50.7697147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "profemo", + "uid": "12232061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T21:04:35Z", + "reviewed_features": [], + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.00080840842928992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107934101, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.180553450000001, + 52.23052595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T19:27:13Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107930960, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artworks", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0556925, + 50.7733671 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-13T19:26:36Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000264744511900043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107930934, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.37481995, + 44.49866815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-13T13:35:05Z", + "reviewed_features": [], + "create": 3, + "modify": 10, + "delete": 0, + "area": 0.00154856945053954, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107913936, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5854356, + -34.64572665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-13T12:09:46Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 4.96727550003341e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107908727, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.789410849999996, + -34.65037395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.8.4-rc2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T11:17:56Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107904564, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7078171, + 51.0520396 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-13T08:32:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.14493909999203e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107891229, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24247395, + 50.73778735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yeti in a Box", + "uid": "9411521", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T07:13:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107884831, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1102142, + 57.1578867 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4-rc2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T05:04:31Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.26357600018784e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107874799, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66658749999999, + -33.440852250000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T02:25:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.66640199998775e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107868386, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0610946, + 50.77482845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T01:45:07Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107867779, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0012555, + 50.7356145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T23:55:24Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.00291577481028032, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107866381, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6590944, + -34.6446411 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T22:17:50Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107864456, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0599096, + 50.7745699 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Frederik Bové", + "uid": "9895600", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T21:00:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000146039010999907, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107862428, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46821575, + 51.14545065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T18:58:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107858287, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0579905, + 50.7696993 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T18:58:29Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107858279, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0567831, + 50.7710809 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T18:58:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107858278, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0567831, + 50.7710809 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclenodes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T18:33:20Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.000259093989000139, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107857284, + "host": "mapcomplete.mobanisto.de", + "theme": "cyclenodes", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6491539, + 51.722251650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T17:01:57Z", + "reviewed_features": [], + "create": 23, + "modify": 51, + "delete": 0, + "area": 0.193035429340983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107853376, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.206401, + 49.70821565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclenodes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T16:51:35Z", + "reviewed_features": [], + "create": 8, + "modify": 11, + "delete": 0, + "area": 0.0000993684082299833, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852873, + "host": "mapcomplete.mobanisto.de", + "theme": "cyclenodes", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.64501375, + 51.741143949999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:50:27Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0154956753896392, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852821, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94825415, + 49.9165269 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:37:12Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852154, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2426351, + 50.7384463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:36:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852136, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3343592, + 51.0111175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:36:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852122, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3343592, + 51.0111175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:36:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852108, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3343592, + 51.0111175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:35:55Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852081, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3343592, + 51.0111175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:35:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852061, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3401609, + 51.0127806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:35:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852036, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3401609, + 51.0127806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:35:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852022, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3401609, + 51.0127806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:34:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852005, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3401609, + 51.0127806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:34:22Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107851987, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3401609, + 51.0127806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:33:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107851972, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3401977, + 51.0127793 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:31:23Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.00060868161360047, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107851858, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4107613, + 51.0149358 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:31:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107851853, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4806194, + 51.0166452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:31:02Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107851839, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4806194, + 51.0166452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:31:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107851838, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4806194, + 51.0166452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T13:09:34Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107841738, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7910578, + -34.650065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + }, + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PicoPlex", + "uid": "13702329", + "editor": "MapComplete 0.8.3e", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T12:37:58Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107840048, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4891864, + 51.2049038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PicoPlex", + "uid": "13702329", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T12:36:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107840002, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4891864, + 51.2049038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T09:23:25Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000418879043979992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107826441, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8842757500000005, + 51.1196966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T08:02:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107820621, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9019891, + 51.12581 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-11T21:56:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107799153, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2183929, + 51.2185418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947006592", + "osm_id": 3947006592, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-11T21:36:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107798754, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2248947, + 41.4422966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lukas233", + "uid": "13740435", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T19:32:27Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107795579, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.8882263, + 50.1890977 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946966195", + "osm_id": 3946966195, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965753", + "osm_id": 3946965753, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965611", + "osm_id": 3946965611, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965683", + "osm_id": 3946965683, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-11T19:14:12Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 3.05926000002194e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107795005, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2250746, + 41.4408405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "un1matr1x", + "uid": "9133122", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T15:55:28Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000275372006980042, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107788249, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.24175065, + 53.5500643 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-11T15:21:59Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107786968, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2737703, + 45.4693406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:53:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783653, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3262046, + 50.9300686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:52:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783637, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3262046, + 50.9300686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:52:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783626, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3262046, + 50.9300686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:51:37Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783580, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3262046, + 50.9300686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:51:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783563, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3266203, + 50.930143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:51:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783553, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3266203, + 50.930143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:50:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783539, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3266203, + 50.930143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:50:42Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783530, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3266203, + 50.930143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:50:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783515, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3270119, + 50.9300872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:50:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783506, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3270119, + 50.9300872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:49:40Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783483, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3270119, + 50.9300872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:49:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783476, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3266767, + 50.930006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:47:25Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783380, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3266767, + 50.930006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:47:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783374, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3779639, + 51.0125987 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:46:43Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783359, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3779639, + 51.0125987 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:44:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783283, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3779565, + 51.0125692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:44:30Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783269, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3779565, + 51.0125692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:39:09Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783046, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.377978, + 51.0126105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:39:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783036, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367378, + 51.0385184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:38:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783030, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367378, + 51.0385184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:38:30Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783007, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367378, + 51.0385184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:38:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782992, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367713, + 51.0385019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:38:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782985, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367713, + 51.0385019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:37:44Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782974, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367713, + 51.0385019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:37:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782964, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367264, + 51.0385066 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:37:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782949, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367264, + 51.0385066 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:36:30Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782926, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367264, + 51.0385066 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:35:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782878, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367693, + 51.0385285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:35:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782877, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367693, + 51.0385285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclenodes", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-11T12:43:12Z", + "reviewed_features": [], + "create": 10, + "modify": 14, + "delete": 0, + "area": 0.00121822959496963, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107780917, + "host": "mapcomplete.mobanisto.de", + "theme": "cyclenodes", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.59387065, + 51.73184345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-11T12:01:39Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107779257, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1025686, + 52.0690786 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T11:55:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000548198538899992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107779011, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 29.499676450000003, + 64.12339180000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T11:44:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000030124864769923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107778610, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 29.512679650000003, + 64.12769225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T11:28:38Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000636185054880831, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107778187, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 29.5491793, + 64.1120751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "crasu", + "uid": "31544", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T05:31:03Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107768284, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7677469, + 50.9369172 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "crasu", + "uid": "31544", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T05:27:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107768238, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7415319, + 50.9594129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "crasu", + "uid": "31544", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T05:26:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.00950000032508e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107768233, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79669275, + 50.9164394 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "crasu", + "uid": "31544", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T05:26:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.00950000032508e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107768230, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79669275, + 50.9164394 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "crasu", + "uid": "31544", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T05:26:01Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.08425600017173e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107768226, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7966038, + 50.9164247 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8910287412", + "osm_id": 8910287412, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744186773", + "osm_id": 8744186773, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208755", + "osm_id": 8744208755, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783808154", + "osm_id": 8783808154, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208749", + "osm_id": 8744208749, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208706", + "osm_id": 8744208706, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208668", + "osm_id": 8744208668, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783808149", + "osm_id": 8783808149, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208657", + "osm_id": 8744208657, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208597", + "osm_id": 8744208597, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744207973", + "osm_id": 8744207973, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8910361094", + "osm_id": 8910361094, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791423088", + "osm_id": 8791423088, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791597164", + "osm_id": 8791597164, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791597177", + "osm_id": 8791597177, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T19:18:09Z", + "reviewed_features": [], + "create": 20, + "modify": 32, + "delete": 0, + "area": 0.0000327528558000425, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107759779, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2494066999999998, + 41.452191150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T18:41:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107758733, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.1164367, + 49.4359709 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dónal", + "uid": "574926", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T17:57:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.10469380003353e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107757533, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.532622499999999, + 51.98053625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T15:36:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107752830, + "host": "127.0.0.1:1234", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2074467, + 51.2144965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.3d", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T13:58:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107749131, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osmfr", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.240745, + 50.7341532 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3d", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T13:17:30Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107747529, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198444, + 51.2156981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T12:59:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000972524643210039, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107746904, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.991137050000001, + 51.11845515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T12:55:30Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107746775, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9708566, + 51.1064667 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T12:14:46Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000546523816080018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107745354, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4311547000000004, + 51.1658704 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3d", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T11:56:13Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.191311591815806, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107744755, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08878435, + 51.1606889 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3d", + "comment": "Adding data with #MapComplete for theme #https://matrix-client.matrix.org/_matrix/media/r0/download/matrix.org/vZjzqHFPkWoLoCNmFloJqZJr", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T11:36:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107744218, + "host": "mapcomplete.osm.be", + "theme": "https://matrix-client.matrix.org/_matrix/media/r0/download/matrix.org/vzjzqhfpkwolocnmflojqzjr", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6348378, + 51.7458095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.8.3d", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T11:35:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107744185, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9708566, + 51.1064667 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T10:14:13Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107741782, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40456, + 51.0092742 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T10:13:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107741754, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36441, + 51.0112133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T10:12:12Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107741717, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3657538, + 51.011274 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T09:31:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107740381, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1237487, + 52.0895507 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "okwithmydecay", + "uid": "10370720", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T09:01:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.59331299978649e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107739260, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05569865, + 51.54434015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T08:48:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.54591879999711e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107738922, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.57885235, + 50.873474900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T08:47:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.11047360001438e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107738907, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5792066, + 50.8739059 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T08:46:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.27919999995274e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107738867, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.57881725, + 50.8739517 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lejun", + "uid": "8085973", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T06:17:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107735170, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0309161, + 47.2420926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T00:46:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107730202, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0537792, + 14.6195668 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "racky", + "uid": "1730834", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T00:24:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107730044, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.0155506, + 5.4114159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T23:21:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.69400000250217e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107729338, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0791002, + 14.60638045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T23:17:58Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107729292, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0605946, + 14.645733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T21:29:19Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0509880514190603, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107727020, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.81667355, + 50.822522 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8891145740", + "name": "der LiLA Laden", + "osm_id": 8891145740, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "shop": "books;stationery;toys" + } + } + ], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T19:50:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.89134000031268e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107723869, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.999719299999999, + 48.50172935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T19:48:58Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.80154399972832e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107723834, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99704815, + 48.5017436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3d", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T17:55:25Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719694, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2197613, + 51.2156729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3d", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T17:55:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719691, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2197613, + 51.2156729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3d", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T17:55:04Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719684, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198634, + 51.2156948 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T17:48:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719413, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198634, + 51.2156948 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "joeldn", + "uid": "8552670", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T17:46:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719337, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.069903, + 51.481657 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-8891117931", + "name": "Agueda/ camino Zaratán", + "osm_id": 8891117931, + "reasons": [ + 42 + ], + "version": 5, + "primary_tags": {} + } + ], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T17:43:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719251, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7728561, + 41.6312769 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T17:43:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719236, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7766709, + 41.6295739 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fx99", + "uid": "130472", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T17:38:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000610037826500325, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719052, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.90049385, + 48.64037055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fx99", + "uid": "130472", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T17:35:57Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000108179178749976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107718957, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.89848995, + 48.65066695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PrinzZimt", + "uid": "2927406", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T17:11:37Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.55515180001948e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107717888, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.8463855, + 53.47689795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ofr1tz", + "uid": "3790985", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T16:56:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107717289, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4507341, + 52.5077952 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "XuRxO", + "uid": "13409", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T16:52:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107717095, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.4588175, + 39.4645176 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stalfur", + "uid": "149223", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T16:47:09Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000023311735259843, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107716873, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -21.879822949999998, + 64.1013077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cquest", + "uid": "158826", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T16:33:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107716217, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4855334, + 48.8051415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chippy", + "uid": "3114", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T16:10:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107715285, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.277398, + 54.0719806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T13:36:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107707582, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0417856, + 48.52397 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T13:07:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107706110, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9958313, + 48.5015779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sikmir", + "uid": "373425", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T11:54:06Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000017566863599977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107701543, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 30.3302832, + 59.9978502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jez Nicholson", + "uid": "7329", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T11:26:48Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000216959120500094, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107699458, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08019385, + 50.867304950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jez Nicholson", + "uid": "7329", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T11:22:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000001673711999996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107699135, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09289030000000001, + 50.8633373 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jez Nicholson", + "uid": "7329", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T11:12:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0011869166560001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107698362, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.108866, + 50.85069795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "UJehle", + "uid": "8563072", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T10:13:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000109178006399768, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107693811, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.565169000000001, + 48.1485605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T10:09:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.41220000032756e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107693578, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21545525, + 51.2155731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T09:29:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.28355900000553e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107690820, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92814155, + 51.222086899999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T06:18:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107678120, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.371635, + 47.6815637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T00:16:49Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.00142870013307005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107665134, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImagery", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.714550450000004, + -34.65670725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T00:05:00Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.13929919994501e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107665005, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.528916100000004, + -34.639056100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T20:43:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107659989, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2217294, + 51.212738 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T20:36:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107659818, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2120516, + 51.191464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CulingMan13", + "uid": "6641970", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T19:37:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107657581, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.2995597, + 40.0142938 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CulingMan13", + "uid": "6641970", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T19:36:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000151346060999249, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107657541, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.20531445, + 39.96593065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T18:49:20Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107655620, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9196087, + 51.2342711 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3c", + "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": "2021-07-08T17:21:37Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.87775000012922e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107651887, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.446025950000006, + -34.62018615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3c", + "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": "2021-07-08T17:21:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107651881, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4450562, + -34.6196799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3c", + "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": "2021-07-08T17:19:35Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.19354000029516e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107651797, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4450281, + -34.61978835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3c", + "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": "2021-07-08T17:19:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107651789, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4183453, + -34.6090322 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T17:18:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107651778, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7964383, + 41.6151806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3c", + "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": "2021-07-08T17:17:41Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000303493649997796, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107651703, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.41518215, + -34.6089661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946994212", + "osm_id": 3946994212, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T16:17:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107648773, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2210216, + 41.4353475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946994194", + "osm_id": 3946994194, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T16:16:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107648733, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2209787, + 41.4353262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946993751", + "osm_id": 3946993751, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T16:12:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107648540, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2208569, + 41.4352656 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946999757", + "osm_id": 3946999757, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946996670", + "osm_id": 3946996670, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946997128", + "osm_id": 3946997128, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8904744682", + "osm_id": 8904744682, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T15:57:50Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 9.11834909997489e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107647798, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2220951500000004, + 41.43658475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946965481", + "osm_id": 3946965481, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965459", + "osm_id": 3946965459, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965532", + "osm_id": 3946965532, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965500", + "osm_id": 3946965500, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965511", + "osm_id": 3946965511, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T15:42:26Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000267168915000379, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107647079, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22194065, + 41.439651850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946966392", + "osm_id": 3946966392, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966446", + "osm_id": 3946966446, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947008701", + "osm_id": 3947008701, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965646", + "osm_id": 3946965646, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966414", + "osm_id": 3946966414, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947008723", + "osm_id": 3947008723, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T15:33:57Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000450219627000621, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107646670, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22290265, + 41.44264445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947008610", + "osm_id": 3947008610, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T15:33:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107646653, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2223795, + 41.4444085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T13:25:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107639693, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7356439, + 51.041662 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T13:19:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107639372, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2208054, + 51.2103751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T12:49:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107637544, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9965305, + 48.5015504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T12:47:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.83133200001527e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107637369, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0562325, + 48.5231717 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T11:39:12Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107631905, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7356439, + 51.041662 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T11:27:22Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0010883120992801, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107630898, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.020796, + 48.5069801 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T11:22:07Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000167403970399962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107630486, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9965474, + 48.5003073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T11:21:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107630455, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9958313, + 48.5015779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 4, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T10:54:27Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000111980822399717, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107628222, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9180685000000004, + 51.23305165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T10:47:21Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 6.3344619000903e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107627625, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91824105, + 51.23410265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T10:37:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107626737, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9168272, + 51.2339232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T10:13:44Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 4.08242999989958e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107624823, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91690365, + 51.23390985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T08:24:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107615864, + "host": "127.0.0.1:1234", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2194673, + 51.2131627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T07:55:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107613706, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9192117, + 51.2342658 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-07T22:24:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107591399, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7866643, + -34.6514154 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-07T19:44:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107586930, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9195952, + 51.2343802 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-07T19:20:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107586116, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1987433, + 52.0670819 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Flywheel Project Test 1", + "uid": "12900311", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-07T17:37:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107581411, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.4317797, + 44.8152335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-07T11:53:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107561417, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5527011, + 50.9974593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-07T10:26:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107554704, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5557197, + 13.9643939 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-07T02:57:25Z", + "reviewed_features": [], + "create": 12, + "modify": 0, + "delete": 0, + "area": 2.44843199981842e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107527653, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7869848, + -34.65140915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-07T00:10:43Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 5.14493199996391e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107525315, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.78760715, + -34.6511131 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-06T19:16:37Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107517409, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3531842, + 44.531113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-06T16:46:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107510508, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1213796, + 52.0759235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "znrgl", + "uid": "9486229", + "editor": "MapComplete 0.8.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-06T14:52:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107504627, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.3041186, + 48.1610421 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3", + "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": "2021-07-06T13:22:42Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107500130, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4546041, + -34.624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.8.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-06T11:25:43Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107493601, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8774472, + 56.2496226 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T19:10:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107456799, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1124561, + 51.1812325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3-rc2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T14:54:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107446673, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1242227, + 52.0818547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PicoPlex", + "uid": "13702329", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T12:30:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107440134, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4505599, + 51.1920798 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://osm.rlin.eu/streetlighting.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T12:12:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.37471200014194e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107439210, + "host": "mapcomplete.osm.be", + "theme": "https://osm.rlin.eu/streetlighting.json", + "imagery": "osm", + "language": "nl", + "theme-creator": "RobinLinde" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5613755000000005, + 53.01928155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T12:01:45Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107438593, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5513386, + 50.9966912 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T11:54:50Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107438158, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5478141, + 50.9985093 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PicoPlex", + "uid": "13702329", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T11:52:36Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107438020, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4902217, + 51.2035762 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karelle Keters", + "uid": "13702831", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T11:49:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107437838, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7284127, + 51.0665171 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PicoPlex", + "uid": "13702329", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T11:48:33Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 8.08962300000598e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107437805, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4900500999999995, + 51.20521825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "HannahMDeclerck", + "uid": "13697678", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T11:18:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107436132, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0110496, + 50.7870724 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WardBeyens", + "uid": "10343215", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T11:16:42Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107436011, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0179933, + 51.388831 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WardBeyens", + "uid": "10343215", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T11:15:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107435925, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0157416, + 51.3917567 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8894748566", + "osm_id": 8894748566, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "WardBeyens", + "uid": "10343215", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T10:30:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107433268, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.076896, + 51.3233979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T09:45:49Z", + "reviewed_features": [], + "create": 0, + "modify": 48, + "delete": 0, + "area": 0.00771707087949035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107430359, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29691635, + 41.52784295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lopus", + "uid": "158949", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T09:31:42Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00000140958017998657, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107429499, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.28685895, + 49.1515518 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T09:16:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000594397021000568, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107428602, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55485315, + 53.00925565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "P Kanzler", + "uid": "6173912", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T09:11:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107428362, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0073312, + 49.4024851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8826338002", + "osm_id": 8826338002, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826337999", + "osm_id": 8826337999, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338000", + "osm_id": 8826338000, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317490", + "osm_id": 8826317490, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338003", + "osm_id": 8826338003, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317483", + "osm_id": 8826317483, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338017", + "osm_id": 8826338017, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317482", + "osm_id": 8826317482, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317491", + "osm_id": 8826317491, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338050", + "osm_id": 8826338050, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826337996", + "osm_id": 8826337996, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317459", + "osm_id": 8826317459, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317492", + "osm_id": 8826317492, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338044", + "osm_id": 8826338044, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338062", + "osm_id": 8826338062, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338001", + "osm_id": 8826338001, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338043", + "osm_id": 8826338043, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317461", + "osm_id": 8826317461, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338045", + "osm_id": 8826338045, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338046", + "osm_id": 8826338046, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338047", + "osm_id": 8826338047, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.8.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": "2021-07-04T20:48:35Z", + "reviewed_features": [], + "create": 0, + "modify": 31, + "delete": 0, + "area": 0.00000114117990000452, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107406325, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2307251499999996, + 41.4471759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T19:25:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107404092, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5801438, + 52.9886576 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T17:08:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.27190549993732e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107399445, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.78172875, + 48.28012525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8826337987", + "osm_id": 8826337987, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826337990", + "osm_id": 8826337990, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826337988", + "osm_id": 8826337988, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826337986", + "osm_id": 8826337986, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.8.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": "2021-07-04T17:02:41Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 1.95444000008076e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107399232, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22837165, + 41.447435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Unbeatable101", + "uid": "11946368", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T16:41:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107398394, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.5328617, + 43.1849863 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JannikK", + "uid": "10114379", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T14:42:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000356004792000347, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107393708, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.909097, + 53.6636667 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mildis", + "uid": "9151989", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T13:55:35Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107391739, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1465075, + 48.9024177 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T13:15:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.24400559999334e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107390271, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90634585, + 51.2285138 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T10:27:27Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000455957077200184, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107384119, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7728481, + 41.62657735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T08:04:04Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000149266339200019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107379203, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.79378125, + 41.6189837 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T07:58:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000148933161600393, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107379066, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.8030329, + 41.6200017 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T07:32:37Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.000417637589159932, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107378298, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8628420000000006, + 50.876602000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T06:58:57Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107377442, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8779343, + 50.8749435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koilebeit", + "uid": "10355146", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T06:47:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107377157, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5999967, + 47.5721039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T06:27:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.21008600001466e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107376632, + "host": "pietervdvn.github.io", + "path": "mc/feature/units/", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89922325, + 50.4682765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cregox", + "uid": "9515343", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T06:16:54Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.000255602241419815, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107376395, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.6953024, + 41.27305465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cregox", + "uid": "9515343", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T05:40:19Z", + "reviewed_features": [], + "create": 5, + "modify": 8, + "delete": 0, + "area": 0.00561702952145831, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107375700, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.7915753, + 41.27653235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cregox", + "uid": "9515343", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T05:37:00Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000141660518999456, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107375646, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.685330649999999, + 41.2703645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.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": "2021-07-04T04:02:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107374450, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7889388, + -34.6506381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T03:37:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107374210, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.788963, + -34.650659 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T03:31:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107374133, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7891185, + -34.6502794 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T21:50:56Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00037276750335999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107370331, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7852913, + 41.62378270000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T19:49:47Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107367471, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2193819, + 51.1822834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811503097", + "osm_id": 8811503097, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8890893592", + "osm_id": 8890893592, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346799", + "osm_id": 8770346799, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770243081", + "osm_id": 8770243081, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346926", + "osm_id": 8770346926, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346923", + "osm_id": 8770346923, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346925", + "osm_id": 8770346925, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8890910610", + "osm_id": 8890910610, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346886", + "osm_id": 8770346886, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346876", + "osm_id": 8770346876, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346866", + "osm_id": 8770346866, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716944", + "osm_id": 8822716944, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8890929747", + "osm_id": 8890929747, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770243104", + "osm_id": 8770243104, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346875", + "osm_id": 8770346875, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716945", + "osm_id": 8822716945, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8891009813", + "osm_id": 8891009813, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822661188", + "osm_id": 8822661188, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822751934", + "osm_id": 8822751934, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822751938", + "osm_id": 8822751938, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822662477", + "osm_id": 8822662477, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822661197", + "osm_id": 8822661197, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822736096", + "osm_id": 8822736096, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822661152", + "osm_id": 8822661152, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T19:12:25Z", + "reviewed_features": [], + "create": 11, + "modify": 58, + "delete": 0, + "area": 0.0000145801214999807, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107366484, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23443045, + 41.4444905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T18:03:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107364400, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7872839, + -34.651193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OttoR", + "uid": "4123522", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T15:14:09Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000370220687998789, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107358016, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9760206, + 52.337871 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T15:04:53Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107357608, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1366315, + 50.6942047 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vt100", + "uid": "15110", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T14:51:13Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 0.00520382339489958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107357033, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.335479499999998, + 48.18749435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T14:51:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107357028, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5583594, + 47.4644831 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T12:38:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107351906, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2207792, + 51.2168779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T11:10:04Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000440007849998721, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107349092, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.139312, + 50.691505750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WardBeyens", + "uid": "10343215", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T10:40:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0087058638197998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107348158, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.062176, + 51.37753885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T10:02:27Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107346987, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1252835, + 52.0836943 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T09:25:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.34861999998086e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107345763, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2212935, + 51.2159086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ben Abelshausen", + "uid": "137772", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T08:03:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107342913, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.788639, + 51.2645906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T04:25:24Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 6.15654490004769e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107338502, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.78826425, + -34.65089705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.2", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T00:23:19Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107335315, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.219882, + 51.2157065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.2", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-02T23:39:42Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107334758, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198712, + 51.2156981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-02T23:36:42Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 9.07200000633043e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107334707, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198766, + 51.215702300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-02T18:29:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.21008600001466e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107326187, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89922325, + 50.4682765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8888309140", + "osm_id": 8888309140, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303533", + "osm_id": 8786303533, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303535", + "osm_id": 8786303535, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303530", + "osm_id": 8786303530, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303519", + "osm_id": 8786303519, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303532", + "osm_id": 8786303532, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303528", + "osm_id": 8786303528, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303518", + "osm_id": 8786303518, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303531", + "osm_id": 8786303531, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303529", + "osm_id": 8786303529, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.8.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": "2021-07-02T17:21:02Z", + "reviewed_features": [], + "create": 1, + "modify": 13, + "delete": 0, + "area": 1.08367719998336e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107323688, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2299869, + 41.45025205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-8883434240", + "name": "Águeda - Camino Zaratán", + "osm_id": 8883434240, + "reasons": [ + 42 + ], + "version": 8, + "primary_tags": {} + }, + { + "url": "node-8883499654", + "name": "Cervantes s/n", + "osm_id": 8883499654, + "reasons": [ + 42 + ], + "version": 8, + "primary_tags": {} + } + ], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-02T15:31:13Z", + "reviewed_features": [], + "create": 3, + "modify": 25, + "delete": 0, + "area": 0.0000667591815799989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107318880, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7721260999999995, + 41.62756895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-02T13:10:25Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107312724, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3253657, + 51.1093114 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "KirstyWatkinson", + "uid": "8241253", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-02T12:53:51Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107312030, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.277056, + 53.4048886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thomas132", + "uid": "9643191", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-02T01:06:16Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00000636998942997235, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107283786, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -93.65124155000001, + 41.73699005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-02T00:17:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.57339999890456e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107283257, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.22277385, + -39.8375372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T20:13:33Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 5.55130879996773e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107278218, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44867665, + 51.0920828 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T20:10:59Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000549137823400304, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107278133, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7721500500000005, + 41.628206 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T19:21:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107276579, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2120516, + 51.191464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T16:52:16Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107270901, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.224388, + 50.7138962 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T16:28:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107269915, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7727844, + 41.6283179 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T14:26:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107264848, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.122183, + 52.0788916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.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": "2021-07-01T13:36:03Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000209260532400192, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107262666, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.64857445, + -34.6542519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T07:13:19Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107243866, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1110544, + 52.0827213 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thomas132", + "uid": "9643191", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-01T01:48:54Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 4.53748019992759e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107233544, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -93.65283, + 41.73333975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-31T16:24:00Z", + "reviewed_features": [], + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.00261655112319972, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110522977, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.9232631, + 43.301894000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jotam", + "uid": "768145", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-31T08:54:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000111156142000003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110500377, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9253875, + 52.28589785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jotam", + "uid": "768145", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-31T08:44:25Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.3636570000304e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110499778, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.93549225, + 52.309405600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-31T08:32:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110499125, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2601325, + 50.7373676 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-30T23:49:33Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000125325426000595, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110483407, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.769360450000001, + 51.491284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-30T23:18:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00460467729224991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110482912, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9560343499999995, + 51.12547465 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-30T20:23:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.55455799999909e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110479119, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.720773099999999, + 51.6261887 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Firefighter-112", + "uid": "14014754", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-30T18:09:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110474449, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5652936, + 51.9702387 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-30T18:04:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110474280, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1588903, + 52.4506053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-30T15:52:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.1518100002006e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110468824, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.60310665, + -33.42403535 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-30T15:06:30Z", + "reviewed_features": [], + "create": 243, + "modify": 243, + "delete": 0, + "area": 0.00270729736535995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110466911, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.759464000000001, + 52.841807900000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-30T14:33:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110465435, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.91956, + 52.5122283 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-08-30T13:18:57Z", + "reviewed_features": [], + "create": 4, + "modify": 27, + "delete": 0, + "area": 0.00636399281615861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110461689, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.64232525, + -34.6528931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.3", + "comment": "Deleting a point with #MapComplete for theme #bookcases: disused", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-30T13:13:18Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110461433, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2327525, + 51.212346 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-30T11:48:07Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0841241930837222, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110457054, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57080245, + 48.704203 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-30T10:05:30Z", + "reviewed_features": [], + "create": 10, + "modify": 11, + "delete": 0, + "area": 0.0000816513261799791, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110451095, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.729089349999999, + 52.8351156 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-30T09:43:55Z", + "reviewed_features": [], + "create": 39, + "modify": 39, + "delete": 0, + "area": 0.000283631949129992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110449938, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.72531815, + 52.83822055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-30T09:11:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000456938850001588, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110448225, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46224065, + 50.7820216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T21:42:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.1518100002006e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110428059, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "fr", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.60310665, + -33.42403535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T17:02:22Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.04284799998241e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110420814, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9917127, + 48.4984367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T15:43:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110417964, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2557221, + 43.7859072 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "andre901", + "uid": "165171", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T15:10:52Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110416754, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.878176, + 52.3875656 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Eeule", + "uid": "12479179", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T14:55:40Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110416126, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.3338032, + 47.8180013 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T13:43:48Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000456251291800346, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110413360, + "host": "mapcomplete.osm.be", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7243377, + 51.054969650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "andre901", + "uid": "165171", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T13:29:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110412870, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8615811, + 52.3855979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T12:55:53Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000612869312999588, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110411635, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.69334155, + 37.74212075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T11:21:51Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110408479, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.5215607, + 41.6305262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T10:33:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110406920, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.459437, + 51.3650876 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Firefighter-112", + "uid": "14014754", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T10:05:06Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.000351899590560084, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110406038, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5893767, + 51.97243505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T09:33:43Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110404922, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2678505, + 50.74381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T09:14:22Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110404373, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5124488, + 47.4452066 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T09:05:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110404088, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5133567, + 47.4451131 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "kleenwalle", + "uid": "14014719", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T08:13:44Z", + "reviewed_features": [], + "create": 10, + "modify": 0, + "delete": 0, + "area": 0.000141611301279952, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110402536, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.98134645, + 51.8424031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T07:47:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110401909, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1118555, + 50.7995312 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T07:06:19Z", + "reviewed_features": [], + "create": 5, + "modify": 17, + "delete": 0, + "area": 0.0000258343448500012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110401090, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.69371985, + 37.74372465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T22:56:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110396066, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.5231646, + 41.630438 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T22:14:30Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000225008588999953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110395474, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46834945, + 50.781139 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thschick", + "uid": "2753036", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T19:48:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110392599, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0077223, + 51.4381799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thschick", + "uid": "2753036", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T19:46:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110392546, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0096636, + 51.4387791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T19:16:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000108268067999561, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110391900, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.889961899999999, + 51.0560962 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T19:04:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110391628, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9888208, + 51.1638865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T17:09:52Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0000435118780800035, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110388360, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.69638995, + 37.7405462 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T16:48:18Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 9.98540400001975e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110387566, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9074104, + 51.091554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T13:57:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110381615, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.271279, + 51.057879 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T13:31:51Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000114774769999374, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110380688, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88993545, + 51.0560938 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T10:41:26Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000985496924700761, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110375071, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.993748650000001, + 51.16077895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rosi93", + "uid": "14010270", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T10:32:36Z", + "reviewed_features": [], + "create": 5, + "modify": 6, + "delete": 0, + "area": 0.00111857064168002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110374800, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7670876, + 51.425540299999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T10:16:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110374240, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2706164, + 44.5230379 + ] + } + }, + { + "type": "Feature", + "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": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T09:25:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000604054000599567, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110372483, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.38232895, + 51.584776000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T09:16:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110372196, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2686778, + 51.0605068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T08:54:46Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110371506, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5179344, + 45.5046634 + ] + } + }, + { + "type": "Feature", + "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": 3, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T08:22:37Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110370542, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2202923, + 50.748141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T07:22:17Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110368630, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7171638, + 48.688034 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T04:53:14Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00076583030880004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110365638, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1348382, + 50.6751023 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Larry Gallagher", + "uid": "5492654", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T01:51:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110363347, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.04712710000001, + 37.2517689 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-27T23:28:13Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110361908, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5653507, + 45.4788934 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-27T22:18:42Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.51204036025048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110360732, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5743172, + 50.976084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "The_JF", + "uid": "4543415", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-27T18:22:39Z", + "reviewed_features": [], + "create": 1, + "modify": 22, + "delete": 0, + "area": 0.00178360145671998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110354638, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45619635, + 53.8526971 + ] + } + }, + { + "type": "Feature", + "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": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-27T16:58:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110351802, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6819299, + 51.677429 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9041075454", + "osm_id": 9041075454, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-27T14:30:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110345728, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.7218111, + 37.7355389 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Druese", + "uid": "13987920", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-27T13:04:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110341888, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6932501, + 51.6456486 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-27T12:51:32Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.810559246294722, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110341268, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3964877, + 50.97587475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-27T09:08:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110328737, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.4345096, + 41.6106455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-27T01:18:11Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00000655020214996501, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110311804, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.56856895, + 45.479045049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-08-27T00:31:33Z", + "reviewed_features": [], + "create": 7, + "modify": 4, + "delete": 0, + "area": 0.0177401585410503, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110311324, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.57005985, + -34.63639885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T23:00:26Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.43679069999259e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110310132, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "osm", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69372375, + 51.04165345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-26T18:08:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110302017, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4259574, + 51.2126193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-26T15:36:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.10140320001116e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110295287, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9907228, + 48.4981911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T14:18:58Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000681332118997564, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110291443, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21066735, + 41.54675125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-08-26T13:05:37Z", + "reviewed_features": [], + "create": 4, + "modify": 19, + "delete": 0, + "area": 0.00554211604890096, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110288047, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6562667, + -34.65279285 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-26T12:43:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110287012, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6365021, + 52.015425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Der Kalle", + "uid": "13998301", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T12:22:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110285848, + "host": "waldbrand-app.de", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6721768, + 51.9473461 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T11:17:36Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110281843, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2297336, + 50.8954102 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Der Kalle", + "uid": "13998301", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T10:30:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110279162, + "host": "waldbrand-app.de", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.71425, + 51.9491832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-26T10:26:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110278890, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5593499, + 13.9636129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T09:35:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110275748, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7108772, + 50.6550157 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T09:06:41Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110274106, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5583292, + 50.7859898 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-26T07:20:02Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00252212414735991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110268266, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.55157865, + 41.6085038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T04:38:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.62480999917301e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110260590, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "fr", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.59771455, + -33.57078305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.2", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T00:16:05Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 1.11442729006883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110256028, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8954485, + 51.017616399999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Villodie", + "uid": "619565", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T20:45:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110251690, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.038426, + -2.8624529 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T20:08:40Z", + "reviewed_features": [], + "create": 6, + "modify": 5, + "delete": 0, + "area": 0.0000969918099699342, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110250614, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.44426325, + 51.89308835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T19:40:40Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00000454861140000203, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110249682, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8539609, + 52.1657929 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "okwithmydecay", + "uid": "10370720", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T16:54:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110243813, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0585135, + 51.5434224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mannsen", + "uid": "13988107", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T15:05:33Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00146001080716002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110238612, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.32839855, + 52.028535000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusOrux", + "uid": "13624541", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T14:27:32Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000823448400001157, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110236764, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "PNOA-Spain-TMS", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.3344568, + 39.462694400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mannsen", + "uid": "13988107", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T14:04:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.75199999723572e-11, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110235467, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.3282899, + 52.032626199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T13:44:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110234434, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.3545962, + 45.4323164 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-08-25T13:15:22Z", + "reviewed_features": [], + "create": 3, + "modify": 20, + "delete": 0, + "area": 0.00621668929465883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110232873, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.64416895, + -34.6523526 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mike Gallert", + "uid": "13992729", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T11:49:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110227343, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.3042502, + 51.799496 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T11:10:54Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 2.57379100002923e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110224603, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.33029595, + 45.430868849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.2", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T10:31:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000397225571999192, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110222055, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6013579, + 51.1525427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Druese", + "uid": "13987920", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T10:13:05Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.000334047668939912, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110220790, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.757716949999999, + 51.4659751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T09:46:16Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000536453654300007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110219133, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.32879105, + 45.43156775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "troNpo", + "uid": "12221867", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T07:08:31Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.0127349493084011, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110210088, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.8329, + 37.27243035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Trompo", + "uid": "12221867", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T05:48:47Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00290972385540004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110205818, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.8865992, + 37.32530345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T05:39:18Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 4.38743999994457e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110205391, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5912685, + 45.517507699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Christian 1102", + "uid": "13990176", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T03:30:28Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.00019736205056998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110200544, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.033919749999999, + 51.689032049999994 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-24T23:49:36Z", + "reviewed_features": [], + "create": 14, + "modify": 1, + "delete": 0, + "area": 0.000482367774249923, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110197630, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.17389845, + 52.446407449999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-08-24T22:19:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110195980, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7290773, + -34.6641159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T21:53:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110195344, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5584142, + 50.7860886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T20:48:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110193404, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5925962, + 44.3287832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-24T20:18:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110192320, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.4257015, + 44.4611836 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.2", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T20:12:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00328119071170019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110192119, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13413085, + 51.0958509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T19:23:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.58904470001526e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110190369, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60153015, + 50.80909725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-24T18:17:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110188312, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.3267343, + 45.4409673 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Druese", + "uid": "13987920", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T17:02:30Z", + "reviewed_features": [], + "create": 16, + "modify": 7, + "delete": 0, + "area": 0.00348858910527002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110185535, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.68704295, + 51.65444975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mannsen", + "uid": "13988107", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T16:17:25Z", + "reviewed_features": [], + "create": 14, + "modify": 22, + "delete": 0, + "area": 0.00130026993444034, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110183455, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.35299485, + 52.0318069 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dark-Star", + "uid": "93252", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T14:38:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110178344, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1767718, + 48.5005919 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dark-Star", + "uid": "93252", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T14:27:42Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000532432529999936, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110177856, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2033242, + 48.538803349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-08-24T14:23:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110177596, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.40994, + -34.6088596 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-08-24T14:07:30Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00024570444089996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110176789, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.474153, + -34.630172349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefank3355", + "uid": "13987313", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T13:41:37Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 8.65218770001849e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110175590, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.48438245, + 52.15649725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.2", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-24T11:18:16Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000410352950949809, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110168021, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46031215, + 51.090332950000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-24T10:38:46Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000124862552880091, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110165364, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.33534655, + 45.4352451 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.2", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-24T08:35:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000526611915899724, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110157524, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29951655, + 50.804868150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T23:24:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.39972300008427e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110140295, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "fr", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.62637885000001, + -33.44296315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T22:33:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110139566, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5579423, + 45.5058439 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusOrux", + "uid": "13624541", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T21:09:26Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.18870000026876e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110137534, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.70650585, + 37.59645845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T20:25:50Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.00399946484216043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110136424, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5888947, + 45.50064255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "grossmachnow", + "uid": "104308", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T17:38:51Z", + "reviewed_features": [], + "create": 36, + "modify": 3, + "delete": 0, + "area": 0.00295665975335974, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110130304, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.447373200000001, + 52.287961100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T16:47:18Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00081801864872012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110127744, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5844597, + 45.524499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Feuerwehr Mellensee", + "uid": "13932183", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T15:35:02Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110124100, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4266904, + 52.1859955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-08-23T13:12:03Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00244022617158015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110116925, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6943833, + -34.65136995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GinaroZ", + "uid": "3432400", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T10:18:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000245160722400194, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110106301, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.2342144, + 56.060981999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Matthias Van Woensel", + "uid": "4561597", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T09:40:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110104018, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1172445, + 51.2118257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Matthias Van Woensel", + "uid": "4561597", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T09:33:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110103556, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1167349, + 51.2119877 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibault Rommel", + "uid": "5846458", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T09:12:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110102326, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4638884, + 50.8436071 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T08:06:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110097992, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.6915036, + 41.612191 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T08:00:22Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 8.80234000005818e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110097643, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.422055400000001, + 46.45909115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T07:57:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110097482, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "Mapbox", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.4209475, + 46.4592242 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stéphane Nicolet", + "uid": "4311211", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T07:38:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110096388, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9078375, + 44.5248764 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T07:20:20Z", + "reviewed_features": [], + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.239347859159807, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110095302, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.77841075, + 45.450346100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-4402850471", + "name": "Station de réparation de vélos", + "osm_id": 4402850471, + "reasons": [ + 42 + ], + "version": 6, + "primary_tags": { + "amenity": "bicycle_repair_station" + } + } + ], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T00:11:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110082522, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5527882, + 45.4987638 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GinaroZ", + "uid": "3432400", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T00:05:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110082444, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.2212061, + 56.0637904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T21:34:02Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.00103801861883948, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110079932, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.56589220000001, + 45.4974016 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T19:16:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110076005, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2249916, + 51.2104043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T18:57:49Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110075290, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2250398, + 51.2104409 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T17:05:05Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000174846194999421, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110071072, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "Mapbox", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.42641755, + 46.45719425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T15:50:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110067918, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0076153, + 51.1226982 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ritxarcontx", + "uid": "12997299", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T15:41:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110067510, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5646386, + 42.5236249 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LuisAliaguilla", + "uid": "13968083", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T14:36:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110064264, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2978821, + 39.8384492 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-22T13:23:08Z", + "reviewed_features": [], + "create": 6, + "modify": 6, + "delete": 0, + "area": 0.0000108746287199792, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110061565, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7719685, + 52.84832845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T13:18:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110061355, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5357657, + 50.8133871 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + } + ], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.9.0", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T11:33:45Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110057356, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2209394, + 51.216821 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + } + ], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.9.0", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T11:33:14Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110057338, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2206618, + 51.2165633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T11:31:50Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 7.15375200016382e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110057279, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2208005999999996, + 51.21669215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T11:00:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110056245, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1579392, + 53.7129136 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-22T10:59:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.17399999995229e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110056207, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9914404999999995, + 51.15763025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ritxarcontx", + "uid": "12997299", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-22T08:13:06Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.0000339842224000166, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110051017, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5620355, + 42.5230351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T07:18:03Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110049566, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2356747, + 50.7318342 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Javi Ruixi", + "uid": "3814937", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-22T05:01:05Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110047699, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "es", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7381868, + 42.406185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9025771307", + "osm_id": 9025771307, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Javi Ruixi", + "uid": "3814937", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-22T04:59:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110047690, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.738211, + 42.4061771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "afgb1977", + "uid": "10218404", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-22T01:41:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110046008, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.6654114, + 5.4540737 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "afgb1977", + "uid": "10218404", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T00:14:36Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110045351, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.6654114, + 5.4540737 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-21T22:57:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110044272, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "UrbISOrtho2020", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3471302, + 50.8637621 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-21T22:05:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.86486380003676e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110043349, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2965525, + 50.85296485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-21T21:32:49Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110042658, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "AGIV", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4836664, + 50.8971684 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-21T21:26:57Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110042555, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3741829, + 50.8670757 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-21T19:17:11Z", + "reviewed_features": [], + "create": 33, + "modify": 33, + "delete": 0, + "area": 0.000120845580200024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110039590, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.37313685, + 52.6427729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-21T16:31:52Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.0027866476482003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110034768, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39533825, + 39.6588001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-21T16:21:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110034454, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2154662, + 51.2179199 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-21T13:32:07Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.000229843673359948, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110028706, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09618115, + 51.2999619 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LuisAliaguilla", + "uid": "13968083", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-21T10:29:12Z", + "reviewed_features": [], + "create": 5, + "modify": 1, + "delete": 0, + "area": 0.00928753410618003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110022345, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2991480499999999, + 39.818940999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LuisAliaguilla", + "uid": "13968083", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-21T10:24:38Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.0000153775783199972, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110022207, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.326811, + 39.74076255 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-21T07:09:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110014819, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3895412, + 52.6930158 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-20T19:43:22Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.0000469310778200117, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110003826, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3864760500000002, + 39.7193125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-20T18:04:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110000187, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "PNOA-Spain", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3838432, + 39.7148562 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-20T17:35:05Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109999132, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1438842, + 51.1712649 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-20T16:47:28Z", + "reviewed_features": [], + "create": 5, + "modify": 6, + "delete": 0, + "area": 0.0000825417846399906, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109997272, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4395395, + 39.7218031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-20T10:19:02Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000818445214799536, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109978806, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95473985, + 51.3276478 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-20T10:10:27Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 5.76486299999252e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109978281, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8236820500000004, + 50.812700750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-20T08:19:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109972440, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3935227, + 50.9254313 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-20T01:13:48Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109958309, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "UrbISOrtho2020", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3422469, + 50.8520859 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-19T18:10:34Z", + "reviewed_features": [], + "create": 4, + "modify": 8, + "delete": 0, + "area": 0.0000247188862000038, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109948012, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37447785, + 39.8139357 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-19T13:04:20Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109934175, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7120102, + 44.6178122 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-19T11:57:19Z", + "reviewed_features": [], + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.00111946835601014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109930221, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.43950945, + -34.61845065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-19T11:49:38Z", + "reviewed_features": [], + "create": 1, + "modify": 16, + "delete": 0, + "area": 0.000423586966080026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109929700, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.49058535, + -34.632881299999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-19T11:12:40Z", + "reviewed_features": [], + "create": 10, + "modify": 7, + "delete": 0, + "area": 0.0154543239327305, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109927240, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.575007150000005, + -34.63906185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-19T07:48:11Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 3.68100001396625e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109915087, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37271245, + 50.93925095 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-19T06:09:47Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000244568611800039, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109909901, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.382147849999999, + 52.648663400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-19T00:02:21Z", + "reviewed_features": [], + "create": 9, + "modify": 0, + "delete": 0, + "area": 0.00137909150888009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109901177, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5624732, + -34.64235495 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-18T15:48:16Z", + "reviewed_features": [], + "create": 37, + "modify": 38, + "delete": 0, + "area": 0.0000705237455000189, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109883660, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3811806, + 52.645970750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-18T13:31:21Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.000423341871440035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109876629, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6268878, + -34.650370499999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-18T08:01:13Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.000302281059419879, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109856297, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38244245, + 50.932639699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-17T18:22:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109828109, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5124964, + 51.1358371 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Christopher", + "uid": "2956", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-17T18:07:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109827431, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2344698, + 52.3196097 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-17T14:54:02Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109818176, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2839305, + 39.8491353 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "st_OWF A_Giese", + "uid": "13944110", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-17T12:49:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109811703, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7898196, + 53.1297759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-17T10:27:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000989488114993412, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109802343, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21076705, + 50.93996715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "st_OWF A_Giese", + "uid": "13944110", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-17T10:21:32Z", + "reviewed_features": [], + "create": 18, + "modify": 12, + "delete": 0, + "area": 0.000963680908259989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109801908, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.77356935, + 53.122519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-17T08:22:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109794441, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1856617, + 50.9228428 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T22:54:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109775936, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "UrbISOrtho2020", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3724459, + 50.8688436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T22:48:12Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.000104401271649989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109775800, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37526645, + 50.87820095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T22:44:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.66262100012695e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109775676, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.378507450000001, + 50.88828855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T19:32:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109769322, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1164035, + 52.0920784 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-16T16:59:29Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000267541422900018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109762842, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21457025, + 51.20033705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-16T16:16:56Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109760777, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3974308, + 51.0411647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T12:07:02Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0526006854477003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109748535, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2679291500000005, + 51.1543496 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-16T10:10:11Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000103675358849966, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109741000, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.236200350000001, + 50.737634150000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sonjagerhard", + "uid": "6332059", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T09:15:13Z", + "reviewed_features": [], + "create": 3, + "modify": 16, + "delete": 0, + "area": 0.0181698755550997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109737824, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.40384975, + 49.2066477 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T07:12:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109731040, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7248091, + 51.0463223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "spelledwrongdotuk", + "uid": "12198029", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-15T20:44:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109715393, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.4758828, + 51.4308656 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-15T20:27:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109715034, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2356076, + -39.8240754 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-15T20:12:13Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.26503999990302e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109714688, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2205409, + -39.84486135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Felipe Villarroel", + "uid": "7449001", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-15T19:32:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109713660, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2378767, + -39.8236297 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-15T17:02:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109708815, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2348293, + 52.7751278 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-15T16:33:23Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 2.0787600011275e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109707687, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2658925, + 50.7519019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-15T15:45:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0253746882300803, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109705960, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6262706, + 51.19895565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ielham", + "uid": "462218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #1roadAlllanes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-15T11:45:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000705341249996666, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109698024, + "host": "mapcomplete.osm.be", + "theme": "1roadalllanes", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.9332483499999995, + 37.2793399 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bibu04", + "uid": "13936872", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-15T10:38:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109695915, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.795037, + 45.8565394 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9007648358", + "osm_id": 9007648358, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "emergency": "Löschwasserbehälter" + } + } + ], + "user": "DasDaniel419", + "uid": "13924905", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-15T08:06:01Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.000535681101169885, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109691592, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.49928915, + 52.06398625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-15T07:01:01Z", + "reviewed_features": [], + "create": 12, + "modify": 27, + "delete": 0, + "area": 0.000345719245250026, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109689884, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36706415, + 50.83381895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Semako", + "uid": "4240243", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T23:21:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109684988, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3860505, + 52.1656603 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T22:39:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.72999080008017e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109684544, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.68980640000001, + 26.539927050000003 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Feuerwehr Mellensee", + "uid": "13932183", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T20:33:28Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.000499702232049922, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109682330, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.41402765, + 52.18858725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "afgb1977", + "uid": "10218404", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T20:18:28Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109681987, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.5026871, + 5.0664182 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T19:51:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.20578300014826e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109681368, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98581025, + 51.16184715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T19:46:56Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000140831673840069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109681253, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9308002, + 51.09047675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusOrux", + "uid": "13624541", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T19:35:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109681051, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.5630858, + 38.5227377 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T19:17:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109680715, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4143206, + 50.9979201 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "afgb1977", + "uid": "10218404", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T18:22:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109679404, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.0363926, + 39.8640242 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-14T14:41:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109672940, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2288932, + 52.7606098 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DasDaniel419", + "uid": "13924905", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T13:36:08Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109670676, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.501007, + 52.0465533 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T13:35:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109670624, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0998557, + 50.5541406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T12:35:07Z", + "reviewed_features": [], + "create": 27, + "modify": 21, + "delete": 0, + "area": 0.0000687522724000141, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109668785, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2440419, + 52.78187165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Feuerwehr Mellensee", + "uid": "13932183", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T11:27:44Z", + "reviewed_features": [], + "create": 5, + "modify": 2, + "delete": 0, + "area": 0.000112822810000002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109666645, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4181288, + 52.1891303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DasDaniel419", + "uid": "13924905", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T11:23:27Z", + "reviewed_features": [], + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.0000432317050099869, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109666479, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.50590965, + 52.04679955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T06:08:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000298462507499718, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109656492, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99805385, + 48.49949345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bigblock14er", + "uid": "10081017", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-13T19:53:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109647022, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5365349, + 52.291653 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-13T16:45:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109640119, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8553236, + 52.1696745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-13T14:36:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109634600, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8553236, + 52.1696745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-13T11:20:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109624444, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7251042, + 51.0269592 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "smedo", + "uid": "9002106", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-13T10:43:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109621983, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3305722, + 50.9304482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-13T09:14:55Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.000347151844479278, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109616631, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.717462, + -34.655660499999996 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-13T04:27:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109602112, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3782117, + 52.643748 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CulingMan13", + "uid": "6641970", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-13T03:35:38Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.000600267737279937, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109600592, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.22499619999999, + 39.9702002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-12T17:51:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109587520, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8543204, + 52.1685311 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-12T17:17:45Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109586305, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2974781, + 49.5207528 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Andrew Orr", + "uid": "13915763", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-12T13:44:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109576148, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -97.1550427, + 49.7674708 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-12T13:12:31Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109574626, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1750542, + 50.8107011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-12T12:43:20Z", + "reviewed_features": [], + "create": 4, + "modify": 15, + "delete": 0, + "area": 0.00237062947979052, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109573146, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.45181125, + -34.621799949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-12T12:02:16Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.0167216463046007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109570905, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.57463165, + -34.638976400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-12T10:32:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109565139, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5020497, + 53.055716 + ] + } + }, + { + "type": "Feature", + "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": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-12T07:49:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109555175, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3741941, + 52.6357059 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-12T07:07:43Z", + "reviewed_features": [], + "create": 4, + "modify": 12, + "delete": 0, + "area": 1.63450480003879e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109552872, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3926121, + 50.926136299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807930756", + "osm_id": 8807930756, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8999512100", + "osm_id": 8999512100, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960765", + "osm_id": 8807960765, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930755", + "osm_id": 8807930755, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960741", + "osm_id": 8807960741, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8999500816", + "osm_id": 8999500816, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960747", + "osm_id": 8807960747, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960751", + "osm_id": 8807960751, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8999496408", + "osm_id": 8999496408, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960752", + "osm_id": 8807960752, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930737", + "osm_id": 8807930737, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930735", + "osm_id": 8807930735, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-11T19:39:47Z", + "reviewed_features": [], + "create": 6, + "modify": 12, + "delete": 0, + "area": 5.98835399997202e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109534553, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24321665, + 41.4402457 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807930776", + "osm_id": 8807930776, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930773", + "osm_id": 8807930773, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930788", + "osm_id": 8807930788, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930784", + "osm_id": 8807930784, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930779", + "osm_id": 8807930779, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930772", + "osm_id": 8807930772, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930767", + "osm_id": 8807930767, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431712", + "osm_id": 8811431712, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930766", + "osm_id": 8807930766, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930749", + "osm_id": 8807930749, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930771", + "osm_id": 8807930771, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930787", + "osm_id": 8807930787, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930759", + "osm_id": 8807930759, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930743", + "osm_id": 8807930743, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930754", + "osm_id": 8807930754, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930747", + "osm_id": 8807930747, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-11T19:14:16Z", + "reviewed_features": [], + "create": 2, + "modify": 23, + "delete": 0, + "area": 0.00000130594784000067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109533772, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2420277, + 41.440289500000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Andrew Orr", + "uid": "13915763", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-11T18:30:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109532162, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -97.1550427, + 49.7674708 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Huglu96", + "uid": "722577", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-11T09:12:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.6320713000369e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109505004, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.406043749999998, + 52.49700545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-11T07:14:13Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109499010, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.235782, + 50.7350492 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T20:30:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109483365, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.998016, + 48.501502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T19:02:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109480331, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0526434, + 51.1962641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tykayn", + "uid": "2962129", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T14:44:22Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000904410737999792, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109469599, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0840187, + 48.63581775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aduchi", + "uid": "83740", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T14:15:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109468259, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "ru", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.9651188, + 56.4974077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-10T12:46:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109464033, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7458764, + 44.2187273 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fietsersbond Leuven", + "uid": "12338983", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T10:41:17Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000963410587199943, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109456292, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72486675, + 50.874081 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fietsersbond Leuven", + "uid": "12338983", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T10:33:30Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000455601239999461, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109455777, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7267586, + 50.883813450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fietsersbond Leuven", + "uid": "12338983", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T10:30:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000257220719998645, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109455601, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7267586, + 50.8835294 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Claudia De Pus", + "uid": "10236139", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-10T09:58:43Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000013182591899973, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109453573, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7087246, + 51.07779055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-10T09:17:10Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109451043, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3169403, + 50.8352832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jfk52917", + "uid": "9559240", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T06:52:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00185071043300015, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109443038, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.10238305, + 38.8918637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T06:35:16Z", + "reviewed_features": [], + "create": 4, + "modify": 14, + "delete": 0, + "area": 4.33762769999516e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109442107, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39231705, + 50.925659550000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Aduchi", + "uid": "83740", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-09T15:05:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109414938, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.9845127, + 56.4635192 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-09T14:43:15Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 3.13356999990178e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109413746, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23323525, + 50.73766165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Aduchi", + "uid": "83740", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-09T13:01:31Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109408644, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "ru", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.9845127, + 56.4635192 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-09T11:55:03Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.8488700000477e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109404059, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.79305835, + -34.64959145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-09T11:30:44Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 4.73700499994706e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109402241, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.79235865, + -34.64979805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-09T11:01:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109399976, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4425507, + 52.5434797 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nevw", + "uid": "1293194", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-09T10:11:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109396091, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 153.0415517, + -27.2316365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Galilej25", + "uid": "13892877", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-09T09:45:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109393990, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.4569453, + 44.8209414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Galilej25", + "uid": "13892877", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-09T09:38:02Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109393464, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.4569453, + 44.8209414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Galilej25", + "uid": "13892877", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-09T07:52:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109385823, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.4569453, + 44.8209414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-09T06:13:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109379519, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9955803, + 48.4988714 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T21:38:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109364340, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.427251, + 51.184372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MarshMello___", + "uid": "13844594", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T19:49:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000336883960000871, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109360825, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2857771, + 50.8838825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T18:01:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109357280, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.152942, + 50.7576221 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jez Nicholson", + "uid": "7329", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T16:52:02Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109354762, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1384507, + 50.8423129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexander_mart", + "uid": "458554", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T15:32:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109351604, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "ru", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.9651188, + 56.4974077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexander_mart", + "uid": "458554", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T14:21:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109348467, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.9507832, + 56.4744741 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-08T12:54:47Z", + "reviewed_features": [], + "create": 2, + "modify": 17, + "delete": 0, + "area": 0.00242863647180036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109344961, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4552846, + -34.62228265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-08T12:16:25Z", + "reviewed_features": [], + "create": 26, + "modify": 10, + "delete": 0, + "area": 0.00668714483647921, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109343473, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.62089975, + -34.651606 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koilebeit", + "uid": "10355146", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T12:14:11Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000261335879999877, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109343368, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59338395, + 47.5711159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-08T10:56:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109340605, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3379653, + 52.5069243 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T07:50:14Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109334273, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3482148, + 50.9353292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T05:13:33Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 6.50908499972019e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109331331, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.75435375, + -33.49038795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-07T21:41:56Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.62170280003644e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109326660, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42421605, + 51.1826637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-07T19:20:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109323074, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4202396, + 51.2096933 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0-rc1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-07T19:14:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 9.96826320000582e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109322899, + "host": "127.0.0.1:1234", + "theme": "cycle_infra", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2172126, + 51.21005285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0-rc1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-07T19:04:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109322556, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1536965, + 51.1020483 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-07T12:59:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109309764, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "AGIV", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.152942, + 50.7576221 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-07T12:42:15Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00018761832983988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109309188, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.47449585, + -34.6303257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-07T12:40:29Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000484486250002043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109309143, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.489742899999996, + -34.63451225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-07T11:59:02Z", + "reviewed_features": [], + "create": 14, + "modify": 6, + "delete": 0, + "area": 0.0180006366740815, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109307647, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.57448815, + -34.6367232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-06T20:58:39Z", + "reviewed_features": [], + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.0000570039859199864, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109284325, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41870605, + 51.1910002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sugarbotond", + "uid": "10225780", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-06T20:44:14Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000276418800800076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109283794, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.957001650000002, + 47.550178200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jval78", + "uid": "13885678", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-06T14:20:50Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109265918, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9757313, + 48.9797998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-06T12:40:44Z", + "reviewed_features": [], + "create": 10, + "modify": 15, + "delete": 0, + "area": 1.4760592113988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109260914, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3318050999999995, + 51.101305800000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-06T09:33:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000018136364399913, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109248444, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3910317, + 51.17238265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-06T08:50:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109245495, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8927514, + 53.2878815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-06T07:43:10Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00000915511723999393, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109241800, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4031345, + 51.1895697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-05T22:15:20Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000172919504700104, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109224067, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.410331449999999, + 51.182998749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-05T20:14:12Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.000100272731999986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109220346, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4145646, + 51.188351600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "raspbeguy", + "uid": "3398417", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-05T18:20:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000170385107940038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109216339, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86494685, + 45.236673100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-05T18:16:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109216183, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1546506, + 44.9050895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-05T15:38:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109209899, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1546506, + 44.9050895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-05T13:24:09Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00956738154960018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109204092, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2487712, + 51.2018824 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-05T12:18:25Z", + "reviewed_features": [], + "create": 2, + "modify": 12, + "delete": 0, + "area": 0.000923337939079886, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109200627, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.43862335, + -34.6177728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 7, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-05T09:38:15Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.000163831693410007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109190875, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41618195, + 51.19265605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-05T07:13:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109182555, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1546506, + 44.9050895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-04T21:41:54Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000243885379429972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109165544, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41369235, + 51.19081715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-04T20:36:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109163865, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1546506, + 44.9050895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-04T19:58:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109162810, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2350458, + 43.6722582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-04T18:37:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109160449, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8137511, + 45.342389 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T15:49:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109153910, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.548554, + 53.0014414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T13:18:53Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 2.67104799984962e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109147562, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66217695, + 51.0730144 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivan Sveshnikov", + "uid": "7627423", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-04T13:10:29Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000142800839999779, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109147248, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 27.595936950000002, + 53.9275446 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T11:55:25Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109143500, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6340836, + 51.7419502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T11:27:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109142066, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6822103, + 51.1160817 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T11:23:46Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.65091200000523e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109141902, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6628005000000003, + 51.1173613 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michel Durighello", + "uid": "373549", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T09:45:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109136266, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8540178, + 50.4451494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8812896366", + "osm_id": 8812896366, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896367", + "osm_id": 8812896367, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896370", + "osm_id": 8812896370, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896369", + "osm_id": 8812896369, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896368", + "osm_id": 8812896368, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-04T09:31:10Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 1.95089400002228e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109135509, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2381507000000003, + 41.42974725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T06:11:32Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109125644, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6296288, + 51.743342 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-03T23:12:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109116613, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4452003, + -34.6199983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-03T23:04:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109116513, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.409932, + -34.6087404 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T22:03:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.33671999999937e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109115418, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3159387, + 44.4888986 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T19:19:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0484473125600096, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109110460, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.264794550000001, + 44.13458775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8812920905", + "osm_id": 8812920905, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920906", + "osm_id": 8812920906, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920904", + "osm_id": 8812920904, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956585", + "osm_id": 8812956585, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920916", + "osm_id": 8812920916, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920907", + "osm_id": 8812920907, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956541", + "osm_id": 8812956541, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956540", + "osm_id": 8812956540, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956542", + "osm_id": 8812956542, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956531", + "osm_id": 8812956531, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956543", + "osm_id": 8812956543, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956537", + "osm_id": 8812956537, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956529", + "osm_id": 8812956529, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956544", + "osm_id": 8812956544, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956524", + "osm_id": 8812956524, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956530", + "osm_id": 8812956530, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956526", + "osm_id": 8812956526, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956522", + "osm_id": 8812956522, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956528", + "osm_id": 8812956528, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956539", + "osm_id": 8812956539, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956538", + "osm_id": 8812956538, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956532", + "osm_id": 8812956532, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956525", + "osm_id": 8812956525, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956520", + "osm_id": 8812956520, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920895", + "osm_id": 8812920895, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956523", + "osm_id": 8812956523, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920897", + "osm_id": 8812920897, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896327", + "osm_id": 8812896327, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920898", + "osm_id": 8812920898, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896325", + "osm_id": 8812896325, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896326", + "osm_id": 8812896326, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956545", + "osm_id": 8812956545, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896329", + "osm_id": 8812896329, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920860", + "osm_id": 8812920860, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896342", + "osm_id": 8812896342, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956519", + "osm_id": 8812956519, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8864395419", + "osm_id": 8864395419, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956549", + "osm_id": 8812956549, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956550", + "osm_id": 8812956550, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920889", + "osm_id": 8812920889, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896328", + "osm_id": 8812896328, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956556", + "osm_id": 8812956556, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956555", + "osm_id": 8812956555, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956553", + "osm_id": 8812956553, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956536", + "osm_id": 8812956536, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896341", + "osm_id": 8812896341, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956535", + "osm_id": 8812956535, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896340", + "osm_id": 8812896340, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896349", + "osm_id": 8812896349, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896324", + "osm_id": 8812896324, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896363", + "osm_id": 8812896363, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956547", + "osm_id": 8812956547, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896361", + "osm_id": 8812896361, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896364", + "osm_id": 8812896364, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896362", + "osm_id": 8812896362, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956548", + "osm_id": 8812956548, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896347", + "osm_id": 8812896347, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896348", + "osm_id": 8812896348, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896339", + "osm_id": 8812896339, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956552", + "osm_id": 8812956552, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8978040251", + "osm_id": 8978040251, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896365", + "osm_id": 8812896365, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896338", + "osm_id": 8812896338, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896343", + "osm_id": 8812896343, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T18:51:45Z", + "reviewed_features": [], + "create": 3, + "modify": 81, + "delete": 0, + "area": 0.0000454584425400212, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109109528, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2362010000000003, + 41.43395125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-03T18:48:08Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00177764972680016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109109424, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4467777, + -34.6209872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-03T18:48:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000648066959999511, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109109420, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4860132, + -34.6337733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-03T18:46:23Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000932289214997049, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109109376, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.49277625, + -34.63494475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T18:40:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.93505020001016e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109109209, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87685825, + 51.085055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "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": "2021-08-03T13:35:14Z", + "reviewed_features": [], + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.00233322945335996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109096769, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.457001500000004, + -34.6223351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Claudia De Pus", + "uid": "10236139", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T12:10:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000804879249999742, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109092220, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7105365, + 51.07565785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "OSM_paurafi", + "uid": "10180559", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-03T09:51:21Z", + "reviewed_features": [], + "create": 5, + "modify": 7, + "delete": 0, + "area": 2.78437199992939e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109082473, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "trees", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6050752500000005, + 51.3875527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Claudia De Pus", + "uid": "10236139", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T09:38:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109081577, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7087206, + 51.0746516 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "OSM_paurafi", + "uid": "10180559", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-03T09:34:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000163784574999551, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109081330, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "AGIV10cm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56855905, + 51.301993749999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-03T06:14:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.30842400008148e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109067333, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.160514800000001, + 59.74390755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "student_ua", + "uid": "12104017", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T02:23:24Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.907455416257442, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109056486, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 30.7279276, + 49.7252917 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T23:08:57Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109054243, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "UrbISOrtho2019", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3900144, + 50.870384 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T23:04:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109054185, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3963069, + 50.8748135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T22:10:05Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0068967351336607, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109053407, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.082823699999999, + 59.75259145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "maggot27", + "uid": "118021", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T17:51:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109046140, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.1027225, + 49.6495494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brachyxanthia", + "uid": "10755639", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T16:58:20Z", + "reviewed_features": [], + "create": 0, + "modify": 31, + "delete": 0, + "area": 0.00427081942858997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109044243, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.03530775, + 47.81089195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ronx Ronquillo", + "uid": "401767", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T14:13:10Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109037200, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0605868, + 14.5882173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-02T11:12:57Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109026047, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2957055, + 52.7059387 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Scottie0001", + "uid": "12732126", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T10:55:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109024703, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 152.9884387, + -27.2001138 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-02T09:33:59Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.000243781906130012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109018389, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56591235, + 53.00447805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chris38", + "uid": "368199", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T09:05:22Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0485123282192796, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109016197, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "fr", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67738615, + 45.448324799999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alzyee", + "uid": "1219882", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T23:29:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000338804304719887, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108990193, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -81.5233446, + 41.1100443 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T18:11:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108983488, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3796182, + 50.8694293 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brachyxanthia", + "uid": "10755639", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T15:35:57Z", + "reviewed_features": [], + "create": 0, + "modify": 27, + "delete": 0, + "area": 0.0076157787665199, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108978595, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "de", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0696051, + 47.77349665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-01T12:48:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108972902, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3879984, + 52.1348582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mondstern", + "uid": "7071866", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T11:35:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108970609, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4724542, + 51.1629091 + ] + } + }, + { + "type": "Feature", + "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": "2021-08-01T11:28:33Z", + "reviewed_features": [], + "create": 7, + "modify": 5, + "delete": 0, + "area": 0.0000860720709899176, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108970381, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.78791155, + 52.83726335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peda", + "uid": "13010", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T11:12:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.67031999997287e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108969867, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6172764, + 48.6083445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peda", + "uid": "13010", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T11:07:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.18309500001618e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108969694, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.629159099999999, + 48.59670575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jemily1", + "uid": "11155676", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #crossingtime", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T10:25:20Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000224461159996975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108968481, + "host": "mapcomplete.osm.be", + "theme": "crossingtime", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48985795, + 38.3767919 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-01T08:09:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108964821, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6247168, + 43.8497082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-01T05:15:47Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00309425166402045, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108962112, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.65829945, + -34.6448309 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexander_mart", + "uid": "458554", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T02:50:14Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.000113183274879867, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108961087, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.9546981, + 56.4691525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T19:22:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111932288, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.371634, + 47.6802721 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T16:39:08Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111926055, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7239999, + 45.3812366 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mapeadora", + "uid": "1437169", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-30T15:43:52Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.0240644418553506, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111923846, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.13678404999999, + 19.578663749999997 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mapeadora", + "uid": "1437169", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-30T15:23:03Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111922919, + "host": "mapcomplete.osm.be", + "theme": "hackerspaces", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.1407799, + 19.4183425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T15:06:03Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 9.9570499995393e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111922240, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.73733715, + 48.79949255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-30T12:32:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111915607, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2797471, + 51.0601812 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T12:30:27Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.0000227305103599864, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111915525, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.7508386, + 48.781368099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-30T12:27:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111915367, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2786956, + 51.0602305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T12:18:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111914966, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2362403, + 52.7961513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-30T10:47:15Z", + "reviewed_features": [], + "create": 1, + "modify": 12, + "delete": 0, + "area": 0.0000306672251200178, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111910449, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "ca", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2162053999999998, + 41.5381835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T08:45:12Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.0053645419570502, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111904781, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.69530125, + 45.57343765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T07:55:05Z", + "reviewed_features": [], + "create": 4, + "modify": 18, + "delete": 0, + "area": 0.0000300108561499864, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111902843, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.750645750000004, + 48.78685265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T06:42:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 9.98399429998969e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111899797, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.74606315, + 48.78382365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T06:17:13Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111898754, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7323385, + 45.6096481 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T06:12:35Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.00000988816490998769, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111898556, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.74761135, + 48.78445725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-29T19:49:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111884103, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toerisme_vlaanderen", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7323039, + 45.609657 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-29T17:59:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0361427173574415, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111879822, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "observation_towers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3058445499999998, + 51.0178277 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-29T17:32:50Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111878737, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.7494316, + 48.7860225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-29T16:57:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111877207, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toerisme_vlaanderen", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4503636, + 51.0929136 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-29T16:29:44Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000196593677399919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111875924, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4483777, + 51.08788645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #verkeerdeborden", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-29T15:37:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000119850265600227, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111873523, + "host": "mapcomplete.osm.be", + "theme": "verkeerdeborden", + "imagery": "Stamen.TonerLite", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46107525, + 51.0952097 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dintrans_g", + "uid": "237777", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-29T14:50:37Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111871547, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.665468, + -33.4572197 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Joel Schwaber", + "uid": "14199687", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-29T00:57:00Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 15365.8425037475, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111841662, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 38.660928, + 6.0965507500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-28T21:23:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111838187, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5936089, + -33.5332277 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-28T15:23:10Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111824465, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6130686, + 45.8765353 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-6812152696", + "name": "Fietsbieb Brugge", + "osm_id": 6812152696, + "reasons": [ + 43 + ], + "version": 9, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #bicyclelib", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-28T14:52:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111823129, + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1977097, + 51.2005778 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-28T13:48:18Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000154828272479988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111820434, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2430664499999997, + 51.206751100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-28T13:47:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.10246399994684e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111820388, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2321896, + 51.2045129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-28T12:36:51Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111817437, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5205093, + 53.2363705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-28T08:49:20Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.0370137745960002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111806492, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6676468, + 47.4080594 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Bbase", + "uid": "695813", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-28T08:25:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111805436, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.239645, + 51.223322 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.10.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-28T07:27:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111802776, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7394553, + 51.0539251 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-28T02:09:41Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 5.95000000158164e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111793926, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.60341855, + -33.423708399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-27T18:50:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111783442, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.79261, + -34.2373596 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-27T14:01:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111770813, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.366001, + -34.6404102 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wiederholen", + "uid": "14189394", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-27T11:59:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111765464, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.097054, + 40.6153451 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "landscapemapper", + "uid": "220206", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-27T10:52:44Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.48762637252551, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111762075, + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.30360815, + 46.90475015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-27T10:14:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111760418, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3845609, + 52.1279133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-27T10:13:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111760411, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.9531973, + 46.2731418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-27T08:13:53Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111754902, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.9531973, + 46.2731418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "brymche", + "uid": "491790", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-27T02:54:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111745566, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -120.6753014, + 35.2439797 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "numist", + "uid": "7970679", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-27T02:08:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111745072, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.2583896, + 37.8367212 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "OxfordEmma", + "uid": "14185662", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-26T22:26:23Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111742325, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.6730476, + 35.779029 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-26T21:15:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111740952, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6900597, + 44.3128481 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bent42", + "uid": "14185362", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-26T20:42:31Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00510810563880336, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111740042, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -105.084294, + 40.453581549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-26T18:18:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111735178, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1084606, + 46.3684662 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-26T16:46:52Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111731202, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1096324, + 46.3667337 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-26T13:52:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00432793048654127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111723291, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.11849459999999, + 22.36899025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TheAdventurer64", + "uid": "8466505", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-26T06:22:59Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000065408900399966, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111708429, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -155.064008, + 19.69584475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-25T20:02:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000554009143080062, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111700174, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8301813, + 50.88715015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CjMalone", + "uid": "6816132", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-25T19:28:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.03360999992723e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111699476, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "imagery": "osm", + "language": "en", + "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1947999, + 50.63098505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T14:26:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111690076, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.288795, + 51.3038705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T12:59:46Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111686997, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6421499, + 46.3340024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T12:40:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111686390, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0795702, + 51.4584493 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T11:30:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111684215, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5903299, + 52.2821555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T11:19:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111683915, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5890925, + 52.2812482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T10:55:44Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 4.86648400001139e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111683232, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9907015, + 48.4982609 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T10:45:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.44562600002161e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111682968, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9913257, + 48.49856345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T10:43:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.98347950001622e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111682920, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99118215, + 48.49843975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "h05ch1", + "uid": "6835997", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-25T10:23:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111682191, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9636555, + 50.3475965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T10:16:48Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000031717603499897, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111681971, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99255035, + 48.498836749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T21:35:26Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111667829, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5897075, + 50.7949768 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T21:20:48Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00043128769431981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111667475, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5777395, + 50.803994599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T18:27:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111661888, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6696884, + 51.5499412 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "leofra31", + "uid": "8336126", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T18:20:54Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.000011408041399994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111661657, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31732235, + 43.588229 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Semako", + "uid": "4240243", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T18:12:57Z", + "reviewed_features": [], + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.000473278357399985, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111661403, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.39957595, + 52.1619224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #verkeerdeborden", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T17:12:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000689595720000721, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111658787, + "host": "mapcomplete.osm.be", + "theme": "verkeerdeborden", + "imagery": "Stamen.TonerLite", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49047405, + 51.0951572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T15:30:43Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.93361999970968e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111653531, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.41885495, + 46.561138299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9120402882", + "osm_id": 9120402882, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + }, + { + "url": "node-9120416768", + "osm_id": 9120416768, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + }, + { + "url": "node-9120402883", + "osm_id": 9120402883, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T13:59:50Z", + "reviewed_features": [], + "create": 6, + "modify": 8, + "delete": 0, + "area": 0.0000179470749299955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111649505, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6658474500000002, + 51.54911385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "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": "2021-09-24T12:55:31Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000650884575509889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111646756, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.61053645, + -34.64744705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #verkeerdeborden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T11:50:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111643984, + "host": "mapcomplete.osm.be", + "theme": "verkeerdeborden", + "imagery": "Stamen.TonerLite", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4901089, + 51.094868 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T11:38:20Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111643468, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6138153, + 51.5031764 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T11:07:00Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.19999999978036e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111641876, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.610657, + 51.4991967 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T09:29:23Z", + "reviewed_features": [], + "create": 4, + "modify": 19, + "delete": 0, + "area": 0.00756435561130015, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111637283, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3632418, + 50.83772005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T07:56:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111633229, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.4189789, + 46.5611344 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T06:40:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00189969135276055, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111629953, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.1910599, + 22.307932100000002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #verkeerdeborden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T19:47:10Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000114259334399982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111616253, + "host": "mapcomplete.osm.be", + "theme": "verkeerdeborden", + "imagery": "Stamen.TonerLite", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4888558, + 51.0936721 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T19:44:58Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111616148, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "imagery": "osm", + "language": "en", + "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6024991, + 51.4638086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T17:44:13Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000141849799999494, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111610177, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60364305, + 51.4641186 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-23T15:37:52Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000162346352139977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111602335, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.18166635, + 22.2805317 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9117338545", + "osm_id": 9117338545, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T14:46:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111598470, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "personal", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3720879, + 51.3659288 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T13:30:01Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 5.28228000011274e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111593064, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6025419999999997, + 51.46369665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "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": "2021-09-23T13:17:23Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00133982425584001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111592346, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.68451145, + -34.656905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T12:34:57Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.00360515847549995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111590326, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5761544, + 51.43289025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-23T11:17:47Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00190809654048005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111586791, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.19077275, + 22.307541999999998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T11:15:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111586701, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3765176, + 51.3491502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T08:08:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111578266, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5321138, + 53.2403563 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-23T02:43:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111567998, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.1731428, + 22.2804844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T00:20:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000466655286997844, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111566313, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.37193415, + 47.68268485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclenodes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-22T16:45:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111552463, + "host": "mapcomplete.mobanisto.de", + "theme": "cyclenodes", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.7164477, + 51.6949225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-22T16:30:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.32495999991828e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111551829, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.847348200000001, + 37.023658499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "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": "2021-09-22T13:38:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111544245, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5959485, + -34.6446457 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-22T11:39:45Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000173651840619993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111539451, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56047135, + 53.2206259 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-22T09:38:55Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111533589, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2031691, + 51.2042501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tordans", + "uid": "11881", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-22T03:40:06Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000252929039998671, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111520288, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4231534, + 52.4804849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-22T00:07:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111518050, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.688298, + -32.8254292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Conrad Westermark", + "uid": "10290265", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-21T20:32:08Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111513975, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.9122179, + 60.1895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-21T20:09:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111513314, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2562975, + 44.5029373 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-21T18:17:09Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.85225939999695e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111509175, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5665994, + 53.01434795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-21T16:41:07Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00000575911374000025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111505223, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5686684500000005, + 53.019527100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-21T12:34:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111494589, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4072711, + 49.007261 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-21T11:05:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111490211, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4072711, + 49.007261 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-21T10:41:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.10268160001843e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111488940, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.1334147, + 54.0869876 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "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": "2021-09-21T00:26:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111470131, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7202242, + -34.6657032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T19:00:13Z", + "reviewed_features": [], + "create": 3, + "modify": 41, + "delete": 0, + "area": 0.000680783375360008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111463022, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61122855, + 52.3022347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T17:23:15Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 7.91999999880348e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111459525, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6020383, + 52.2972284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T15:01:56Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000434290526489971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111453809, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61146525, + 52.30648665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T14:47:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111453185, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7404478, + 51.0363849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T13:21:18Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 9.95430600020008e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111449737, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.597492750000001, + 52.2989521 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "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": "2021-09-20T13:20:18Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.00378095789904049, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111449699, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6667992, + -34.653112300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T12:45:57Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000409641941260097, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111448328, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.367052000000001, + 47.725641350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T12:39:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111448079, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3911404, + 47.720274 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-20T12:28:03Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000513644512800055, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111447671, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3738234, + 47.723836250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-20T12:15:05Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.000460423505359863, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111447194, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3696436, + 47.72581625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T09:35:02Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111440442, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6275044, + 52.3032591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ilja_space", + "uid": "14124839", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T18:39:02Z", + "reviewed_features": [], + "create": 10, + "modify": 32, + "delete": 0, + "area": 0.0000174020732100224, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111420509, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13762665, + 51.141586849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-19T16:28:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111416193, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.222659, + 51.209238 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-19T14:55:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111412568, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5245171, + 52.9929022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-19T12:41:09Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111407284, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.222659, + 51.209238 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-19T11:34:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111404954, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29927, + 50.6150846 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-19T11:24:23Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.91036409999298e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111404648, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73192415, + 51.05730045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T11:22:16Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 1.66294000004392e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111404567, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0479108, + 50.679290449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "yzan", + "uid": "14138680", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T10:29:54Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111402618, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.4050047, + 50.0729858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T10:16:39Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000393609143340034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111402136, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7444672, + 51.03556035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ilja_space", + "uid": "14124839", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T10:01:37Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111401625, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2321506, + 51.2093851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ilja_space", + "uid": "14124839", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T09:44:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111400987, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1564577, + 51.1262115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ilja_space", + "uid": "14124839", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T09:21:17Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111400257, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0930744, + 51.1192647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-19T08:43:06Z", + "reviewed_features": [], + "create": 21, + "modify": 20, + "delete": 0, + "area": 0.000035988403860022, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111398954, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.238752999999999, + 52.77832035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T22:20:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.21744199987408e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111390901, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73583105, + 51.037486200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T21:51:44Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111390442, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "UrbISOrtho2020", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2705435, + 50.8277022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T21:11:23Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111389713, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5571696, + 49.6103276 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AceMolloy", + "uid": "6111825", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T20:43:46Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111389141, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.7881961, + 52.2435555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T19:56:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111387954, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2027721, + 51.1990855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T18:50:03Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111386359, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2034172, + 51.202141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T18:04:25Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111385266, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2618853, + 50.7487861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T18:02:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111385238, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2677808, + 50.7512502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T16:55:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111383281, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.4273669, + 41.7288688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T14:25:12Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111377814, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2677808, + 50.7512502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T13:23:45Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000102958774999892, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111375576, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60086675, + 52.29308145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T13:21:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111375481, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6023348, + 52.2921324 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T12:03:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111373023, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2027721, + 51.1990855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T10:51:23Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000248121610080094, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111370272, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6167549999999995, + 52.299521299999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Anne-Marie Hannuschke", + "uid": "14134184", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T10:37:49Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.000576460037500006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111369675, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.80807595, + 51.8142208 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ilja_space", + "uid": "14124839", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T10:03:37Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111368378, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2354994, + 51.2104591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T10:00:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.08731500004006e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111368251, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6249436500000005, + 52.30480665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T18:11:23Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000201788004499942, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111348820, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6075547500000003, + 50.855526850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T16:59:40Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.0000574193419800217, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111346420, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6022241, + 52.293237250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T15:55:52Z", + "reviewed_features": [], + "create": 1, + "modify": 20, + "delete": 0, + "area": 0.0000152532364100116, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111344234, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.602426550000001, + 52.29154665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T15:23:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.42600079998995e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111342876, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72173045, + 51.1518477 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T15:13:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111342467, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.721552, + 51.1500222 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T14:02:22Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000169926944000477, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111339749, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6244081999999995, + 52.304216499999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T14:01:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.39859670001215e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111339700, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62427145, + 52.30416055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "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": "2021-09-17T13:39:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111338740, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5981891, + -34.6451312 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T11:49:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111333976, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7200416, + 51.1503089 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T11:47:48Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111333922, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7200701, + 51.1503336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-17T11:34:55Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111333368, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2451053, + 49.6538075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T08:33:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111325851, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1805232, + 50.8088384 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T07:15:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111322697, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9757455, + 50.5237343 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s8evq", + "uid": "3710738", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #verkeerdeborden", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-17T06:48:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111321516, + "host": "mapcomplete.osm.be", + "theme": "verkeerdeborden", + "imagery": "Stamen.TonerLite", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3898126, + 51.0926497 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T06:30:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.6997960000077e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111320770, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7047089, + 51.04757525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T06:03:32Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111319839, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.739756, + 51.0363729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T02:31:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.45933600013677e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111314842, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.602050650000001, + 52.2911638 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T02:21:12Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.48910999975422e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111314701, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59990555, + 52.2954017 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "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": "2021-09-17T00:30:20Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 1.86345600007665e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111313536, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7295339, + -34.66431995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-16T14:27:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.2989299999879e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294697, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09973265, + 50.493094 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-16T14:27:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294660, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0993594, + 50.4930008 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-16T14:26:24Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294637, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0997725, + 50.4935417 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-16T14:23:54Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.1747000003868e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294545, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0994042, + 50.49339665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-16T14:19:29Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294320, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0994425, + 50.4933694 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "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": "2021-09-16T14:19:08Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00554429369591911, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294300, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6757754, + -34.6524021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-16T14:15:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.9151090000344e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294140, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10041405, + 50.493437 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-16T11:40:03Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000122089108799861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111286975, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7512498, + 51.0415541 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-15T19:47:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111260346, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.3707655, + -34.6402119 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Firefighter-112", + "uid": "14014754", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-15T19:37:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111259977, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5769486, + 51.9740711 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-15T15:20:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111250813, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.602631, + -33.4140376 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-15T12:06:15Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111242072, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7092295, + 51.0253951 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-15T09:52:42Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.000368517871280142, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111235562, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3591232, + 50.85652185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-15T06:48:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000561708768000201, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111226938, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.77708075, + 51.066343200000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-14T23:52:58Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111218166, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9260321, + 51.1356921 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DidierLmn", + "uid": "4201907", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-14T22:35:22Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000138605334999847, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111217068, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45765845, + 51.20943435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-14T19:42:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111212256, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3588331, + 44.544683 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-14T13:25:04Z", + "reviewed_features": [], + "create": 0, + "modify": 39, + "delete": 0, + "area": 0.000468470874079993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111196945, + "host": "tauvic.github.io", + "path": "MapComplete/dist/", + "theme": "personal", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.607712599999999, + 52.292219900000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-14T13:16:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111196543, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7405763, + 51.0356476 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-14T12:15:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111193678, + "host": "tauvic.github.io", + "path": "MapComplete/dist/", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6019223, + 52.2947021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-14T12:11:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111193497, + "host": "tauvic.github.io", + "path": "MapComplete/dist/", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6145472, + 52.3012908 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-14T11:33:03Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111191715, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4189665, + 51.2179647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-14T11:03:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111190227, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7405658, + 51.0356252 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-14T02:15:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000269712340800036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111170420, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60307605, + 52.2960336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-14T02:06:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.72245050001667e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111170319, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59786555, + 52.29448035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-14T02:01:36Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000119190094800368, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111170254, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.3833071, + 47.6779674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-09-14T00:05:28Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.0003243808275, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111168885, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.587044899999995, + -34.643569850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-13T20:09:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111163792, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1243227, + 50.4462767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-13T18:47:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000105748664000725, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111160670, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59977005, + 52.295202599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-13T14:06:36Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.00000389116733999269, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111147907, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59847985, + 52.2945455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-09-13T13:33:33Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00122050708857021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111146318, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.614631450000005, + -34.64916825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9087844364", + "name": "E. Saunders", + "osm_id": 9087844364, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "shop": "shoemaker" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-13T12:18:06Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111142872, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2482383, + 51.2085151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-13T10:43:30Z", + "reviewed_features": [], + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.000147833340000064, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111137609, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2965068, + 50.865763 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-13T10:10:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111135802, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.18111, + 22.2797 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-13T10:06:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111135600, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.1815168, + 22.2796347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-13T09:44:25Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111134364, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3754393, + 50.8682106 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-13T02:23:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000487171737000404, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111117005, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.31467995, + 38.8908991 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.9", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T19:59:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.7848005000007e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111111029, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.599682850000001, + 52.28829195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T19:45:05Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000448694579999538, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111110599, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60182, + 52.29399895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T16:23:01Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 7.06199999818348e-11, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111103404, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.43700075, + 51.814196499999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.9.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-12T16:05:01Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000071153878000016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111102661, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.1773298, + 22.280059549999997 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T15:03:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111100315, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2373088, + 45.4181022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T14:06:26Z", + "reviewed_features": [], + "create": 27, + "modify": 16, + "delete": 0, + "area": 0.00143717660640012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111098043, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5123467, + 51.8756057 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9084064039", + "name": "'t Spel op de wagen VZW", + "osm_id": 9084064039, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "shop": "board_games" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.9", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T13:56:42Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111097646, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2366431, + 51.2111465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T13:38:32Z", + "reviewed_features": [], + "create": 9, + "modify": 6, + "delete": 0, + "area": 0.0000206407320899949, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111096899, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.54204815, + 51.87533655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T13:28:42Z", + "reviewed_features": [], + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.00000309984012001413, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111096467, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5410593, + 51.873547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T13:04:17Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111095368, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.7714675, + 43.4689747 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T12:50:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.83227270000483e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111094818, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.22252995, + 45.49494115 + ] + } + }, + { + "type": "Feature", + "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": "2021-09-12T12:49:54Z", + "reviewed_features": [], + "create": 7, + "modify": 2, + "delete": 0, + "area": 0.00223056118529997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111094780, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7667274, + 53.130365350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T12:23:15Z", + "reviewed_features": [], + "create": 9, + "modify": 3, + "delete": 0, + "area": 0.000392439769680074, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111093714, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5438787, + 51.886229400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T11:45:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.000145964397439952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111092379, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.336202499999999, + 44.495406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Silence37", + "uid": "12430749", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-12T08:16:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111085979, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.248914, + 48.1781821 + ] + } + }, + { + "type": "Feature", + "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": "2021-09-12T08:06:32Z", + "reviewed_features": [], + "create": 286, + "modify": 289, + "delete": 0, + "area": 0.00685497847117954, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111085753, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.83795215, + 52.8415216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T07:20:14Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000517564192500015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111084753, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60335595, + 52.29326665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T07:03:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111084433, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6065284, + 52.2961897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Louisbe", + "uid": "14095547", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-11T19:59:53Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.38639999936431e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111076012, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8187253000000005, + 51.0790189 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-11T13:40:12Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111062799, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9359699, + 49.9109289 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-11T08:58:09Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.85120400010688e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111053808, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6066477, + 52.2962585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-11T08:00:00Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000439153371400009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111052222, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6192972999999995, + 52.29332615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-10T20:07:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111040403, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4196289, + 51.1951284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.9", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-10T18:14:45Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000168458115299605, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111036631, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "osm", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18857285, + 50.97444055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947006710", + "osm_id": 3947006710, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007267", + "osm_id": 3947007267, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007313", + "osm_id": 3947007313, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007351", + "osm_id": 3947007351, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007364", + "osm_id": 3947007364, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007428", + "osm_id": 3947007428, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007441", + "osm_id": 3947007441, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007426", + "osm_id": 3947007426, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007128", + "osm_id": 3947007128, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811649288", + "osm_id": 8811649288, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811664994", + "osm_id": 8811664994, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811664975", + "osm_id": 8811664975, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811664969", + "osm_id": 8811664969, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811649314", + "osm_id": 8811649314, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811649313", + "osm_id": 8811649313, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9080809955", + "osm_id": 9080809955, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811649302", + "osm_id": 8811649302, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811649262", + "osm_id": 8811649262, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811649307", + "osm_id": 8811649307, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8869396149", + "osm_id": 8869396149, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426072", + "osm_id": 8745426072, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-10T17:03:37Z", + "reviewed_features": [], + "create": 4, + "modify": 62, + "delete": 0, + "area": 0.0000565605371199839, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111033920, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2300879, + 41.4387478 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-10T16:59:37Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.76246000003997e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111033762, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2276851, + 41.440543250000005 + ] + } + }, + { + "type": "Feature", + "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": "2021-09-10T16:44:23Z", + "reviewed_features": [], + "create": 47, + "modify": 46, + "delete": 0, + "area": 0.000261066451900016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111033021, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.813769350000001, + 52.838228799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.9", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-10T16:39:40Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000635132937600115, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111032813, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6997292, + 51.0470485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-10T16:18:11Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111031895, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0490357, + 51.1204316 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-09-10T13:09:27Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0049350058336407, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111023660, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6575042, + -34.6492414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-10T12:16:59Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 1.40894999961419e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111021565, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13693735, + 50.70193655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-10T10:31:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111017331, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7881224, + 50.8684567 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-10T06:06:43Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111005136, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7412524, + 51.0369889 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-10T03:19:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111000887, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.3982218, + -36.3902178 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.7", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-09T21:08:42Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00698536033193953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110995306, + "host": "127.0.0.1:1234", + "theme": "observation_towers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1591558500000003, + 51.2615779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.6", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-09T17:56:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110988806, + "host": "127.0.0.1:1234", + "theme": "observation_towers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0015773, + 51.2654787 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946965585", + "osm_id": 3946965585, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965538", + "osm_id": 3946965538, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966195", + "osm_id": 3946966195, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965357", + "osm_id": 3946965357, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965267", + "osm_id": 3946965267, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965753", + "osm_id": 3946965753, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946997496", + "osm_id": 3946997496, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965557", + "osm_id": 3946965557, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966234", + "osm_id": 3946966234, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007569", + "osm_id": 3947007569, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007440", + "osm_id": 3947007440, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007455", + "osm_id": 3947007455, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007396", + "osm_id": 3947007396, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006737", + "osm_id": 3947006737, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007695", + "osm_id": 3947007695, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007811", + "osm_id": 3947007811, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077500503", + "osm_id": 9077500503, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077517802", + "osm_id": 9077517802, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077502680", + "osm_id": 9077502680, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077536621", + "osm_id": 9077536621, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077540208", + "osm_id": 9077540208, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077512782", + "osm_id": 9077512782, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077520184", + "osm_id": 9077520184, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077538844", + "osm_id": 9077538844, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077540213", + "osm_id": 9077540213, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077553939", + "osm_id": 9077553939, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077548543", + "osm_id": 9077548543, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007850", + "osm_id": 3947007850, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077525869", + "osm_id": 9077525869, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947008065", + "osm_id": 3947008065, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007365", + "osm_id": 3947007365, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007059", + "osm_id": 3947007059, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-09T17:46:07Z", + "reviewed_features": [], + "create": 15, + "modify": 44, + "delete": 0, + "area": 0.0000189097615800074, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110988456, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2268138, + 41.441957849999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tmdq", + "uid": "8751391", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-09T15:43:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110983393, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7192157, + 47.2388538 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-09T14:43:13Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110980752, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7388545, + 51.0367951 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-09-09T13:12:09Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0060069712878296, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110976587, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.65075335, + -34.652568349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "The_JF", + "uid": "4543415", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-09T10:22:48Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.0000227272082400029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110967312, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4931938, + 53.8088346 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-09T09:41:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110964829, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3861078, + 43.8555804 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-09T08:17:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110959933, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4177485, + 43.8529857 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-09T07:40:41Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000692817980400051, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110957825, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.71803435, + 51.0309619 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-09T07:24:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110956858, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "UrbISOrtho", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3920824, + 50.873837 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-5516568962", + "osm_id": 5516568962, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "amenity": "binoculars" + } + }, + { + "url": "node-5516568963", + "osm_id": 5516568963, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "amenity": "binoculars" + } + }, + { + "url": "node-8162217310", + "osm_id": 8162217310, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.6", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T22:33:50Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.114038945112611, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110940675, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "binoculars", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53420775, + 51.20706355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T21:35:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110939442, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.34281245, + 47.6102151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-08T20:04:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110936930, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.663269, + 37.1183458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-08T15:21:36Z", + "reviewed_features": [], + "create": 3, + "modify": 14, + "delete": 0, + "area": 9.48144810003952e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110926703, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73584125, + 51.03691565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-09-08T13:14:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110920216, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7597403, + -34.6588894 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-08T13:02:45Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110919484, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2506443, + -39.8106972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.6", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-08T11:40:37Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.2342523877911, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110914135, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64607215, + 51.1142841 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T10:16:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110908896, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5104322, + 43.8947941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.6", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T09:43:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110906828, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2243449, + 51.2102969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T08:16:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.02382449998736e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110901893, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.70479125, + 51.04415735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.6", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-08T08:06:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00855123868103916, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110901351, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3430155, + 50.865627599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T08:03:01Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000193197922000019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110901164, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.70473285, + 51.046819 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T07:59:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000103193837999929, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110900957, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7041942, + 51.04957605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T07:48:23Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000175424576200285, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110900277, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7004068, + 51.050445350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T07:37:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000244958767300381, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110899591, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.696893150000001, + 51.05259205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-08T00:06:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000313159781000457, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110883035, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42825925, + 50.926792750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T21:37:46Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000769701501900307, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110880524, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7411394500000004, + 51.038006249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T20:31:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110878740, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.3707589, + -34.6402759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T19:46:06Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110877207, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4443896, + 51.1126056 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T19:08:29Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000116966749959935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110875916, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.69580345, + 51.0544985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T19:00:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0142127796557983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110875675, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.32306545, + 44.8543254 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947006984", + "osm_id": 3947006984, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006424", + "osm_id": 3947006424, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006673", + "osm_id": 3947006673, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006284", + "osm_id": 3947006284, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946997496", + "osm_id": 3946997496, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946997546", + "osm_id": 3946997546, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966429", + "osm_id": 3946966429, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006574", + "osm_id": 3947006574, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966249", + "osm_id": 3946966249, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965538", + "osm_id": 3946965538, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966280", + "osm_id": 3946966280, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966186", + "osm_id": 3946966186, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965585", + "osm_id": 3946965585, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965557", + "osm_id": 3946965557, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966393", + "osm_id": 3946966393, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966212", + "osm_id": 3946966212, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9071410202", + "osm_id": 9071410202, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965581", + "osm_id": 3946965581, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965397", + "osm_id": 3946965397, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966399", + "osm_id": 3946966399, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965479", + "osm_id": 3946965479, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965507", + "osm_id": 3946965507, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965318", + "osm_id": 3946965318, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964659", + "osm_id": 3946964659, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965282", + "osm_id": 3946965282, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966653", + "osm_id": 3946966653, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965113", + "osm_id": 3946965113, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965139", + "osm_id": 3946965139, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455435", + "osm_id": 8770455435, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962237", + "osm_id": 3946962237, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964925", + "osm_id": 3946964925, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964944", + "osm_id": 3946964944, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965060", + "osm_id": 3946965060, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962877", + "osm_id": 3946962877, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946961992", + "osm_id": 3946961992, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965070", + "osm_id": 3946965070, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9071637293", + "osm_id": 9071637293, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9071664438", + "osm_id": 9071664438, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833127483", + "osm_id": 8833127483, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T18:46:21Z", + "reviewed_features": [], + "create": 8, + "modify": 66, + "delete": 0, + "area": 0.0000393272894499888, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110875109, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2274185500000003, + 41.439082049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T18:17:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000504035151999883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110874001, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.572461499999999, + 53.0218033 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T17:54:50Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110873102, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7412927, + 51.0361053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T17:47:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110872782, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2120516, + 51.191464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T17:45:56Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.82306300005717e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110872737, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73638155, + 51.036820250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T16:47:37Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110870231, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2927924, + 50.8617505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T14:36:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110864432, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2081858, + 51.1869804 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T12:58:39Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000100356983999769, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110859989, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5685417, + 53.010605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T12:47:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110859395, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5721604, + 53.0264806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T12:25:34Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00104350498344022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110858186, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5571519, + 53.0002444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T11:16:48Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110853884, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7796401, + 51.2028367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T11:16:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.09588799999295e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110853877, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7264895, + 51.02642025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T11:10:23Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.13893897884022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110853474, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57686335, + 51.0315187 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user_5589", + "uid": "5589", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T09:53:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.01703999995068e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110848487, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5346039, + 52.29394635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T09:36:42Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000161986067499989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110847424, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.72945485, + 51.03407025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T09:34:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110847304, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.5188726, + 52.1400304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T09:10:05Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000175388763599723, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110845596, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7613027, + 51.0490919 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T08:48:47Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000109441648799927, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110844164, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "osm", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7846677, + 51.0498743 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T08:08:40Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.0000345077735400053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110841379, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.80907285, + 51.052902200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T07:57:42Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110840665, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7007618, + 51.0268819 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T06:57:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.50575300003781e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110836770, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7948526, + 51.06367425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T03:45:57Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000047853760079965, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110827103, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.56078350000001, + 45.47967425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T20:37:34Z", + "reviewed_features": [], + "create": 0, + "modify": 27, + "delete": 0, + "area": 0.00037956400574994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110820210, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56660235, + 53.01175765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T19:23:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.80152000041448e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110818057, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "parkings", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.560969500000001, + 53.0193444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-06T18:56:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.69960859998512e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110817161, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90264495, + 51.096994300000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T16:47:15Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000137018253999756, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110812835, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.701775699999999, + 51.04657295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T16:42:09Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000257842260000314, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110812653, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.70305715, + 51.0450472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T16:19:32Z", + "reviewed_features": [], + "create": 2, + "modify": 26, + "delete": 0, + "area": 0.000062150671440028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110811749, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.70720805, + 51.042709 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T16:11:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000545410377000658, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110811416, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.713532050000001, + 51.03857605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T15:45:08Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000608361991999835, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110810252, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.719508000000001, + 51.0342785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-06T15:38:59Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000394700899999859, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110810008, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7194516, + 51.0330962 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CanadaRunner", + "uid": "1261175", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T15:38:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110809973, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2545995, + 43.7735024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T15:09:04Z", + "reviewed_features": [], + "create": 2, + "modify": 16, + "delete": 0, + "area": 0.0000977295044399741, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110808804, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.720374450000001, + 51.0308423 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-06T13:22:18Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.000274893963619906, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110804202, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4033423, + 51.21519065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-09-06T13:12:39Z", + "reviewed_features": [], + "create": 3, + "modify": 14, + "delete": 0, + "area": 0.00398919841756018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110803772, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.68874925, + -34.6555771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T09:41:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.74573999984628e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110790669, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7255606, + 51.02716415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T08:21:55Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000171915869999785, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110786060, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "osm", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.71291975, + 51.038539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T08:06:48Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000193119097400122, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110785141, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.707423949999999, + 51.041862699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lippmann Richard", + "uid": "14059700", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T20:55:28Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00141716620311003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110765328, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.016779249999999, + 49.44191805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lippmann Richard", + "uid": "14059700", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T20:42:37Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.65172999973374e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110764955, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.95762445, + 49.44181465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lippmann Richard", + "uid": "14059700", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T20:35:17Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110764735, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.9615713, + 49.4172352 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T19:12:15Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.62328099998924e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110762517, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6840133, + 51.058046649999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T18:55:48Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000662334669000326, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110762005, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.68242145, + 51.053932450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T18:28:41Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.0000130067027600068, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110761238, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.685504, + 51.05625085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T17:28:16Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110759123, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7245505, + 51.0572368 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T16:23:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000196750987050088, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110756723, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.70643085, + 51.05848425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-05T15:59:20Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 0.0000220068164799928, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110755864, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7457967, + 51.0333371 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-05T15:39:57Z", + "reviewed_features": [], + "create": 9, + "modify": 19, + "delete": 0, + "area": 0.00000862833375001486, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110754992, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74598115, + 51.03209115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-05T15:16:48Z", + "reviewed_features": [], + "create": 7, + "modify": 13, + "delete": 0, + "area": 0.00000908866602000282, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110753945, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74534815, + 51.03399159999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-05T14:49:52Z", + "reviewed_features": [], + "create": 9, + "modify": 16, + "delete": 0, + "area": 0.0000084567131999992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110752801, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7460294000000003, + 51.03570985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T14:44:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110752554, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7377907, + 51.0501288 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T14:38:43Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110752287, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8507381, + 52.1688877 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-05T14:16:47Z", + "reviewed_features": [], + "create": 7, + "modify": 14, + "delete": 0, + "area": 0.00000605937354000025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110751439, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7447902500000003, + 51.0381812 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T13:52:30Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110750569, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3803906, + 50.8044363 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T12:41:33Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110748089, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3807313, + 50.8044092 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T10:35:12Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.00000886822974001026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110743699, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8683133, + 51.14763175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T10:07:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110742775, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0870298, + 47.2684337 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T09:46:31Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000396567288000889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110742143, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.867534299999999, + 51.1477238 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skimua", + "uid": "200631", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-05T06:59:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110737915, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "CartoDB.VoyagerNoLabels", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 37.9934373, + 48.629113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T20:34:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110730420, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.8171257, + 41.5804011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-04T20:01:43Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110729653, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "AGIV10cm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5551392, + 50.7873265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T18:27:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110727164, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.5170975, + 41.6336276 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-04T17:38:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110725856, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5583292, + 50.7859898 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-04T17:35:13Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0803733066865325, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110725782, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97977185, + 50.82081355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T16:18:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000424209953920002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110723272, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.883519, + 51.0706245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-04T16:09:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 3.98279579998516e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110722942, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6036698, + -33.42347555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T16:07:07Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000165831796400302, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110722840, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9975276, + 51.1568565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T15:43:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000450846970001541, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110722032, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.872297150000001, + 51.1480966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T15:43:08Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110722003, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0020165, + 51.1579367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T15:18:07Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000329944019999479, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110720968, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8668005, + 51.147540899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T15:10:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000108000844000443, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110720700, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8645727, + 51.1466209 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T15:03:01Z", + "reviewed_features": [], + "create": 5, + "modify": 19, + "delete": 0, + "area": 0.00037129628909992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110720419, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.986849250000001, + 51.1640455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T14:56:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000289438246000498, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110720183, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.86232935, + 51.1453744 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T14:02:08Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110717930, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7321484, + 51.0568936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T12:12:01Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110714072, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2435899, + 50.7387824 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T12:06:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.66646000000056e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110713861, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.84590575, + 51.1287744 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T11:18:27Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.00000348327417001036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110712149, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84308485, + 51.184233649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T10:28:26Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.11978800008135e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110710345, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hackerspaces", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7325207000000002, + 51.06026455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T09:18:30Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0509073946256099, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110708077, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.21326055, + 44.66194855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T07:16:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000348327417001036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110704657, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84308485, + 51.184233649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T06:38:35Z", + "reviewed_features": [], + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.000160268268869612, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110703785, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87470965, + 51.08918315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vt100", + "uid": "15110", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-04T06:23:36Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110703458, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.4152934, + 48.1750876 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-04T00:07:49Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 2.12880859997284e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110699141, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.60329390000001, + -33.42342925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-03T20:21:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110694757, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6089529, + -33.4241673 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-03T18:43:03Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000957243906000629, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110691827, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.682000200000001, + 51.05423585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-03T16:51:28Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000935276922000714, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110687671, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.68263655, + 51.054767 + ] + } + }, + { + "type": "Feature", + "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": "2021-09-03T15:48:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110684887, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4368687, + 51.5978061 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-03T15:07:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110683238, + "host": "127.0.0.1:1234", + "theme": "food", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2109186, + 51.1903969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-03T14:04:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110680597, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4315751, + 46.9513242 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-09-03T13:26:51Z", + "reviewed_features": [], + "create": 5, + "modify": 10, + "delete": 0, + "area": 0.00387745492388959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110679083, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.689529449999995, + -34.65453685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-03T08:41:43Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000531952050960078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110662737, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6902668, + 51.05309345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-03T06:04:02Z", + "reviewed_features": [], + "create": 24, + "modify": 17, + "delete": 0, + "area": 0.00048740460912007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110654121, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.4620432, + 51.8957561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-09-03T00:37:06Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000367648099399683, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110644009, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4973733, + -34.63561565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T23:06:58Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000209359727210013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110642716, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5621246499999994, + 53.00673015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-02T20:55:00Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110639949, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6339441, + -33.4419239 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T19:43:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110637847, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4066514, + 50.9597592 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-02T18:27:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110635049, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2587734, + 47.9578355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CanadaRunner", + "uid": "1261175", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T18:17:14Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110634587, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2602487, + 43.7648917 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T17:40:28Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.0000245339494400099, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110633135, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6772487, + 51.06275835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T17:35:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.79731519998488e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110632891, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.68093165, + 51.0620318 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T17:30:05Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000238537285999621, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110632695, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6835999, + 51.06100345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T17:22:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.08923399998667e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110632315, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.68221805, + 51.0618388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T17:15:12Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.46870440000868e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110632011, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6844327, + 51.0594761 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-02T16:32:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.33376899989426e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110630108, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.68134005, + 51.06253125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T14:25:03Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000493254268000971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110623120, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.67493795, + 51.0635204 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-09-02T13:11:28Z", + "reviewed_features": [], + "create": 5, + "modify": 15, + "delete": 0, + "area": 0.00659745437027957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110619917, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.658026899999996, + -34.65196215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T12:37:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110618387, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2587734, + 47.9578355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T12:11:21Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110616881, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2935405, + 47.9548407 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T11:08:28Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110613773, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3045796, + 48.0116587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-02T08:06:36Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.0000740417128499213, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110603447, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45728705, + 50.78329265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-02T08:02:16Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000274562920000466, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110603256, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4671678, + 50.7807265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T07:07:49Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110600404, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3734059, + 50.9604101 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T07:00:47Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00000174321425000094, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110599984, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.68110515, + 51.062374950000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T06:38:51Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000230578260000026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110598754, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6778466, + 51.06329685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T06:30:07Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000118166010300166, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110598287, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.68224635, + 51.06020855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-02T05:42:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.99460659994757e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110595886, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.68467245, + 51.058063000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-01T21:40:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110586134, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2011306, + 51.2002536 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-01T20:35:43Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110584529, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2011306, + 51.2002536 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-01T19:35:46Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110582888, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3423381, + 50.8287289 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.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": "2021-09-01T13:06:56Z", + "reviewed_features": [], + "create": 3, + "modify": 9, + "delete": 0, + "area": 0.00670972323409838, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110567319, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6604248, + -34.65194005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-01T09:53:14Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000960007847700063, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110556484, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42770745, + 46.94194425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-01T08:56:14Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 1.23394700001344e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110553288, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.4528535, + 51.89631415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tijgerd", + "uid": "10245850", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-01T06:19:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110544427, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8609943, + 50.9757993 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tijgerd", + "uid": "10245850", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-01T06:16:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.47942350001401e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110544307, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.858158749999999, + 51.00279655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tijgerd", + "uid": "10245850", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-01T05:39:49Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110542688, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8633224, + 50.9751336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dampee", + "uid": "2175714", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T21:33:07Z", + "reviewed_features": [], + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.302340176125955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116841128, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 44, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7762744, + 51.0840675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dekarl", + "uid": "5760", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T20:59:37Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00105564918512994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116839950, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 25, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.62957005, + 50.11264635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T20:55:23Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.5720880000753e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116839830, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 4, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5702008, + -33.592247900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T20:07:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000341655243999605, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116838253, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4060130500000003, + 51.0437088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T20:05:56Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.000267321901200112, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116838205, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 33, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8072667, + 50.8561587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T20:00:21Z", + "reviewed_features": [], + "create": 26, + "modify": 9, + "delete": 0, + "area": 0.00000235544504000526, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116838028, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "en", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94155685, + 51.0865118 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:40:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000854707867650675, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116835279, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "observation_towers", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5775916500000005, + 51.30728795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T18:30:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116834915, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6061148, + 42.9635577 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:25:51Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.00268974535874002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116834751, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 20, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 8, + "change_within_500m": 2, + "change_within_1000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.586551050000001, + 51.3298335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:20:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 1, + "area": 0.00000391775579999962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116834514, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 4, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "change_within_1000m": 5, + "deletion:node/2839388468": "het is gesloten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60917505, + 51.3113039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:02:46Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.000516267444149891, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116833812, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "campersite", + "answer": 13, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_5000m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59615445, + 51.32447155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:00:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116833750, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "change_over_5000m": 3, + "deletion:node/9463800980": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5510462, + 51.3447623 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T17:56:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116833592, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5288583, + 51.335231 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T14:53:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116827153, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8040893, + 51.5003409 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T14:53:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116827127, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8041537, + 51.5003604 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jay8ea", + "uid": "251482", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T14:37:37Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000359177414400359, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116826540, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 9, + "imagery": "osm", + "language": "en", + "change_within_1000m": 5, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.263366, + 53.441007299999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T13:51:52Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000142517841200104, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116824801, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "split": 3, + "theme": "street_lighting", + "answer": 2, + "imagery": "osm", + "language": "nl", + "relation-fix": 1, + "change_within_25m": 3, + "change_within_100m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7386330999999995, + 51.5129685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T12:23:31Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000052404764060028, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116821293, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.00298455, + 52.0127729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T10:41:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116816749, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cafes_and_pubs", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6791617, + 51.2988118 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T05:30:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116805462, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.2803384, + -35.1138347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T04:47:04Z", + "reviewed_features": [], + "create": 0, + "modify": 59, + "delete": 0, + "area": 0.0716206775721303, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116804502, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 76, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.19127465, + 12.99810655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.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-01-30T22:31:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116798885, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3147602, + 51.1178506 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T22:11:07Z", + "reviewed_features": [], + "create": 0, + "modify": 187, + "delete": 0, + "area": 0.02428234594258, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116798400, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 312, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44436785, + 54.8553503 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T21:51:09Z", + "reviewed_features": [], + "create": 67, + "modify": 163, + "delete": 2, + "area": 0.0000305241867000207, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116797900, + "host": "mapcomplete.osm.be", + "move": 144, + "theme": "grb", + "answer": 1, + "import": 7, + "imagery": "osm", + "language": "nl", + "conflation": 36 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01855345, + 51.190309400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Strubbl", + "uid": "536583", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T20:09:57Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116794977, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.9423304, + 48.0446517 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "node-9461327137", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 9461327137, + "reasons": [ + 489 + ], + "version": 1 + } + ], + "user": "nickinparadise", + "uid": "2049708", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T20:08:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116794926, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.8709538, + 11.2567941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T19:00:27Z", + "reviewed_features": [], + "create": 5, + "modify": 3, + "delete": 0, + "area": 0.0152817128300388, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116792994, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 21, + "imagery": "osm", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4553815, + 50.905514 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T18:19:38Z", + "reviewed_features": [], + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.00166960104119988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116791647, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 27, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5609383, + 50.9349965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T17:48:56Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00637684746888019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116790606, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cafes_and_pubs", + "answer": 9, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 5, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5986909, + 51.31757235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T17:43:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116790432, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5439407, + 51.3515309 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T17:32:57Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00226203856761992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116790056, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 11, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 5, + "change_within_1000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5898251000000005, + 51.33464275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 6, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T17:22:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.82111299993227e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116789721, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7302096, + 51.397992450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T16:43:29Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00583592169276009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116788202, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 3, + "change_within_100m": 3, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6678992, + 51.3461246 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T15:21:31Z", + "reviewed_features": [], + "create": 0, + "modify": 117, + "delete": 0, + "area": 0.00150771340651005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116784793, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 166, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03411615, + 50.632665349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T14:15:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116782141, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3704001, + 51.07371 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.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-01-30T14:11:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116781962, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3715484, + 51.0730973 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T13:33:28Z", + "reviewed_features": [], + "create": 0, + "modify": 71, + "delete": 0, + "area": 0.0137339877607205, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116780241, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 82, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.22573235, + 12.996295700000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T13:30:56Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000539445246579971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116780133, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36724335, + 51.0806832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T13:13:19Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116779371, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4409596, + 50.8045511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T13:06:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.05640000000658e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116779137, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3782611, + 51.087767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T10:08:56Z", + "reviewed_features": [], + "create": 246, + "modify": 52, + "delete": 0, + "area": 0.00141076370252995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116772568, + "host": "mapcomplete.osm.be", + "move": 47, + "theme": "grb", + "import": 18, + "imagery": "osm", + "language": "nl", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80743895, + 51.160137649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T08:36:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.40641999993362e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116769631, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_within_25m": 1, + "change_within_50m": 2, + "move:node/9246056984": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2489615, + 50.7412799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T08:12:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116769153, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "de", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7066367, + 48.0343016 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T07:45:24Z", + "reviewed_features": [], + "create": 0, + "modify": 37, + "delete": 0, + "area": 0.000927423012169844, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116768596, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 53, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.13171685, + 12.93122725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T01:44:52Z", + "reviewed_features": [], + "create": 13, + "modify": 49, + "delete": 0, + "area": 0.00917739696472004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116764627, + "host": "mapcomplete.osm.be", + "move": 41, + "theme": "grb", + "answer": 2, + "import": 4, + "imagery": "osm", + "language": "nl", + "conflation": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.078408, + 51.158278 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T22:08:51Z", + "reviewed_features": [], + "create": 0, + "modify": 148, + "delete": 0, + "area": 0.0158762882422795, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116761076, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 197, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62152875, + 54.828519400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dominic Z", + "uid": "56475", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T18:54:11Z", + "reviewed_features": [], + "create": 0, + "modify": 97, + "delete": 0, + "area": 0.00100082572523997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116756281, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 130, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.56894195, + 48.8985458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T18:50:44Z", + "reviewed_features": [], + "create": 0, + "modify": 56, + "delete": 0, + "area": 0.0214745386162698, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116756190, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 76, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6196153500000001, + 54.85182775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T17:17:25Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.0000567647676699667, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116753063, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 7, + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13869285, + 50.69412825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T16:17:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116750828, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2319562, + 51.21206 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9458281311", + "osm_id": 9458281311, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "bicycle_wash" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T15:57:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116749960, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2430643, + 51.2055222 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T15:30:21Z", + "reviewed_features": [], + "create": 0, + "modify": 103, + "delete": 0, + "area": 0.0328009178565809, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116748790, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 134, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59851645, + 54.854494700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T10:56:41Z", + "reviewed_features": [], + "create": 5, + "modify": 4, + "delete": 0, + "area": 0.0000121697786800094, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116739093, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9914712, + 52.0096516 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T10:41:57Z", + "reviewed_features": [], + "create": 0, + "modify": 161, + "delete": 0, + "area": 0.0225476762166004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116738609, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 290, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5986677500000002, + 54.8794021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T09:10:05Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116735492, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "fr", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9361894, + 42.691316 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T08:17:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116734074, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2387824, + 50.7363781 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9456801536", + "osm_id": 9456801536, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T22:53:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116726369, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4307197, + 51.3903943 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T21:17:33Z", + "reviewed_features": [], + "create": 0, + "modify": 156, + "delete": 0, + "area": 0.00518273964818984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116723580, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 225, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59195535, + 54.81667415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T21:09:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.41766800008404e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116723289, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3737312, + 50.85941445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T20:47:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.20233727205076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116722525, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.670772899999999, + 51.007172049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "foo_bar_lol", + "uid": "14955867", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T20:13:20Z", + "reviewed_features": [], + "create": 25, + "modify": 30, + "delete": 0, + "area": 0.000173747155200079, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116721473, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 102, + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8920704, + 42.6957615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T20:08:28Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.204492830610087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116721335, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67012115, + 51.00590755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T20:01:30Z", + "reviewed_features": [], + "create": 148, + "modify": 37, + "delete": 0, + "area": 0.0000422385408499707, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116721159, + "host": "mapcomplete.osm.be", + "move": 34, + "theme": "grb", + "import": 20, + "imagery": "osm", + "language": "nl", + "conflation": 6, + "change_over_5000m": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36734185, + 50.961900549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T19:20:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000120700943999719, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116720054, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9927642, + 51.1546347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #http://127.0.0.1:8080/assets/themes/bicycle_rental/bicycle_rental.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T18:35:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000140749019999876, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116718826, + "host": "127.0.0.1:1234", + "theme": "http://127.0.0.1:8080/assets/themes/bicycle_rental/bicycle_rental.json", + "answer": 4, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2186024499999997, + 51.2005528 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Arickx", + "uid": "9282195", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/xliving/xliving.github.io/main/OSM/amenity-recycling/recycling-organic/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T16:07:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116713659, + "host": "mapcomplete.osm.be", + "theme": "gh://xliving/xliving.github.io/main/osm/amenity-recycling/recycling-organic/mapcomplete.json", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2227347, + 51.2227335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T16:05:29Z", + "reviewed_features": [], + "create": 3, + "modify": 9, + "delete": 0, + "area": 0.0000961499082600199, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116713573, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 12, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3874675, + 50.860726549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T15:18:31Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 8.3280959998577e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116711729, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 4, + "change_within_25m": 2, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5700582, + -33.5922434 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T14:42:38Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116710319, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2130557, + 51.2262186 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T14:36:03Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000105203646899932, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116710083, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_within_50m": 2, + "change_within_100m": 6, + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21028495, + 51.22414125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T11:59:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116704794, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.450733, + 51.0860489 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T10:25:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116701187, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "AGIV", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3615407, + 50.8655084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T09:50:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00008107748580005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116699921, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.377382, + 50.866593949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T09:42:19Z", + "reviewed_features": [], + "create": 5, + "modify": 11, + "delete": 0, + "area": 0.0000651249312400366, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116699600, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 28, + "imagery": "AGIV", + "language": "en", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36936375, + 50.8665814 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T08:38:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.61590000002776e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116697144, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2033171, + 50.91468155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T07:24:53Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00000126834246000256, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116694883, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "osm", + "language": "de", + "change_over_5000m": 6, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.806203, + 48.01815485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T01:40:12Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000931708730001056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116687884, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 11, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2201764, + 51.19624135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #http://127.0.0.1:8080/assets/themes/bicycle_rental/bicycle_rental.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T01:36:42Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.08587500003621e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116687814, + "host": "127.0.0.1:1234", + "theme": "http://127.0.0.1:8080/assets/themes/bicycle_rental/bicycle_rental.json", + "answer": 5, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2186476500000003, + 51.19689015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/wherethesidewalkshavenoname.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T00:25:54Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000339124622400134, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116686782, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/wherethesidewalkshavenoname.json", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11324745, + 38.8354727 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/xliving/xliving.github.io/main/OSM/amenity-recycling/recycling-organic/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T23:09:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116685572, + "host": "mapcomplete.osm.be", + "theme": "gh://xliving/xliving.github.io/main/osm/amenity-recycling/recycling-organic/mapcomplete.json", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2227347, + 51.2227335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-27T21:27:21Z", + "reviewed_features": [], + "create": 121, + "modify": 11, + "delete": 0, + "area": 0.000242894437729942, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116683137, + "host": "mapcomplete.osm.be", + "move": 9, + "theme": "grb", + "import": 12, + "imagery": "osm", + "language": "nl", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66370005, + 51.349533750000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T17:16:16Z", + "reviewed_features": [], + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.0000286642542400079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116675422, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 4, + "change_within_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2352218, + 50.7343714 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T15:06:36Z", + "reviewed_features": [], + "create": 98, + "modify": 10, + "delete": 0, + "area": 0.0000121179275999887, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116670817, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "import": 13, + "imagery": "osm", + "language": "en", + "conflation": 4, + "change_over_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2641247, + 50.15758685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-27T13:14:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116666480, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.1031394, + -36.6072722 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T09:11:23Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.00000506531273999234, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116656004, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.997329100000002, + 52.00868745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T03:42:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.6682299996363e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116646267, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.56981205, + -33.59239755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T02:32:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116645369, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5697582, + -33.5927064 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T23:10:18Z", + "reviewed_features": [], + "create": 10, + "modify": 11, + "delete": 0, + "area": 3.01669379997268e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116642455, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "import": 1, + "imagery": "osm", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9440349999999995, + 51.17657525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "nutsd02440", + "uid": "14948432", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-26T21:10:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116639191, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.73682, + 42.6813272 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T21:03:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116638996, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "import": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6050693, + 52.287768 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-26T18:04:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116632831, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5701008, + -33.5922799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T16:54:11Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116630080, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4230499, + 50.8238691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T13:55:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116623879, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.7200229, + 51.951571 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T10:31:44Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.0000024634888400043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116617025, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.712339, + 51.95319485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T09:24:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116614780, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4343939, + 46.942024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-26T02:19:01Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.11591089992536e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116607298, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.56955145, + -33.59287325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T21:45:41Z", + "reviewed_features": [], + "create": 28, + "modify": 8, + "delete": 0, + "area": 5.42221380000553e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116602785, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "answer": 3, + "import": 4, + "imagery": "osm", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00652675, + 51.125120100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "febutix", + "uid": "14929311", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T19:26:17Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000925620282999628, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116598894, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.35655525, + 51.37578895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T19:19:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116598670, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4076949, + 50.9022336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dominic Z", + "uid": "56475", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T19:08:20Z", + "reviewed_features": [], + "create": 0, + "modify": 53, + "delete": 0, + "area": 0.000219547729519855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116598337, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 69, + "imagery": "osm", + "language": "de", + "change_within_100m": 1, + "change_within_500m": 39, + "change_within_1000m": 23, + "change_within_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.60475495, + 48.893630200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eric Royer", + "uid": "12137407", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T18:02:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.07552439995965e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116596008, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58998315, + 45.3685482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T14:06:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000751373524000127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116587243, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "HDM_HOT", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23648865, + 50.734142000000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.14.4", + "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-01-25T13:47:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000159310590100029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116586469, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 2, + "imagery": "osm", + "language": "es", + "change_within_50m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6564494, + -34.65655835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T13:03:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116584832, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0354918, + 50.8911597 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.14.4", + "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-01-25T12:48:50Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.30967999973559e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116584318, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "answer": 12, + "imagery": "osm", + "language": "en", + "change_over_5000m": 7, + "change_within_25m": 1, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5300206, + -34.57497515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tiptracks", + "uid": "513840", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T07:59:25Z", + "reviewed_features": [], + "create": 0, + "modify": 56, + "delete": 0, + "area": 0.000173014503740079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116573101, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 85, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6628074999999995, + 53.08572045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "omnibeet", + "uid": "10145113", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T02:20:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.57015000004629e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116565413, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -121.92194605, + 37.79153255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T02:16:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116565370, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toerisme_vlaanderen", + "import": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3683341, + 51.3318233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T22:32:21Z", + "reviewed_features": [], + "create": 43, + "modify": 107, + "delete": 13, + "area": 0.0000626125906600265, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116561818, + "host": "mapcomplete.osm.be", + "move": 91, + "theme": "grb", + "import": 6, + "imagery": "AGIV", + "language": "nl", + "conflation": 32, + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9852492999999996, + 51.18475345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T22:29:11Z", + "reviewed_features": [], + "create": 0, + "modify": 80, + "delete": 0, + "area": 0.00171805430148003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116561728, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 111, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5816227999999999, + 54.901477400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T22:25:47Z", + "reviewed_features": [], + "create": 37, + "modify": 26, + "delete": 1, + "area": 0.00000953489481004836, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116561651, + "host": "mapcomplete.osm.be", + "move": 21, + "theme": "grb", + "import": 4, + "imagery": "osm", + "language": "nl", + "conflation": 10, + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98896845, + 51.182845549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tiptracks", + "uid": "513840", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T19:39:16Z", + "reviewed_features": [], + "create": 0, + "modify": 63, + "delete": 0, + "area": 0.0010201372895999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116556239, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 87, + "imagery": "osm", + "language": "nl", + "change_within_500m": 13, + "change_within_1000m": 21, + "change_within_5000m": 53 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.688803999999999, + 53.07935005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RNoerr", + "uid": "14846404", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T15:21:25Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.37250000203903e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116545513, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1, + "move:node/9444973776": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.54325614999999, + -33.44285375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GBAB", + "uid": "3335899", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T14:52:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000379038275000676, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116544521, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.13315905, + 46.242142650000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T13:55:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116542643, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "cyclosm", + "language": "en", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2476759, + -39.8157794 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T13:54:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000429368235000938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116542587, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 2, + "change_within_1000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24599225, + -39.814452849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T12:25:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.71140299987843e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116539369, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 3, + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23293275, + -39.84288665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T12:05:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116538531, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1241237, + 51.2236943 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T11:51:01Z", + "reviewed_features": [], + "create": 86, + "modify": 0, + "delete": 0, + "area": 4.16711839998382e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116537976, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 7, + "imagery": "osm", + "language": "en", + "change_over_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12275175, + 51.221985399999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T11:47:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000342298308000794, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116537847, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1369779, + 51.164167649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T10:55:34Z", + "reviewed_features": [], + "create": 36, + "modify": 155, + "delete": 4, + "area": 0.00000279522179998971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116535808, + "host": "pietervdvn.github.io", + "move": 136, + "path": "mc/develop/", + "theme": "grb", + "import": 4, + "imagery": "AGIV", + "language": "nl", + "conflation": 38, + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98761725, + 51.1804887 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.14.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T00:16:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116519085, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5241815, + 49.2290904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.14.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T00:13:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.00273440000094e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116519038, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.521208999999999, + 49.2330217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T22:57:30Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000417210731000175, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116517846, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.52364265, + 49.22973895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T22:32:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116517297, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6977179, + -34.6656855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.14.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-01-23T22:15:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116516938, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 3, + "imagery": "osm", + "language": "es", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4244061, + -34.6110649 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T21:08:30Z", + "reviewed_features": [], + "create": 21, + "modify": 21, + "delete": 0, + "area": 6.93011939996776e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116515172, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "answer": 3, + "import": 3, + "imagery": "osm", + "language": "nl", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.740266500000001, + 51.40866905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T19:13:53Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 3.2040799999588e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116511833, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 10, + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2328015, + -39.8429688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T16:26:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116506336, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1947952, + 51.1763651 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T16:17:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000086998715999985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116505950, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19529115, + 51.1779451 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T15:33:43Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 4.64379999998317e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116504080, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 5, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 6, + "move:node/9442452056": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.458398799999999, + 51.0217554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T15:08:30Z", + "reviewed_features": [], + "create": 6, + "modify": 6, + "delete": 0, + "area": 0.0000192773456999972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116503101, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.62747115, + 51.7390956 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T14:25:12Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 1, + "area": 0.00000264645007000264, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116501463, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 13, + "imagery": "AGIV", + "deletion": 1, + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 7, + "change_within_50m": 6, + "change_within_500m": 1, + "deletion:node/8572587333": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45837735, + 51.02112345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T09:46:08Z", + "reviewed_features": [], + "create": 0, + "modify": 51, + "delete": 0, + "area": 0.000589263945929979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116491728, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 78, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5692373499999999, + 54.88496725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T09:21:51Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.53219999857112e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116491069, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 1, + "change_within_25m": 5, + "move:node/7634798362": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4576957, + 50.961111450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mich4711", + "uid": "12764098", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T07:03:23Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000115274098339935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116488734, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 12, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8124763999999995, + 51.09496155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.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-01-22T19:30:09Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00315847708793968, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116477825, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "answer": 10, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36666135, + 51.1008506 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T19:26:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000626235553999491, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116477778, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31298025, + 51.1065399 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T19:22:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116477697, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3195172, + 51.1152861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T19:17:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116477554, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3110784, + 51.1131436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T19:17:02Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.00000718946479999856, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116477552, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "food", + "answer": 10, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 12, + "move:node/9439916874": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1239862, + 51.2208381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T19:13:45Z", + "reviewed_features": [], + "create": 9, + "modify": 5, + "delete": 0, + "area": 1.15958440000032e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116477462, + "host": "pietervdvn.github.io", + "move": 4, + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "osm", + "language": "en", + "conflation": 2, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1229162, + 51.2224231 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "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-01-22T18:16:40Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.000248568796900044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116475963, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 15, + "imagery": "osm", + "language": "en", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31706595, + 51.1103648 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T17:34:40Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116474641, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1227752, + 51.2223189 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T17:13:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116473925, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3541679, + 51.1054843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T10:47:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116461006, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.876773, + 51.0710463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T08:08:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116457152, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "imagery": "osm", + "language": "fr", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.941156, + 42.702383 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T03:04:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116453646, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 130.5694434, + 31.765696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T22:01:27Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116449226, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.941156, + 42.702383 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T20:33:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116446646, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.688579, + -33.544727 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eric Royer", + "uid": "12137407", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-21T18:14:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000714259083999707, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116442724, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5915541, + 45.3667009 + ] + } + }, + { + "type": "Feature", + "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-01-21T16:13:53Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.0000342879884000059, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116438284, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.16730235, + 52.4009305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Redssu", + "uid": "13639663", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-21T15:44:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116437063, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "Geoportal2-PL-aerial_image_WMTS", + "deletion": 1, + "language": "en", + "deletion:node/9437251385": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.402716, + 52.0871765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T13:19:01Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.99949870002994e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116431524, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "de", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.876745750000001, + 47.98920365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T08:41:49Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.98837170000368e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116418875, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93470065, + 47.51954345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T08:04:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116417325, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "de", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7917955, + 48.0038767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T07:45:01Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116416417, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8407651, + 51.1844879 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-21T02:38:05Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116409050, + "host": "127.0.0.1:1234", + "theme": "entrances", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2211101, + 51.2165519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T14:20:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000010727936059982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116387905, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.48586145, + 11.609596400000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T14:15:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.74894049995624e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116387718, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.49300495, + 11.61079045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T14:11:53Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000521909006399796, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116387593, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.4919115, + 11.6108397 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T13:56:54Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000153664163840007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116387099, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.4853311, + 11.6160407 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T10:48:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116379703, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8407651, + 51.1844879 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T10:23:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0153640376684809, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116378559, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.1644866, + -33.527211300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T10:04:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116377738, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9138955, + 43.557006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T10:04:52Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116377734, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9138955, + 43.557006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T09:38:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116376644, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8438334, + 51.1846001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T09:26:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116376152, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8413405, + 51.1844432 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Welshie", + "uid": "508", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T22:24:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.35348200000993e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116361219, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6997616, + 51.551828150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T21:27:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000219359049998863, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116359563, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 3, + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2489349, + -39.81135755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eric Royer", + "uid": "12137407", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T19:46:59Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.11867210000184e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116356310, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5919811500000005, + 45.359122850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "spelledwrongdotuk", + "uid": "12198029", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T18:01:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.04546999997997e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116353102, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.4146299, + 51.54057515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:47:40Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00134167138663015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116350440, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 22, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.717606450000005, + -32.95491625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:43:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116350272, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8128564, + -32.9191204 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:38:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.21421599998492e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116350132, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.81164535, + -32.9182597 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:35:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116350004, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8075963, + -32.9118752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:30:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116349812, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8102045, + -32.9180053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:24:53Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000201229218709971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116349573, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.811818349999996, + -32.92832065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T15:01:58Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116346307, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9968427, + 42.8927249 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T13:55:39Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 3.01599999994786e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116343902, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6, + "move:node/9431075016": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.39543145, + 44.5057338 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T13:50:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116343730, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.6127057, + -33.5828149 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T10:45:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116336052, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6120027, + 42.3854559 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T10:35:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116335626, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6151991, + 42.3833737 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T10:28:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116335294, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6160606, + 42.3832823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T07:10:54Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00000504208404000317, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116327686, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "de", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7979062, + 47.9973627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "c_cesar", + "uid": "12078598", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T02:56:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000101179301879975, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116322023, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.90216035, + -20.1514238 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T20:28:48Z", + "reviewed_features": [], + "create": 2, + "modify": 16, + "delete": 0, + "area": 0.0352407458746197, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116315097, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 23, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.315534700000001, + 50.98703155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T18:02:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000014509771999975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116310179, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.6171767, + 26.522722299999998 + ] + } + }, + { + "type": "Feature", + "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-01-18T17:12:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116308236, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8111556, + 52.8245416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Emilius123", + "uid": "13874704", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T16:54:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116307538, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.31451, + 49.6111974 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H@mlet", + "uid": "691314", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T16:51:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116307441, + "host": "mapcomplete.osm.be", + "theme": "maps", + "answer": 2, + "imagery": "osm", + "deletion": 1, + "language": "en", + "deletion:node/9428929578": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6632915, + 48.2497405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T16:39:34Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 1, + "area": 1.13525999902947e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116307009, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "fr", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 12, + "move:node/9428878139": "improve_accuracy", + "deletion:node/2895132452": "mauvaise catégorie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41250475, + 50.7928359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T15:01:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116302996, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.60132, + -33.0506821 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "redsteakraw", + "uid": "139856", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T14:39:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116302086, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2254687, + 41.1775402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T14:12:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000156636832000166, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116301008, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1997808, + 51.2480584 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T12:30:33Z", + "reviewed_features": [], + "create": 493, + "modify": 24, + "delete": 0, + "area": 0.000123694740399945, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116297063, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "answer": 12, + "import": 70, + "imagery": "osm", + "language": "nl", + "conflation": 6, + "change_over_5000m": 31 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4259625499999995, + 50.9443591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T09:11:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116288326, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9979688, + 52.0042014 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T08:18:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.42062000027127e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116286179, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.997677400000001, + 37.097929050000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T07:26:13Z", + "reviewed_features": [], + "create": 8, + "modify": 0, + "delete": 0, + "area": 0.0000170105570800058, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116284120, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "de", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7947104, + 47.9985517 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T00:26:29Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 2.4180712000211e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116276269, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.9844339, + -41.313438500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T21:19:15Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000351928768799252, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116272308, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.817341400000004, + -32.915705599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T19:49:35Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 3.24362679983325e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116269302, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "cyclosm", + "language": "en", + "add-image": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.232737, + -39.84197315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T18:04:59Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000115978500000235, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116265873, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 25, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.80993265, + -32.9171347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T17:54:01Z", + "reviewed_features": [], + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.000120456413900002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116265476, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 47, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.81834605, + -32.9249174 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T16:06:04Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 2.33004870001592e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116260926, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93089525, + 41.71797225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T15:22:06Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116259129, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "imagery": "PNOA-Spain-TMS", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9338675, + 41.7155799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T15:05:38Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000277241270199868, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116258551, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 19, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.80894055, + -32.9186193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T14:46:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116257758, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 3, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9332367, + 41.7201447 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T12:46:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116253168, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "PNOA-Spain-TMS", + "language": "en", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7877593, + 41.6692173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.0-rc-1", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T12:35:35Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.91868000000708e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116252714, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2092487, + 51.187981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T12:12:53Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.0000992712495500068, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116251861, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 29, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05608345, + 50.64385105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T10:29:47Z", + "reviewed_features": [], + "create": 31, + "modify": 0, + "delete": 0, + "area": 7.93330560003959e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116247427, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 4, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.738035, + 51.3890941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "divyaboomi", + "uid": "14872477", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T09:48:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116245840, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.1197721, + 9.9251855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T09:08:04Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.305596821364734, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116244201, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 12, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 3, + "change_within_25m": 4, + "change_within_50m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17652725, + 41.47241845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sanchi", + "uid": "170106", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T04:53:31Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000192742500800013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116236409, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 37, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.671200300000001, + 40.970611399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sanchi", + "uid": "170106", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T23:24:25Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000141224073900198, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116231990, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.67732555, + 40.97097975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T22:06:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116230459, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.9840192, + -41.3133377 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T21:05:16Z", + "reviewed_features": [], + "create": 900, + "modify": 1, + "delete": 0, + "area": 0.0000688753578000003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116229030, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 1, + "import": 88, + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.429169399999999, + 50.94341609999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Angel Spotorno", + "uid": "680374", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T20:15:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116227831, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6123594, + -33.4588056 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T16:48:16Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 6.40518009999607e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116221498, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_over_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68912875, + 41.62233455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T16:23:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116220610, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9887022, + 49.998414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T16:21:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116220534, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9887022, + 49.998414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T15:53:58Z", + "reviewed_features": [], + "create": 9, + "modify": 0, + "delete": 0, + "area": 0.000722147582880123, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116219481, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "Mapbox", + "language": "de", + "change_over_5000m": 9, + "change_within_25m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.825623499999999, + 48.0152577 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T14:41:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116216583, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "import": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6050693, + 52.287768 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T14:35:24Z", + "reviewed_features": [], + "create": 470, + "modify": 100, + "delete": 0, + "area": 0.0943456521998089, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116216334, + "host": "mapcomplete.osm.be", + "move": 98, + "theme": "grb", + "import": 47, + "language": "nl", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21355055, + 51.051660749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T11:28:10Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116210098, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "nl", + "change_within_1000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0117371, + 51.1267423 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T06:06:30Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000808506228000206, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116204074, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "fr", + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.419692850000001, + 50.7958663 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T23:25:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.49765120002591e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116200037, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.89821570000001, + -33.7561274 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T22:33:40Z", + "reviewed_features": [], + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.000339631391839905, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116198979, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 118, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0426273999999998, + 50.62151385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T22:15:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116198646, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5231209, + 49.2287087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T22:13:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116198609, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5204287, + 49.2254605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T22:11:24Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116198577, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5204457, + 49.2254032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T22:04:15Z", + "reviewed_features": [], + "create": 0, + "modify": 45, + "delete": 0, + "area": 0.00014847101891999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116198415, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 61, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0616431, + 50.6227282 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T20:44:01Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 16.2014456622474, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116196564, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2647537, + 50.1758408 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DS_020", + "uid": "2771494", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-15T17:40:40Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116190924, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 12, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_within_1000m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0073367, + 52.3503428 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DS_020", + "uid": "2771494", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T17:30:08Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 1.34639280000226e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116190473, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 8, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0058141, + 52.3452915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T17:08:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.53006160001356e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116189609, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5181861, + 49.22864475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T16:10:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116187640, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6187257, + 49.2812204 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T15:29:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116186194, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "imagery": "AGIV", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1909422, + 50.9183511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "lexfkken", + "uid": "14860296", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T15:06:33Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.58909100001189e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116185362, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10059225, + 51.49511065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ReTroll", + "uid": "4909451", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T13:57:26Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116183077, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 4, + "imagery": "swisstopo_swissimage", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1984535, + 47.1175041 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-15T11:45:33Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116179454, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9880919, + 41.3097545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T09:45:09Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 0.000224309607659963, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116175933, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 20, + "imagery": "osm", + "language": "nl", + "move:node/9013372877": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1903898, + 50.92920005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-15T09:18:56Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116175251, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.117923, + 52.0882038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AussieBull", + "uid": "14857642", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T05:48:37Z", + "reviewed_features": [], + "create": 5, + "modify": 1, + "delete": 0, + "area": 0.00230413393880935, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116171615, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 152.99801745000002, + -27.52577075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T01:27:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116169271, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.3787947, + -36.5707611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T23:44:53Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.000623982302899824, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116167939, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.65988455, + -33.5103565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T20:40:31Z", + "reviewed_features": [], + "create": 0, + "modify": 138, + "delete": 1, + "area": 0.000690808533800069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116163181, + "host": "mapcomplete.osm.be", + "move": 229, + "theme": "grb", + "imagery": "osm", + "language": "nl", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99980735, + 51.1447485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T20:04:15Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000240376868159641, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116162017, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7411618, + -33.7471408 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T19:49:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116161544, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.3787947, + -36.5707611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T19:33:27Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.0000147712438500565, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116161018, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24802055, + -39.81608385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JohnWesty", + "uid": "14854340", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T18:43:44Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116159385, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "imagery": "USDA-NAIP", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4058161, + 41.5201538 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T17:04:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.60010869999513e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116155764, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.83863645, + -33.44114145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "markmay1234", + "uid": "14853740", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T16:52:48Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.00180736187940031, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116155356, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "imagery": "USDA-NAIP", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -95.3985223, + 29.56174965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T15:39:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0140036178889197, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116152579, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3036369, + 51.1434659 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T14:17:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116149388, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "fr", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4275369, + 50.8212624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T14:16:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116149359, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "fr", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4275369, + 50.8212624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T14:15:13Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 1.58100000033007e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116149317, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 3, + "change_within_50m": 11, + "move:node/5238101867": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42752415, + 50.8212655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T13:24:43Z", + "reviewed_features": [], + "create": 0, + "modify": 31, + "delete": 0, + "area": 0.103204289536292, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116147663, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 31, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76868205, + -33.520324349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T13:14:19Z", + "reviewed_features": [], + "create": 8, + "modify": 13, + "delete": 0, + "area": 9.01583789997535e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116147318, + "host": "mapcomplete.osm.be", + "move": 11, + "theme": "grb", + "import": 1, + "imagery": "osm", + "language": "nl", + "conflation": 4, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97948825, + 51.159419150000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "reginaldc", + "uid": "510576", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T12:34:13Z", + "reviewed_features": [], + "create": 5, + "modify": 4, + "delete": 0, + "area": 0.0000852413427800457, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116146018, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26246065, + 50.913302200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T12:14:11Z", + "reviewed_features": [], + "create": 54, + "modify": 293, + "delete": 15, + "area": 0.000040093410300008, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116145462, + "host": "pietervdvn.github.io", + "move": 266, + "path": "mc/develop/", + "theme": "grb", + "answer": 2, + "import": 6, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 64, + "change_within_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98435795, + 51.157434300000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T11:09:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000665210734770175, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116143314, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.71758975, + -33.50741965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Turbsson", + "uid": "14851790", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T10:30:18Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116142066, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7604043, + 51.1438586 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T09:59:24Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00595949484852983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116141115, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 7, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.75613865, + -33.356876850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T09:52:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116140895, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7753349, + 41.1928264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "lardarz", + "uid": "14851540", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T09:38:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116140398, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "Mapbox", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5820313, + 54.9052194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T09:00:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116138310, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5310098, + 51.2278474 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T08:45:34Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 3, + "area": 0.00000201363017999016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116137794, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "deletion": 3, + "language": "en", + "deletion:node/7731532793": "not found", + "deletion:node/7731532929": "not found", + "deletion:node/7731599878": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.400872, + 50.82248195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T05:09:11Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.24420399996159e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116133044, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24623310000001, + -39.81531885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SOE_ATLP", + "uid": "14848956", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T01:46:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 1530.24458641531, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116130302, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.18732315, + -10.2560267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-13T22:38:21Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0765022763913197, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116127380, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 9, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66374735, + -33.3342535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-13T21:55:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.16323219999676e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116126041, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3270834, + 50.876438750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-13T21:32:05Z", + "reviewed_features": [], + "create": 3, + "modify": 9, + "delete": 0, + "area": 3.53048800010787e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116125399, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "imagery": "UrbisAdmNL", + "language": "en", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.326815, + 50.87733035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T21:15:17Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 5.74755440008964e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116124902, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23157520000001, + -39.8429692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T20:17:53Z", + "reviewed_features": [], + "create": 48, + "modify": 5, + "delete": 0, + "area": 5.85009249997302e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116122529, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "import": 8, + "imagery": "AGIV", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92405845, + 51.325875350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T20:16:04Z", + "reviewed_features": [], + "create": 53, + "modify": 0, + "delete": 0, + "area": 1.92594870000113e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116122457, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 10, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92388085, + 51.32563275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-13T19:14:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116119941, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3246548, + 50.8726219 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-13T18:55:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.82687650002136e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116119252, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32546595, + 50.876397350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-13T17:39:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116116526, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3268944, + 50.8769397 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T17:01:25Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00643576934649004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116115233, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.43686175, + -33.626729049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T15:24:55Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116111841, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1462954, + 49.7021304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 91, + "name": "Motorway/trunk geometry modified" + } + ], + "tags": [], + "features": [ + { + "url": "way-196714838", + "name": "Boulevard Louis Pasteur", + "osm_id": 196714838, + "reasons": [ + 91 + ], + "version": 6, + "primary_tags": { + "highway": "trunk" + } + } + ], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T15:09:43Z", + "reviewed_features": [], + "create": 0, + "modify": 216, + "delete": 0, + "area": 0.000448679086920005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116111260, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 417, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0740198999999997, + 50.639089600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T15:01:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116111010, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2380348, + -39.8144473 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T14:58:21Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000293160628920041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116110880, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 87, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0493722500000002, + 50.6263157 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-13T11:12:00Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 1.68002100005324e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116101981, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 12, + "imagery": "osm", + "language": "en", + "add-image": 3, + "change_over_5000m": 1, + "change_within_25m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09145615, + 40.62398795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T10:06:17Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116099620, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "AGIV", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3875951, + 50.8515187 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T05:30:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.24420399996159e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116091008, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24623310000001, + -39.81531885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "VLaDoU_Fr", + "uid": "14840328", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T23:55:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116086424, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "fr.ign.bdortho", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7546234, + 49.7825942 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-12T21:47:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116083766, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2461468, + -39.8153024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-12T20:47:29Z", + "reviewed_features": [], + "create": 2, + "modify": 21, + "delete": 0, + "area": 0.00000981615825001319, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116082061, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 22, + "change_over_5000m": 2, + "change_within_25m": 16, + "change_within_50m": 5, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24636004999999, + -39.81631695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T20:39:07Z", + "reviewed_features": [], + "create": 115, + "modify": 15, + "delete": 0, + "area": 0.00107122083690014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116081800, + "host": "mapcomplete.osm.be", + "move": 13, + "theme": "grb", + "import": 14, + "imagery": "osm", + "language": "nl", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8524811, + 51.046884649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ccamfwfwtn", + "uid": "1883123", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-12T19:58:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.95639999993992e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116080687, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15745535, + 51.537083300000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-12T19:04:24Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116079171, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.4594317, + 40.2646883 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.14.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T17:50:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116076574, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6120103, + 52.2864226 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.14.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T17:16:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116075392, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5896299, + 52.2815641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T17:06:22Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.57195279995583e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116075040, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23709410000001, + -39.832381549999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T15:05:30Z", + "reviewed_features": [], + "create": 0, + "modify": 51, + "delete": 0, + "area": 0.000336029979880134, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116070825, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 108, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0546072, + 50.6308537 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T14:49:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116070232, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.4050848, + -39.8201089 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T14:30:29Z", + "reviewed_features": [], + "create": 0, + "modify": 50, + "delete": 0, + "area": 0.000228966437400089, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116069496, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 84, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0654863, + 50.62264835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nate the Mapper", + "uid": "6466759", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T13:58:12Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.0000180687871999255, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116068291, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 13, + "imagery": "EsriWorldImagery", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.96611775, + 44.264437900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-12T13:55:30Z", + "reviewed_features": [], + "create": 11, + "modify": 7, + "delete": 0, + "area": 0.0000329650171500353, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116068167, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.63752415, + 51.74785865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-12T13:19:43Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0108442764461898, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116066900, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 9, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.65993885, + -33.56784965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T13:17:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116066841, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.202799, + 51.1973829 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "reginaldc", + "uid": "510576", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T09:42:01Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.000398909676690055, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116058584, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25972485, + 50.91966455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T08:23:47Z", + "reviewed_features": [], + "create": 0, + "modify": 143, + "delete": 0, + "area": 0.000955016192160241, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116055657, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 311, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0544877, + 50.626579 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-12T08:05:01Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000807282528599953, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116055007, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.998300050000001, + 52.0084305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T07:39:59Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000268936123500087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116054212, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 12, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24021135, + 50.88263355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-12T01:23:02Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00000948573612000092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116046441, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 17 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2380484, + -39.831446850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-11T23:33:45Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.01015999991044e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116044795, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.62707649999999, + -33.4346944 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-11T19:20:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.94140001525311e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116037495, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 2, + "change_within_1000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2345258, + -39.8348376 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-11T18:52:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116036589, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.0103707, + -34.4849025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-11T17:30:49Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.000185286290619976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116033601, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "cyclofix", + "answer": 39, + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 5, + "change_within_25m": 39, + "change_within_500m": 5, + "change_within_5000m": 3, + "move:node/5212386106": "improve_accuracy", + "move:node/8901087954": "improve_accuracy", + "move:node/9166971725": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41785335, + 50.8077386 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-11T16:44:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116031747, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0029577, + 52.0127636 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-11T16:24:41Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000135748359000136, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116030976, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23262729999999, + -39.83991665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-11T15:44:06Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 1.30590000082674e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116029238, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 10, + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_over_5000m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2716955, + 39.96799935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-11T15:14:38Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.0000145966386599967, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116028144, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.994857450000001, + 52.007100699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-11T13:10:05Z", + "reviewed_features": [], + "create": 2, + "modify": 56, + "delete": 0, + "area": 0.00044390124575996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116023832, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "cyclofix", + "answer": 73, + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 16, + "change_over_5000m": 2, + "change_within_25m": 86, + "change_within_50m": 12, + "change_within_5000m": 1, + "move:node/5238101864": "improve_accuracy", + "move:node/5238101865": "improve_accuracy", + "move:node/7551524287": "improve_accuracy", + "move:node/9100997256": "improve_accuracy", + "move:node/9166706050": "improve_accuracy", + "move:node/9166971727": "improve_accuracy", + "move:node/9166971729": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4311982, + 50.8079999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-11T12:28:55Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000728466236399732, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116022525, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9699962, + 51.15184975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Harold16", + "uid": "14828251", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-11T10:11:43Z", + "reviewed_features": [], + "create": 5, + "modify": 6, + "delete": 1, + "area": 0.00000141274910000064, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116017341, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 13, + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "move:node/9409830813": "improve_accuracy", + "deletion:node/9409852873": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.344299400000001, + 50.81729305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-11T08:32:06Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000533479325399976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116013499, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.5066081, + 11.61001565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-11T08:16:16Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.0000905676276200273, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116012876, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 21, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.48189845, + 11.602402600000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-11T07:50:19Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000491958362969845, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116012002, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 3, + "change_within_500m": 1, + "change_within_5000m": 6, + "move:node/9166971730": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42114975, + 50.80460815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-11T06:59:13Z", + "reviewed_features": [], + "create": 13, + "modify": 1, + "delete": 0, + "area": 0.00102924493952019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116010291, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 5, + "imagery": "Mapbox", + "language": "de", + "change_over_5000m": 13, + "change_within_25m": 4, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.822661, + 48.0082359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-11T03:23:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116005113, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9021919, + 51.1517925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-11T01:30:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.79261000003686e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116003862, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.62725355, + -33.43483635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-11T01:16:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116003662, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4704805, + 50.9594218 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-10T21:41:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115999425, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2314676, + -39.8426803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-10T19:56:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115996216, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.089371, + 51.2150063 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-10T18:43:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115994137, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4704805, + 50.9594218 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-10T13:51:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115983034, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.0390272, + -36.8269941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-10T12:32:26Z", + "reviewed_features": [], + "create": 4, + "modify": 12, + "delete": 0, + "area": 0.00141582504140002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115980194, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 16, + "imagery": "AGIV", + "language": "nl", + "add-image": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1936352, + 51.25404655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Jori", + "uid": "14800690", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-10T11:49:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115978482, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5348958, + 51.2243178 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Jori", + "uid": "14800690", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-10T09:30:05Z", + "reviewed_features": [], + "create": 34, + "modify": 180, + "delete": 2, + "area": 0.0000992048557999676, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115973296, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 197, + "imagery": "osm", + "deletion": 3, + "language": "nl", + "add-image": 55, + "change_over_5000m": 34, + "change_within_25m": 230, + "change_within_50m": 17, + "change_within_100m": 16, + "move:node/3722812205": "improve_accuracy", + "move:node/9407052255": "improve_accuracy", + "move:node/9407385530": "improve_accuracy", + "move:node/9407559577": "improve_accuracy", + "deletion:node/3722812205": "not found", + "deletion:node/7980559249": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5276159, + 51.22634825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Jori", + "uid": "14800690", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-10T09:15:49Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 1, + "area": 4.2848000028106e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115972849, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 8, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 10, + "deletion:node/9407051399": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.523299, + 51.22753535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-10T01:35:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115962545, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2317384, + -39.842422 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-10T01:35:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115962540, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2324501, + -39.8425259 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-09T22:33:21Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 1.73407869998755e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115960136, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 4, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23197965, + -39.84251415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-09T19:31:27Z", + "reviewed_features": [], + "create": 21, + "modify": 0, + "delete": 0, + "area": 8.87386000004228e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115955282, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6869327, + 51.1458326 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-09T18:57:38Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000156464048159975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115954427, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 7, + "imagery": "Metropole_Ruhr_RVR-DOP10", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3067275, + 51.4675752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.13.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-01-09T18:30:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115953713, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8697681, + 51.1489791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-09T17:53:33Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000193709835000305, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115952616, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "Metropole_Ruhr_RVR-DOP10", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3196524499999995, + 51.44363475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-09T17:48:27Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000217438740999453, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115952474, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 8, + "imagery": "Metropole_Ruhr_RVR-DOP10", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31968945, + 51.44363665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-09T16:23:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115949555, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6558192, + -33.4643634 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-09T15:23:00Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115946883, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 7, + "imagery": "Mapbox", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.3928457, + -39.7804562 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "augxcgrwxo", + "uid": "371263", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-09T14:48:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115945379, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 37.6892182, + 55.7020891 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-09T14:43:57Z", + "reviewed_features": [], + "create": 16, + "modify": 34, + "delete": 4, + "area": 0.00000160873019999492, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115945142, + "host": "mapcomplete.osm.be", + "move": 30, + "theme": "grb", + "import": 2, + "imagery": "osm", + "language": "nl", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9855034, + 51.1581779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-09T13:19:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115941891, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "natuurpunt", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.277595, + 51.255429 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-09T11:35:07Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 8.39168000024103e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115938240, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 10, + "imagery": "osm", + "language": "en", + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08848815, + 39.4871383 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-09T11:32:40Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00187501294607, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115938163, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 17, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.51122874999999, + 11.61327745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-09T11:31:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000106705742000571, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115938118, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.48696225, + 11.6006071 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-09T11:30:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.41749999993397e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115938100, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9848756000000005, + 51.1572888 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-09T10:57:41Z", + "reviewed_features": [], + "create": 0, + "modify": 23, + "delete": 0, + "area": 0.000466741915079868, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115936927, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 56, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9796764, + 50.418761599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-09T10:33:08Z", + "reviewed_features": [], + "create": 15, + "modify": 21, + "delete": 0, + "area": 0.00000115861931999797, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115936202, + "host": "mapcomplete.osm.be", + "move": 9, + "theme": "grb", + "answer": 12, + "import": 4, + "imagery": "osm", + "language": "en", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.985581249999999, + 51.157581500000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-09T10:05:55Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115935514, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.062425, + 39.2304467 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-09T09:00:03Z", + "reviewed_features": [], + "create": 21, + "modify": 14, + "delete": 0, + "area": 8.38288000001798e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115933668, + "host": "mapcomplete.osm.be", + "move": 13, + "theme": "grb", + "imagery": "osm", + "language": "en", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9736788999999995, + 51.1518286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-09T07:43:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.34129520008479e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115932256, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01031825, + 51.1274874 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-08T15:25:34Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115913950, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2336021, + 50.7343963 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.13.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-01-08T11:45:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115906261, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3345334, + 51.1346418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-08T09:07:51Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.00000159920990000293, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115901766, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.63938375, + 51.743991300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.13.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-08T08:50:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115901430, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3348884, + 51.1343081 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "a1k4", + "uid": "2371830", + "editor": "MapComplete 0.13.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-07T22:04:25Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0000161836878700278, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115893804, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 58, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.64001485, + 49.87516705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.13.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-07T18:28:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000077211959400024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115887609, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1097669, + 38.84074875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-07T17:45:34Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000029067263320007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115886195, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.001059099999999, + 52.01012755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nielsdg", + "uid": "648095", + "editor": "MapComplete 0.13.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-07T16:46:13Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000383055800399738, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115884163, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0344766, + 51.05836895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9399668710", + "osm_id": 9399668710, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "emergency": "Zisterne" + } + } + ], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-07T13:52:24Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 0.00142666363899013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115878146, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.97547965, + 52.01266805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "augxcgrwxo", + "uid": "371263", + "editor": "MapComplete 0.13.0", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-07T11:26:53Z", + "reviewed_features": [], + "create": 3, + "modify": 29, + "delete": 0, + "area": 0.00184702425315973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115873248, + "host": "mapcomplete.osm.be", + "split": 4, + "theme": "street_lighting", + "answer": 28, + "imagery": "osm", + "language": "en", + "change_over_5000m": 16, + "change_within_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 37.6463327, + 55.70372355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "augxcgrwxo", + "uid": "371263", + "editor": "MapComplete 0.13.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-07T11:21:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115873049, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 37.6210678, + 55.7119553 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-07T10:16:15Z", + "reviewed_features": [], + "create": 0, + "modify": 46, + "delete": 0, + "area": 0.00018888157962003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115870453, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 64, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9564027, + 50.412828250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "davidtorcivia", + "uid": "1798584", + "editor": "MapComplete 0.14.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-07T00:51:46Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 7.21457999971703e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115858404, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 12, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 3, + "change_within_25m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.9228526, + 40.7064943 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.13.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-07T00:45:34Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.05880319999771e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115858321, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1005138, + 38.838243 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-4772501441", + "osm_id": 4772501441, + "reasons": [ + 43 + ], + "version": 8, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-07T00:37:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115858222, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8394288, + 50.8307363 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T20:20:12Z", + "reviewed_features": [], + "create": 0, + "modify": 61, + "delete": 0, + "area": 0.0584349119199998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115852335, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 90, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8562162, + 51.2632432 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Danysan95", + "uid": "4425563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T20:08:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.71925679997493e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115851905, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "it", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.698061599999999, + 44.35819145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "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-01-06T19:49:33Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.000121873499310013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115851354, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.99868035, + 52.01036675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T16:43:09Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000416957009999716, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115845026, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73952725, + 51.1742624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T15:25:43Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0000800326565499861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115841923, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 31, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96341805, + 50.42566105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-rc-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T15:04:47Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.92563789998073e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115841155, + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21685835, + 51.20742395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T14:23:02Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.20400000000352e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115839538, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 12, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5530431, + 38.9163281 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T14:07:38Z", + "reviewed_features": [], + "create": 4, + "modify": 17, + "delete": 0, + "area": 9.89392799989898e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115839019, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "answer": 24, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 4, + "change_within_25m": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39396395, + 50.9818528 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T11:58:27Z", + "reviewed_features": [], + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.00143023117560015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115833953, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 108, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9621892499999998, + 50.4395531 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlTi5", + "uid": "10836424", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T11:58:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115833945, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3495507, + 48.8872913 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T11:54:15Z", + "reviewed_features": [], + "create": 14, + "modify": 13, + "delete": 0, + "area": 0.0000479946483600129, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115833798, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.630348300000001, + 51.74816065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T11:42:57Z", + "reviewed_features": [], + "create": 286, + "modify": 394, + "delete": 5, + "area": 0.00000471883650000025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115833348, + "host": "127.0.0.1:1234", + "move": 360, + "theme": "grb", + "import": 14, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 92, + "change_over_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4775704, + 51.02766995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Blanchong", + "uid": "10461110", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T10:25:05Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115830485, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "answer": 2, + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2312912, + 48.8629707 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T10:00:50Z", + "reviewed_features": [], + "create": 6, + "modify": 1, + "delete": 0, + "area": 0.000610285772419945, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115829566, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.21405955, + 52.788279 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T09:25:36Z", + "reviewed_features": [], + "create": 197, + "modify": 0, + "delete": 0, + "area": 0.0000143183558600241, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115828252, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 30, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1428367, + 50.86987475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koofi_mk", + "uid": "2272879", + "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-01-06T08:38:00Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115826484, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0844218, + 52.0028029 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T07:48:04Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.267531081173999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115824863, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 77.3357647, + 11.17141535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T07:22:37Z", + "reviewed_features": [], + "create": 646, + "modify": 383, + "delete": 0, + "area": 0.0000142774940000092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115824089, + "host": "mapcomplete.osm.be", + "move": 297, + "theme": "grb", + "import": 75, + "imagery": "osm", + "language": "nl", + "conflation": 108 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1443245500000003, + 50.8715124 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T07:14:15Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00332907054575991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115823852, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 26, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 76.99128490000001, + 11.0278121 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T01:53:36Z", + "reviewed_features": [], + "create": 18, + "modify": 19, + "delete": 0, + "area": 6.35884199999994e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115818094, + "host": "127.0.0.1:1234", + "move": 18, + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 2, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48323225, + 51.028438699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T01:24:19Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000784000307999435, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817776, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 12, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1112022, + 38.8388911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T01:23:14Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817760, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "deletion": 1, + "language": "en", + "deletion:node/9209701507": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1045364, + 38.8430158 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T01:21:42Z", + "reviewed_features": [], + "create": 0, + "modify": 83, + "delete": 0, + "area": 0.0152666666152495, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817746, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 113, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.037744749999999994, + 38.79785555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T01:16:37Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000112601163600068, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817699, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10361770000000001, + 38.83598415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T01:04:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000122293709999695, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817559, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11071639999999999, + 38.83855215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T01:00:37Z", + "reviewed_features": [], + "create": 0, + "modify": 49, + "delete": 0, + "area": 0.00013650973775998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817524, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 82, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.106978, + 38.83917725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T00:49:17Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000570158089500008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817395, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10754435, + 38.83511095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T00:43:37Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000023151249420009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817328, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 40, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10281905, + 38.8358696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T20:18:59Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000145840655999921, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115811487, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9478006, + 50.420737700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ray331", + "uid": "11726860", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T17:40:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00166176534509998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115806717, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.6541413, + 27.74887675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T16:14:47Z", + "reviewed_features": [], + "create": 0, + "modify": 54, + "delete": 0, + "area": 0.000162439595709903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115803870, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 74, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60703415, + 50.81101125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T15:24:20Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115802119, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1078074, + 38.8356201 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T15:21:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.95188600006057e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115802000, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0861281, + 38.83858775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T14:51:31Z", + "reviewed_features": [], + "create": 17, + "modify": 15, + "delete": 0, + "area": 0.0000125924848499923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115801007, + "host": "mapcomplete.osm.be", + "move": 11, + "theme": "grb", + "import": 3, + "imagery": "CartoDB.VoyagerNoLabels", + "language": "nl", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10654065, + 50.96597905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T14:14:50Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000405482747299482, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115799658, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.51984245, + 11.62037775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T13:29:36Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000847880540399596, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115797987, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9507955, + 50.40904205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T13:26:10Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000135419613600014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115797836, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 10, + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1086022, + 38.83987965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T11:37:08Z", + "reviewed_features": [], + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.000105499517759994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115793506, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 54, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9719783, + 50.4098666 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T11:25:57Z", + "reviewed_features": [], + "create": 0, + "modify": 31, + "delete": 0, + "area": 1.13305483025903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115793065, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 36, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.8678278, + 12.337681100000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-05T11:01:10Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115792041, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6984365, + 38.2655077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-04T23:22:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.67446400002859e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115775141, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hackerspaces", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0914686, + 50.7716571 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T20:42:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00759125215704024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115771036, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5459084499999998, + 51.0650772 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T20:35:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000027963090100011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115770767, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36815945, + 51.09027585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T19:38:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115768749, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.625055, + 51.117425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T17:48:33Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.000027930245849988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115765221, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 26, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96443005, + 50.40688675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-04T17:03:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115763689, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0923922, + 50.7721052 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T16:37:53Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0002146313145599, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115762756, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 21, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.4828957, + 11.606797700000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-04T13:15:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.66326000077331e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115754753, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "toilets", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 6, + "move:node/1641770246": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08319, + 50.77484225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T09:21:13Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.713944158021719, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115744562, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 21, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.10050955, + 11.19874 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T09:11:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115744161, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9861318, + 50.8711722 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T02:28:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000377984749999552, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115734275, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.31454464999999, + 38.8836715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-03T21:45:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115729742, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1298787, + 50.7842542 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-03T19:00:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115724617, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.9724679, + -34.4614224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-03T18:49:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115724223, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.9729087, + -34.4616279 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "davidtorcivia", + "uid": "1798584", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-03T18:48:13Z", + "reviewed_features": [], + "create": 5, + "modify": 4, + "delete": 0, + "area": 5.00656000000723e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115724187, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.9148686, + 40.704800399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-03T18:14:38Z", + "reviewed_features": [], + "create": 5, + "modify": 1, + "delete": 0, + "area": 0.0000551674314600149, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115723173, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2176692, + 41.54943395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-03T16:08:26Z", + "reviewed_features": [], + "create": 0, + "modify": 105, + "delete": 0, + "area": 0.000296192902749987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115718405, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 166, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94200205, + 50.42462255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-03T15:57:42Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115717988, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 8, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0599686, + 38.7210793 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "NicoVr", + "uid": "8782392", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-03T15:38:43Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.00000260864720999926, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115717311, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 13, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72038885, + 51.05762745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-03T14:59:24Z", + "reviewed_features": [], + "create": 9, + "modify": 4, + "delete": 0, + "area": 0.000190037513599914, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115715565, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "en", + "move:node/9388469173": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2104013, + 41.5398897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-03T14:42:13Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.0000517644882999683, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115714829, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "CartoDB.VoyagerNoLabels", + "language": "de", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8057993, + 48.01985785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-03T12:10:59Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115708435, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 6, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0497738, + 38.603769 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-03T09:29:22Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115701407, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hackerspaces", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1212196, + 50.9520755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-02T21:51:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000012502004399974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115686930, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 1, + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2082948, + 51.2501756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-02T21:11:03Z", + "reviewed_features": [], + "create": 11, + "modify": 10, + "delete": 0, + "area": 7.29364499983562e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115685951, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "imagery": "osm", + "language": "en", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13226835, + 50.66757055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Acheloo", + "uid": "11366923", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-02T18:30:12Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000106851696800012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115681205, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.270823400000001, + 40.942943400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-02T17:56:01Z", + "reviewed_features": [], + "create": 0, + "modify": 66, + "delete": 0, + "area": 0.0743782892385904, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115680001, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 120, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05278375, + 50.56731755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-02T16:24:37Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115676863, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4611304, + 51.1024626 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-02T15:35:59Z", + "reviewed_features": [], + "create": 16, + "modify": 18, + "delete": 0, + "area": 2.58552000001025e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115674924, + "host": "mapcomplete.osm.be", + "move": 14, + "theme": "grb", + "imagery": "AGIV", + "language": "nl", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7489158, + 51.1612445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-02T14:58:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115673330, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 3, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5404004, + 53.0068628 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-02T14:30:51Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.00000814769662002773, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115672066, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.635315, + 51.73328755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-02T11:53:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115665991, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.093939, + 50.7782419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9371314839", + "osm_id": 9371314839, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "mycota", + "uid": "7541348", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-02T06:03:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115658538, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -111.943619, + 33.4591777 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mycota", + "uid": "7541348", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-02T02:12:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115656452, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -111.9454003, + 33.4624688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T20:12:17Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.000132682765300071, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115649888, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 26, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5327120999999995, + 44.37348115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T19:08:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115648184, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0975608, + 50.7829972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T19:07:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.58069999995869e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115648155, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 2, + "move:node/3328029031": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09740545, + 50.78308315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T16:12:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115642342, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0977268, + 50.7679803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T15:35:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115640953, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 2, + "imagery": "Actueel_orthoHR_WMTS", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.572717, + 53.0172674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T14:49:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115639107, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1769118, + 50.7298742 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T13:42:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115636703, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "answer": 7, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1263102, + 50.6647302 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T13:38:55Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115636600, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 7, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1264417, + 50.6647132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T13:17:06Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115635874, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "openwindpowermap", + "imagery": "SPW_ORTHO_LAST", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0905269, + 50.6637424 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T12:40:21Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 6.91499999891998e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115634750, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 18, + "imagery": "PNOA-Spain-TMS", + "language": "nl", + "add-image": 3, + "change_over_5000m": 2, + "change_within_50m": 13, + "change_within_500m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.95716785, + 39.8917455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-01T12:21:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115634157, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "test", + "answer": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0890042, + 51.0958494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-01T11:45:34Z", + "reviewed_features": [], + "create": 3, + "modify": 18, + "delete": 0, + "area": 2.86099000004676e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115633100, + "host": "pietervdvn.github.io", + "move": 2, + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 17, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "add-image": 3, + "move:node/9383390008": "improve_accuracy", + "move:node/9383440696": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08904475, + 51.09585375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-01T11:37:38Z", + "reviewed_features": [], + "create": 64, + "modify": 6, + "delete": 0, + "area": 3.80762640001345e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115632852, + "host": "mapcomplete.osm.be", + "move": 5, + "theme": "grb", + "import": 4, + "imagery": "osm", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0892105999999995, + 51.0958758 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T02:50:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115626287, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0266954, + 51.0799031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T02:46:22Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000261489209800277, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115626265, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03567205, + 51.0760357 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T01:29:46Z", + "reviewed_features": [], + "create": 35, + "modify": 15, + "delete": 0, + "area": 6.60029440002278e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115625603, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "nl", + "conflation": 6, + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0498236, + 51.0704913 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dinn0", + "uid": "14893874", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T22:06:02Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.73199139999227e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117960826, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.612126150000002, + 44.1681531 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dinn0", + "uid": "14893874", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-28T20:47:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117958784, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1418963, + 49.1959921 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-28T20:35:12Z", + "reviewed_features": [], + "create": 48, + "modify": 167, + "delete": 0, + "area": 0.00000990596558998363, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117958429, + "host": "pietervdvn.github.io", + "move": 152, + "path": "mc/develop/", + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "osm", + "conflation": 40 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26259935, + 50.807807249999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T19:32:42Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.000300043480000023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117956632, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 22, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4421976999999995, + 50.9248981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-28T16:35:16Z", + "reviewed_features": [], + "create": 441, + "modify": 618, + "delete": 6, + "area": 0.0000403769459699678, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117950898, + "host": "pietervdvn.github.io", + "move": 554, + "path": "mc/develop/", + "theme": "grb", + "import": 55, + "locale": "nl", + "imagery": "osm", + "conflation": 132 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26958615, + 50.80796905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.16.4", + "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-02-28T15:56:13Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117949659, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 14, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7751388, + 41.2598941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-28T14:38:01Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000326165216520069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117947018, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 17, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27269535, + 51.054624000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T14:08:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117946092, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2421613, + 51.2058621 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-28T12:50:40Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000384884061799965, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117943693, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2844297000000005, + 51.08001185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-28T12:45:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000559731356999731, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117943513, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31547555, + 51.061642250000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T11:31:38Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117940581, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3558959, + 50.8467476 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T11:15:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117939986, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0501123, + 51.1594328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T11:06:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117939661, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1386134, + 51.1355271 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T10:38:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117938656, + "host": "mapcomplete.osm.be", + "theme": "maps", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0782124, + 51.1696077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T10:14:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117937651, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0500287, + 51.1594983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LePirlouit", + "uid": "369248", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-28T10:13:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117937603, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.283106, + 50.7940724 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T08:57:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117934833, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0313911, + 51.1346919 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T08:54:29Z", + "reviewed_features": [], + "create": 3, + "modify": 9, + "delete": 0, + "area": 0.00163319803674996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117934727, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "AGIV", + "add-image": 5, + "change_over_5000m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05486735, + 51.152221049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T08:35:01Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.97980000088769e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117934091, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "locale": "en", + "imagery": "GEOSN-DOP-RGB", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.72445095, + 51.0307611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T08:27:07Z", + "reviewed_features": [], + "create": 0, + "modify": 49, + "delete": 0, + "area": 0.00385089224576053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117933843, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 49, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4103079, + 50.7880622 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T08:21:16Z", + "reviewed_features": [], + "create": 261, + "modify": 0, + "delete": 0, + "area": 0.00000776910000001441, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117933667, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 30, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1275022, + 50.833239750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-28T08:06:27Z", + "reviewed_features": [], + "create": 167, + "modify": 1643, + "delete": 49, + "area": 0.0000917032607999994, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117933240, + "host": "pietervdvn.github.io", + "move": 1462, + "path": "mc/develop/", + "theme": "grb", + "import": 34, + "locale": "nl", + "imagery": "osm", + "conflation": 394 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.285474600000001, + 50.80832835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T08:00:23Z", + "reviewed_features": [], + "create": 551, + "modify": 18, + "delete": 0, + "area": 0.0000185426316700079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117933074, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "answer": 3, + "import": 51, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.131634249999999, + 50.83384965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-28T07:45:08Z", + "reviewed_features": [], + "create": 251, + "modify": 446, + "delete": 4, + "area": 0.0000299094378000124, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117932649, + "host": "pietervdvn.github.io", + "move": 399, + "path": "mc/develop/", + "theme": "grb", + "import": 41, + "locale": "nl", + "imagery": "osm", + "conflation": 96 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.297497249999999, + 50.8069592 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T07:33:31Z", + "reviewed_features": [], + "create": 454, + "modify": 87, + "delete": 0, + "area": 0.0000886231198499795, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117932317, + "host": "mapcomplete.osm.be", + "move": 72, + "theme": "grb", + "answer": 1, + "import": 48, + "locale": "nl", + "imagery": "osm", + "conflation": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12932325, + 50.82395895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-28T05:54:12Z", + "reviewed_features": [], + "create": 854, + "modify": 170, + "delete": 5, + "area": 0.0000901813823999999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117929775, + "host": "mapcomplete.osm.be", + "move": 135, + "theme": "grb", + "answer": 15, + "import": 97, + "locale": "nl", + "imagery": "osm", + "conflation": 42, + "change_over_5000m": 70 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.128455799999999, + 50.824077200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-27T20:44:54Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 3.8825149998795e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117921742, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 12, + "locale": "en", + "imagery": "UrbISOrtho", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38286065, + 50.87908865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-27T20:13:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117920820, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.463616, + 51.0175071 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-27T19:15:10Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000262394912999832, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117919377, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 9, + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.381019950000001, + 50.87272585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-27T18:14:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117917880, + "host": "127.0.0.1:1234", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2106384, + 51.1864662 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-27T17:35:47Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117916847, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "ghostbikes", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.235825, + 51.2026888 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-27T17:19:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117916372, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3536276, + 50.9789663 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-27T15:49:26Z", + "reviewed_features": [], + "create": 42, + "modify": 238, + "delete": 0, + "area": 0.00000639492290999094, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117913221, + "host": "pietervdvn.github.io", + "move": 218, + "path": "mc/develop/", + "theme": "grb", + "import": 8, + "locale": "nl", + "imagery": "osm", + "conflation": 48 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29727605, + 50.806594149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-27T15:06:58Z", + "reviewed_features": [], + "create": 100, + "modify": 413, + "delete": 28, + "area": 0.0000109870520799642, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117911710, + "host": "pietervdvn.github.io", + "move": 366, + "path": "mc/develop/", + "theme": "grb", + "import": 16, + "locale": "nl", + "imagery": "osm", + "conflation": 102 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29547115, + 50.8088954 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-3628885593", + "name": "ChargePoint", + "osm_id": 3628885593, + "reasons": [ + 42 + ], + "version": 7, + "primary_tags": {} + } + ], + "user": "PlugInSites", + "uid": "10651792", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-27T14:45:19Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000301107257000652, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117910854, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 13, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.8293345, + 39.19348275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-27T13:23:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117907958, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4118342, + 50.8140311 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-27T12:28:41Z", + "reviewed_features": [], + "create": 0, + "modify": 199, + "delete": 0, + "area": 0.00100755295675015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117906150, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 257, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.822846049999995, + -32.92028045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-27T12:22:10Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 1.39494999992554e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117905994, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "answer": 5, + "import": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6064728, + 52.28809045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-27T10:58:17Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.31776700018588e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117903683, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07214155, + 51.16482585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-27T10:51:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117903440, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0524522, + 51.1586315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "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-02-27T10:45:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117903263, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0792912, + 51.1661946 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-27T09:16:00Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 4.7173100000111e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117900860, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1085926, + 50.91849015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "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-02-27T09:12:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117900775, + "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.0693793, + 51.1679083 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-27T06:53:42Z", + "reviewed_features": [], + "create": 147, + "modify": 0, + "delete": 0, + "area": 0.00000421717296001438, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117898315, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1330159, + 50.8241616 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-27T06:51:41Z", + "reviewed_features": [], + "create": 113, + "modify": 0, + "delete": 0, + "area": 0.00000206362148000531, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117898288, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 15, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1334878, + 50.8238793 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-27T06:36:34Z", + "reviewed_features": [], + "create": 209, + "modify": 163, + "delete": 0, + "area": 0.0316500335898803, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117898122, + "host": "mapcomplete.osm.be", + "move": 140, + "theme": "grb", + "answer": 1, + "import": 25, + "locale": "nl", + "imagery": "osm", + "conflation": 44 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.080382800000001, + 50.966761500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-26T21:59:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117893098, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3470833, + 50.8501498 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-26T21:36:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117892584, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3463936, + 50.8499268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-26T21:19:30Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00182319015149974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117892223, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 7, + "change_over_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10361345, + 51.1563852 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-26T20:31:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117891049, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3084965, + 50.8327029 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-26T20:26:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117890941, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3470833, + 50.8501498 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-26T20:21:25Z", + "reviewed_features": [], + "create": 237, + "modify": 257, + "delete": 8, + "area": 0.000165975702849937, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117890808, + "host": "pietervdvn.github.io", + "move": 221, + "path": "mc/develop/", + "theme": "grb", + "import": 54, + "locale": "nl", + "imagery": "osm", + "conflation": 72 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28754425, + 50.810826250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-26T20:06:59Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000223659533100012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117890468, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6359001499999999, + 54.80813685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 83, + "name": "User has multiple blocks" + } + ], + "tags": [], + "features": [], + "user": "Hibenny", + "uid": "2183247", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-26T19:49:35Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.657967868450597, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117890044, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "answer": 22, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 13, + "change_within_500m": 2, + "change_within_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.13358045, + 47.7383873 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-26T18:39:53Z", + "reviewed_features": [], + "create": 4, + "modify": 9, + "delete": 0, + "area": 1.88101239997666e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117888476, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "answer": 11, + "import": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6057888, + 52.2879284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-25067193", + "osm_id": 25067193, + "reasons": [ + 42 + ], + "version": 7, + "primary_tags": {} + } + ], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-26T17:07:36Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00175060340793014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117886000, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "soft-delete": 1, + "change_over_5000m": 1, + "change_within_500m": 2, + "change_within_5000m": 4, + "soft-delete:way/25067193": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19468775, + 50.92499375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-26T17:01:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117885827, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2043402, + 50.9049894 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-26T16:44:56Z", + "reviewed_features": [], + "create": 27, + "modify": 92, + "delete": 2, + "area": 0.00000218754834999528, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117885237, + "host": "pietervdvn.github.io", + "move": 81, + "path": "mc/develop/", + "theme": "grb", + "import": 8, + "locale": "nl", + "imagery": "osm", + "conflation": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27547285, + 50.810484349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-26T16:44:39Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 8.20667700009773e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117885227, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27680845, + 50.81087135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-26T16:30:54Z", + "reviewed_features": [], + "create": 74, + "modify": 522, + "delete": 16, + "area": 0.0000144460183200225, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117884749, + "host": "pietervdvn.github.io", + "move": 456, + "path": "mc/develop/", + "theme": "grb", + "import": 13, + "locale": "nl", + "imagery": "osm", + "conflation": 136 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28005555, + 50.8115791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-26T16:23:54Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.00132036142405014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117884516, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 30, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4415333500000003, + 49.15978185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-26T15:39:31Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117883084, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3429771, + 50.8323896 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-26T15:25:36Z", + "reviewed_features": [], + "create": 1576, + "modify": 1198, + "delete": 24, + "area": 0.000416714339709919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117882632, + "host": "pietervdvn.github.io", + "move": 1074, + "path": "mc/develop/", + "theme": "grb", + "import": 254, + "locale": "nl", + "imagery": "osm", + "conflation": 292 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28761395, + 50.81957065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-553143865", + "osm_id": 553143865, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "building": "sports_centre" + } + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-26T14:49:00Z", + "reviewed_features": [], + "create": 1373, + "modify": 115, + "delete": 4, + "area": 0.0000919931038199365, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117881406, + "host": "pietervdvn.github.io", + "move": 101, + "path": "mc/develop/", + "theme": "grb", + "import": 199, + "locale": "nl", + "imagery": "osm", + "conflation": 34 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29269745, + 50.811085399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-26T14:25:09Z", + "reviewed_features": [], + "create": 87, + "modify": 421, + "delete": 5, + "area": 0.00000876741107998118, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117880716, + "host": "pietervdvn.github.io", + "move": 377, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "import": 11, + "locale": "nl", + "imagery": "osm", + "conflation": 98 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2850096, + 50.8069948 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-26T13:06:14Z", + "reviewed_features": [], + "create": 0, + "modify": 37, + "delete": 0, + "area": 0.000900223506810008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117878376, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 56, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42505465, + 49.15854915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-26T12:12:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117877084, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35786, + 50.8679295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-26T10:54:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117875306, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.2940108, + 46.1149844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-26T06:41:59Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000706177561389997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117870504, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00195355, + 51.16336995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "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-02-25T22:52:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000418985628119676, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117865204, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0970993499999997, + 51.1695755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-25T20:37:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117862305, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1235123, + 51.1778646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-25T19:57:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117861208, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1232178, + 51.1690578 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-25T19:01:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117859682, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1369843, + 51.1365674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matheusgomesms", + "uid": "3781248", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-25T17:37:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117857377, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -38.5054439, + -3.7237741 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-25T16:54:15Z", + "reviewed_features": [], + "create": 104, + "modify": 15, + "delete": 0, + "area": 0.0000024171979200062, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117856101, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "import": 22, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9998565500000005, + 51.157309999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cmap99", + "uid": "13524250", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-25T13:46:02Z", + "reviewed_features": [], + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.000560797607899958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117850054, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "answer": 31, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.0547503, + 53.27468855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cmap99", + "uid": "13524250", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-25T13:36:41Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000009480481079994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117849733, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 9, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.07685785, + 53.259705999999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cmap99", + "uid": "13524250", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-25T13:31:36Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000159140057399552, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117849553, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.08798885, + 53.2574119 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kersentaart", + "uid": "9812520", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-25T13:17:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117849032, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6536321, + 51.0686205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-25T11:06:52Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.161381330535463, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117844829, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 13, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91639585, + 50.985403399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alxGS", + "uid": "13367754", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-25T10:45:01Z", + "reviewed_features": [], + "create": 0, + "modify": 93, + "delete": 0, + "area": 0.0323187381912405, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117844130, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 154, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.088451599999999, + 48.035004400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wvdp", + "uid": "436419", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-25T09:47:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117842068, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2584268, + 51.8219167 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-25T04:16:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117833704, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.6650333, + -36.9291217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fdemmer", + "uid": "58402", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-25T03:46:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.66261380001725e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117833272, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.3524697, + 48.175561349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-25T00:13:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117831073, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.27719, + 47.797864 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SAEMS09", + "uid": "15140872", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-24T22:20:58Z", + "reviewed_features": [], + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.0929881394560803, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117829610, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 10, + "locale": "en", + "imagery": "Mapbox" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.4818488, + 39.9161975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-24T20:50:21Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000297092115600011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117827426, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 12, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2477214500000002, + 48.978853 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 41, + "name": "Software editor was not declared" + } + ], + "tags": [], + "features": [], + "user": "kersentaart", + "uid": "9812520", + "editor": null, + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-24T20:11:06Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117826283, + "theme": "toerisme_vlaanderen", + "answer": 5, + "import": 1, + "import:node/9533221527": "source: https://osm.org/note/3044350" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.637074, + 51.0559106 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-24T17:53:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000324871413599747, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117821852, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1392517, + 51.1396153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-24T16:28:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117819033, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7020895, + 51.0536132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-24T15:54:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000148400800000502, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117817821, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7038308, + 51.0571554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-24T15:49:15Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 2.60620199977736e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117817623, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 4, + "change_over_5000m": 2, + "change_within_25m": 6, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7069134000000004, + 51.05455585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-24T15:16:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117816434, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2201704, + 51.2061911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-24T14:09:32Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117814054, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4113495, + 50.9647581 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-24T13:59:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.19958600000721e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117813679, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7926559, + 51.17634315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-24T13:48:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117813264, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4800498, + 51.0252267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-24T13:33:30Z", + "reviewed_features": [], + "create": 64, + "modify": 13, + "delete": 0, + "area": 8.28874960003326e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117812764, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.482494300000001, + 51.255652600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MatFroz", + "uid": "9216818", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-24T10:38:37Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0000863881155399891, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117806088, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.395796900000001, + 50.82033395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-24T09:24:43Z", + "reviewed_features": [], + "create": 6, + "modify": 18, + "delete": 0, + "area": 0.0000628881781500282, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117803435, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 32, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35370935, + 50.85068975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-24T09:23:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.34246000007683e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117803392, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34582535, + 50.8524295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-24T09:09:51Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.0000144617707200067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117802902, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7256403000000002, + 51.054893 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-24T08:15:02Z", + "reviewed_features": [], + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.000821103892230496, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117801087, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 22, + "locale": "nl", + "imagery": "osm", + "add-image": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30719195, + 50.78726455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-24T04:25:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117795202, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2299967, + -39.8207004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-24T02:07:00Z", + "reviewed_features": [], + "create": 13, + "modify": 0, + "delete": 0, + "area": 9.70039299983721e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117793160, + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70493545, + 51.05818505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-23T23:06:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.99409450000896e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117790813, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14228195, + 51.139039749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-23T20:45:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117786867, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "answer": 1, + "locale": "en", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7488578, + 51.0811209 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-23T19:53:13Z", + "reviewed_features": [], + "create": 65, + "modify": 1385, + "delete": 27, + "area": 0.000100162038299986, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117785303, + "host": "pietervdvn.github.io", + "move": 1252, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 338 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28725095, + 50.808751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-23T19:14:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117784104, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "id", + "imagery": "cyclosm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.3683002, + -34.6333388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-23T19:10:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117783987, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1424426, + 51.1367321 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-23T18:48:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117783213, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7104171, + 51.0373003 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-23T18:06:37Z", + "reviewed_features": [], + "create": 8, + "modify": 64, + "delete": 0, + "area": 0.000198291265350048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117781915, + "host": "mapcomplete.osm.be", + "move": 56, + "theme": "grb", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 16, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99657995, + 51.130143849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-23T17:34:55Z", + "reviewed_features": [], + "create": 3, + "modify": 20, + "delete": 0, + "area": 1.2606824999992e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117780768, + "host": "mapcomplete.osm.be", + "move": 18, + "theme": "grb", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7046237499999997, + 51.05249825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-23T17:10:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117779793, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9882175, + 51.1695457 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-23T17:07:43Z", + "reviewed_features": [], + "create": 42, + "modify": 292, + "delete": 2, + "area": 0.00000632838384000491, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117779712, + "host": "pietervdvn.github.io", + "move": 266, + "path": "mc/develop/", + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 56 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2917083, + 50.8100715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-23T16:52:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000211517773999916, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117779100, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70361565, + 51.0561822 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-23T16:03:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.54535000020868e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117777144, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32449715, + 51.004294349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-23T15:54:04Z", + "reviewed_features": [], + "create": 13, + "modify": 4, + "delete": 0, + "area": 0.0000295164009599952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117776807, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 16, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 13, + "change_within_25m": 15, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7221321, + 51.0538999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s8evq", + "uid": "3710738", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-23T15:48:40Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000592202359999834, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117776561, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "sport_pitches", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4850832, + 51.093665900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-23T14:09:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117772566, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "fr", + "imagery": "HDM_HOT", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.615794, + -38.7368064 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-23T12:27:13Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.0612444886812012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117768354, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 20, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4914308, + 51.0019616 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-23T08:08:52Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117757354, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "locale": "en", + "imagery": "GEOSN-DOP-RGB", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7176717, + 51.0600025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-23T07:59:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117757007, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5661471, + 53.0109715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-23T01:04:39Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000254847292399731, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117748671, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.880117, + 51.157556 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T22:33:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117746386, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3248696, + 51.0044777 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.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-02-22T22:30:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.70635199997382e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117746313, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4182523, + 51.0970834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T22:19:08Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 1.37221909999766e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117746101, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/main/libraries.json", + "answer": 27, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62653205, + 41.19982175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-22T20:45:59Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000301925884809993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117743877, + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 10, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57794365, + 53.00825295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 41, + "name": "Software editor was not declared" + } + ], + "tags": [], + "features": [], + "user": "RobbieRob F", + "uid": "14946603", + "editor": null, + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T19:44:51Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.0000487129530000183, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117742017, + "theme": "toerisme_vlaanderen", + "import": 3, + "import:node/9528129922": "source: https://osm.org/note/3044427", + "import:node/9528149205": "source: https://osm.org/note/3044255", + "import:node/9528150239": "source: https://osm.org/note/3044228" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5598754, + 51.1943232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.2", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T18:57:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000108555702000014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117740296, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5693453, + 53.237038150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.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-02-22T18:36:04Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00214611001200047, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117739596, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "locale": "en", + "imagery": "osm", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1125853, + 51.1551969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T16:13:58Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000228174919499987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117734366, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54613435, + 53.22662625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T15:46:04Z", + "reviewed_features": [], + "create": 31, + "modify": 1136, + "delete": 30, + "area": 0.0000660265954599712, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117733265, + "host": "pietervdvn.github.io", + "move": 1029, + "path": "mc/develop/", + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 266 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28640595, + 50.812704999999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-22T14:38:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117730480, + "host": "127.0.0.1:1234", + "theme": "waste", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7400267, + 51.0335731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T14:35:03Z", + "reviewed_features": [], + "create": 313, + "modify": 3146, + "delete": 54, + "area": 0.00146718851899992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117730338, + "host": "pietervdvn.github.io", + "move": 2832, + "path": "mc/develop/", + "theme": "grb", + "answer": 7, + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 670 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29550335, + 50.834802100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T14:24:07Z", + "reviewed_features": [], + "create": 33, + "modify": 260, + "delete": 4, + "area": 0.0000618296847300008, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117729903, + "host": "pietervdvn.github.io", + "move": 242, + "path": "mc/develop/", + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 60 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28832175, + 50.84331415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JensTi", + "uid": "57212", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T14:04:09Z", + "reviewed_features": [], + "create": 368, + "modify": 0, + "delete": 0, + "area": 0.0000501930410800567, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117728967, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 38, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0925673, + 50.7619185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JensTi", + "uid": "57212", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T14:03:05Z", + "reviewed_features": [], + "create": 83, + "modify": 0, + "delete": 0, + "area": 0.00000120676859999312, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117728927, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 8, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0873076, + 50.7614147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JensTi", + "uid": "57212", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T13:52:07Z", + "reviewed_features": [], + "create": 290, + "modify": 0, + "delete": 0, + "area": 0.00000443835419999715, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117728508, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 25, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0891395, + 50.7643774 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T13:46:39Z", + "reviewed_features": [], + "create": 307, + "modify": 366, + "delete": 2, + "area": 0.000195332936300025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117728302, + "host": "pietervdvn.github.io", + "move": 337, + "path": "mc/develop/", + "theme": "grb", + "import": 51, + "locale": "nl", + "imagery": "osm", + "conflation": 88 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28526495, + 50.8408911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JensTi", + "uid": "57212", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T13:45:48Z", + "reviewed_features": [], + "create": 711, + "modify": 0, + "delete": 0, + "area": 0.00000646709325001247, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117728271, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 91, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08723835, + 50.760113950000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.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-02-22T13:37:46Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117727989, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1441337, + 51.1383474 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T13:27:48Z", + "reviewed_features": [], + "create": 1430, + "modify": 127, + "delete": 4, + "area": 0.000375540381039868, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117727593, + "host": "pietervdvn.github.io", + "move": 114, + "path": "mc/develop/", + "theme": "grb", + "import": 178, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2856049, + 50.8339732 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-22T13:12:02Z", + "reviewed_features": [], + "create": 26, + "modify": 0, + "delete": 0, + "area": 1.61585389999318e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117726988, + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26296415, + 50.84633355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JensTi", + "uid": "57212", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T12:56:01Z", + "reviewed_features": [], + "create": 736, + "modify": 0, + "delete": 0, + "area": 0.0000182629666800339, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117726440, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 94, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0957699, + 50.763004699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + }, + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JensTi", + "uid": "57212", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T12:48:05Z", + "reviewed_features": [], + "create": 3765, + "modify": 0, + "delete": 0, + "area": 0.000219681577000009, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117726134, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 497, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0888646, + 50.761030000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T11:30:02Z", + "reviewed_features": [], + "create": 0, + "modify": 45, + "delete": 0, + "area": 0.00033159752614005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117722778, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 61, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24713635, + 51.0968412 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-22T11:00:28Z", + "reviewed_features": [], + "create": 1642, + "modify": 422, + "delete": 1, + "area": 0.000222917265679945, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117721482, + "host": "pietervdvn.github.io", + "move": 378, + "path": "mc/develop/", + "theme": "grb", + "import": 245, + "locale": "nl", + "imagery": "osm", + "conflation": 92 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2699979500000005, + 50.834312100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-22T09:50:05Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 9.54053400004144e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117718598, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "AGIV", + "change_within_25m": 5, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4026191499999996, + 50.9072817 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T21:17:56Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000114338217209995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117701325, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 25, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56388375, + 54.88439735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T21:15:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.21864639999852e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117701248, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51361245, + 53.0035145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-21T19:20:54Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 1, + "area": 0.0000292768846800428, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117697757, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "waste", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_within_5000m": 6, + "move:node/6032193173": "improve_accuracy", + "deletion:node/389551570": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51953975, + 53.000350999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-21T17:37:55Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.000539241643799921, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117692774, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "waste", + "answer": 13, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 4, + "change_within_1000m": 2, + "change_within_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.563177700000001, + 53.01231815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T17:19:22Z", + "reviewed_features": [], + "create": 287, + "modify": 174, + "delete": 9, + "area": 0.000230684812500018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117692001, + "host": "pietervdvn.github.io", + "move": 150, + "path": "mc/develop/", + "theme": "grb", + "answer": 2, + "import": 38, + "locale": "nl", + "imagery": "osm", + "conflation": 48 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2654473, + 50.82788725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T16:58:58Z", + "reviewed_features": [], + "create": 0, + "modify": 75, + "delete": 0, + "area": 0.000881281447999906, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117691167, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 108, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5834117, + 53.010602399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T16:55:10Z", + "reviewed_features": [], + "create": 870, + "modify": 340, + "delete": 7, + "area": 0.0000617265101199917, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117691031, + "host": "pietervdvn.github.io", + "move": 289, + "path": "mc/develop/", + "theme": "grb", + "answer": 11, + "import": 108, + "locale": "nl", + "imagery": "osm", + "conflation": 104 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2672155499999995, + 50.8317647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T16:46:01Z", + "reviewed_features": [], + "create": 296, + "modify": 244, + "delete": 0, + "area": 0.00000812852190000724, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117690709, + "host": "pietervdvn.github.io", + "move": 176, + "path": "mc/develop/", + "theme": "grb", + "answer": 3, + "import": 30, + "locale": "nl", + "imagery": "osm", + "conflation": 50 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2616125, + 50.82870455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-21T16:45:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117690673, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7474407, + 51.0359087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-21T16:36:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117690291, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7400267, + 51.0335731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 531, + "name": "Mapbox: Overlapping features" + } + ], + "tags": [], + "features": [ + { + "url": "way-1033439185", + "osm_id": 1033439185, + "reasons": [ + 531 + ], + "version": 3 + }, + { + "url": "way-1033895318", + "osm_id": 1033895318, + "reasons": [ + 531 + ], + "version": 1 + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T16:34:04Z", + "reviewed_features": [], + "create": 28, + "modify": 59, + "delete": 8, + "area": 0.0000554975853600271, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117690222, + "host": "pietervdvn.github.io", + "move": 50, + "path": "mc/develop/", + "theme": "grb", + "answer": 5, + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2557507999999995, + 50.8252911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 531, + "name": "Mapbox: Overlapping features" + } + ], + "tags": [], + "features": [ + { + "url": "way-1033884563", + "osm_id": 1033884563, + "reasons": [ + 531 + ], + "version": 1 + }, + { + "url": "way-98538396", + "osm_id": 98538396, + "reasons": [ + 531 + ], + "version": 3 + }, + { + "url": "way-1033884564", + "osm_id": 1033884564, + "reasons": [ + 531 + ], + "version": 1 + }, + { + "url": "way-1033884438", + "osm_id": 1033884438, + "reasons": [ + 531 + ], + "version": 1 + }, + { + "url": "way-1033880213", + "osm_id": 1033880213, + "reasons": [ + 531 + ], + "version": 1 + }, + { + "url": "way-1033880003", + "osm_id": 1033880003, + "reasons": [ + 531 + ], + "version": 1 + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T15:58:56Z", + "reviewed_features": [], + "create": 560, + "modify": 1052, + "delete": 31, + "area": 0.0000960487445799873, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117688586, + "host": "pietervdvn.github.io", + "move": 833, + "path": "mc/develop/", + "theme": "grb", + "answer": 20, + "import": 68, + "locale": "nl", + "imagery": "osm", + "conflation": 212 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24477685, + 50.829142000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T15:55:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117688367, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.5570567, + -33.0216785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T14:39:40Z", + "reviewed_features": [], + "create": 432, + "modify": 78, + "delete": 0, + "area": 0.000027795181249997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117685113, + "host": "pietervdvn.github.io", + "move": 68, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "import": 50, + "locale": "nl", + "imagery": "osm", + "conflation": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25344625, + 50.83086175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T14:27:22Z", + "reviewed_features": [], + "create": 623, + "modify": 13, + "delete": 0, + "area": 0.00000727189471997163, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117684480, + "host": "pietervdvn.github.io", + "move": 12, + "path": "mc/develop/", + "theme": "grb", + "import": 76, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2522791, + 50.83090465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DIrish", + "uid": "12410778", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-21T11:34:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117677364, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.8539023, + 51.9366818 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-21T11:06:24Z", + "reviewed_features": [], + "create": 29, + "modify": 21, + "delete": 0, + "area": 0.000497474609609871, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117676012, + "host": "mapcomplete.osm.be", + "move": 19, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 4, + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0466802499999996, + 51.03586975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T07:52:52Z", + "reviewed_features": [], + "create": 0, + "modify": 42, + "delete": 0, + "area": 11.5020403986403, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117667455, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 46, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.4583033, + 11.50759205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T07:32:37Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000242906544799959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117666698, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3645716, + 50.80694865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AlexeyTyur", + "uid": "10509852", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-21T05:23:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117663014, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -119.66929915, + 34.4169059 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-21T00:21:01Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.721163756108885, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117658698, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1277133, + 51.0764756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T22:43:38Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.000128714934040037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117657311, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 45, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2538014, + 48.973363899999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-454878964", + "osm_id": 454878964, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "building": "porch" + } + } + ], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-20T20:34:46Z", + "reviewed_features": [], + "create": 7, + "modify": 116, + "delete": 11, + "area": 0.00000137731899999293, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117653833, + "host": "mapcomplete.osm.be", + "move": 104, + "theme": "grb", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 32, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.958928650000001, + 51.1004762 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-20T20:28:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.23689999998805e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117653634, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2235657, + 50.714269 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mraedis", + "uid": "12983705", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T19:22:34Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117651633, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/300236235": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0884057, + 51.1506821 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #waste_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-20T18:51:52Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 7.66380000047029e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117650607, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste_assen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2158116999999997, + 51.20405975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 531, + "name": "Mapbox: Overlapping features" + } + ], + "tags": [], + "features": [ + { + "url": "way-1033596638", + "osm_id": 1033596638, + "reasons": [ + 531 + ], + "version": 1 + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T18:42:08Z", + "reviewed_features": [], + "create": 323, + "modify": 1121, + "delete": 72, + "area": 0.000584916596210053, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117650282, + "host": "pietervdvn.github.io", + "move": 1016, + "path": "mc/develop/", + "theme": "grb", + "import": 108, + "locale": "nl", + "imagery": "osm", + "conflation": 232 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.253318849999999, + 50.83413275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T18:27:01Z", + "reviewed_features": [], + "create": 277, + "modify": 481, + "delete": 42, + "area": 0.0000856528348800213, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117649814, + "host": "pietervdvn.github.io", + "move": 442, + "path": "mc/develop/", + "theme": "grb", + "import": 31, + "locale": "nl", + "imagery": "osm", + "conflation": 86 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2581906, + 50.8323748 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T17:27:04Z", + "reviewed_features": [], + "create": 0, + "modify": 143, + "delete": 0, + "area": 0.00014313309629999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117647862, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 199, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5947438, + 53.022429450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T17:14:26Z", + "reviewed_features": [], + "create": 0, + "modify": 56, + "delete": 0, + "area": 0.0661729169800778, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117647405, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 67, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5762536, + 54.8076663 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-20T15:34:17Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117643688, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9123962, + 51.2325667 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T13:55:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117639869, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4221973, + 51.2272026 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T13:49:07Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000345742592799915, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117639619, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4190024, + 51.22624605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T13:26:11Z", + "reviewed_features": [], + "create": 0, + "modify": 111, + "delete": 0, + "area": 0.000258762142790056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117638731, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 138, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26278215, + 48.96976935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-20T13:05:52Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117637920, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 9, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4036164, + 50.809936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-20T12:56:53Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.11300000035253e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117637586, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2, + "move:node/6578523236": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9184841500000003, + 51.2336684 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T11:43:46Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 1, + "area": 0.00208179915800009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117634797, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/9521399614": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.582080700000001, + 51.32804335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + }, + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JensTi", + "uid": "57212", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T11:41:06Z", + "reviewed_features": [], + "create": 1915, + "modify": 0, + "delete": 0, + "area": 0.0000603598720999904, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117634699, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 246, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0793567, + 50.754021050000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 531, + "name": "Mapbox: Overlapping features" + } + ], + "tags": [], + "features": [ + { + "url": "way-335186053", + "osm_id": 335186053, + "reasons": [ + 531 + ], + "version": 5 + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T10:44:44Z", + "reviewed_features": [], + "create": 703, + "modify": 797, + "delete": 8, + "area": 0.0000557158581600184, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117632733, + "host": "pietervdvn.github.io", + "move": 711, + "path": "mc/develop/", + "theme": "grb", + "answer": 42, + "import": 148, + "locale": "nl", + "imagery": "osm", + "conflation": 170 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2581238, + 50.83558 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T10:16:04Z", + "reviewed_features": [], + "create": 186, + "modify": 285, + "delete": 2, + "area": 0.0000284558868199942, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117631748, + "host": "pietervdvn.github.io", + "move": 234, + "path": "mc/develop/", + "theme": "grb", + "import": 22, + "locale": "nl", + "imagery": "osm", + "conflation": 76 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2580507, + 50.831118450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 531, + "name": "Mapbox: Overlapping features" + } + ], + "tags": [], + "features": [ + { + "url": "way-993988122", + "osm_id": 993988122, + "reasons": [ + 531 + ], + "version": 2 + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T09:31:49Z", + "reviewed_features": [], + "create": 748, + "modify": 1617, + "delete": 54, + "area": 0.000247262077819999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117630355, + "host": "pietervdvn.github.io", + "move": 1458, + "path": "mc/develop/", + "theme": "grb", + "import": 160, + "locale": "nl", + "imagery": "osm", + "conflation": 380 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25181555, + 50.827226800000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-20T08:02:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117628089, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8804295, + 51.060373 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T07:54:24Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.42753599996893e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117627949, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42377305, + 51.2259375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T06:35:34Z", + "reviewed_features": [], + "create": 0, + "modify": 35, + "delete": 0, + "area": 21.3692873444107, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117626715, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 41, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 77.8249553, + 10.92797195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-20T03:58:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117625125, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1173875, + 51.1903503 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-20T03:24:56Z", + "reviewed_features": [], + "create": 0, + "modify": 44, + "delete": 0, + "area": 0.00418329781755976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117624804, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 51, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06808635, + 51.1833245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DIrish", + "uid": "12410778", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T01:26:18Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117623777, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.8431746, + 51.9501586 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DIrish", + "uid": "12410778", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-20T01:21:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117623739, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.8430324, + 51.9471046 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T23:12:45Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000562750548000126, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117622160, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3494464, + 50.8228972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T23:09:25Z", + "reviewed_features": [], + "create": 0, + "modify": 42, + "delete": 0, + "area": 0.0102508537890209, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117622099, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 64, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4662115, + 54.91114225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T23:06:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000155999305889961, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117622045, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3399389500000005, + 50.82362395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9520600811", + "osm_id": 9520600811, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-9520608252", + "osm_id": 9520608252, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T22:55:31Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000305843903996136, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117621826, + "host": "mapcomplete.osm.be", + "theme": "maps", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3677588, + 50.820933249999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T22:53:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117621783, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3609946, + 50.8267762 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T20:58:12Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0264013548962101, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117619307, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "nature", + "answer": 9, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58519365, + 51.34383345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T20:51:22Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00147888699150048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117619069, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5762689000000005, + 51.32125585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T20:46:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00125279108252997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117618893, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "sport_pitches", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57997635, + 51.32388625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T19:12:35Z", + "reviewed_features": [], + "create": 384, + "modify": 708, + "delete": 12, + "area": 0.0000732356790599762, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117616270, + "host": "pietervdvn.github.io", + "move": 626, + "path": "mc/develop/", + "theme": "grb", + "import": 63, + "locale": "nl", + "imagery": "osm", + "conflation": 156 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25659825, + 50.8242301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T19:01:42Z", + "reviewed_features": [], + "create": 97, + "modify": 498, + "delete": 16, + "area": 0.0000251110288000018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117615998, + "host": "pietervdvn.github.io", + "move": 436, + "path": "mc/develop/", + "theme": "grb", + "import": 17, + "locale": "nl", + "imagery": "osm", + "conflation": 102 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.256039449999999, + 50.8224692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T18:51:09Z", + "reviewed_features": [], + "create": 82, + "modify": 501, + "delete": 6, + "area": 0.0000229504625799852, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117615727, + "host": "pietervdvn.github.io", + "move": 394, + "path": "mc/develop/", + "theme": "grb", + "import": 11, + "locale": "nl", + "imagery": "osm", + "conflation": 90 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2593141, + 50.82330155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T18:43:20Z", + "reviewed_features": [], + "create": 0, + "modify": 53, + "delete": 0, + "area": 0.01404361619, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117615532, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 78, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4486964, + 54.85742805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-19T17:39:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117613640, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5681294, + -33.5928661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T16:57:27Z", + "reviewed_features": [], + "create": 3611, + "modify": 243, + "delete": 4, + "area": 0.00059823691343993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117612320, + "host": "pietervdvn.github.io", + "move": 215, + "path": "mc/develop/", + "theme": "grb", + "answer": 3, + "import": 531, + "locale": "nl", + "imagery": "osm", + "conflation": 58 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25116805, + 50.8292922 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T16:21:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000386573472001109, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117610784, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.362288400000001, + 50.8505079 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-19T15:48:43Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 5.35533839995966e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117609480, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 10, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_50m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61201255, + 51.3119981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-19T15:46:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117609388, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6112833, + 51.3115995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stijnh", + "uid": "14414954", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T15:25:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117608520, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4200336, + 51.2279432 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-19T14:34:37Z", + "reviewed_features": [], + "create": 12, + "modify": 0, + "delete": 0, + "area": 0.0000218754708899944, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117606572, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "locale": "en", + "imagery": "GEOSN-DOP-RGB", + "change_over_5000m": 12, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.68386955, + 51.05450335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T13:44:15Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000659097618000009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117604643, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.198689, + 49.07217045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T13:13:53Z", + "reviewed_features": [], + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.00104607415219997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117603584, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 67, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.967124, + 50.399339049999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T12:28:27Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117601937, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9494185, + 50.0003985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T11:49:45Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.000205371751199991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117600697, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 14, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1807661, + 50.90741905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-19T06:59:31Z", + "reviewed_features": [], + "create": 0, + "modify": 36, + "delete": 6, + "area": 0.00000174257177999723, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117593015, + "host": "pietervdvn.github.io", + "move": 31, + "path": "mc/develop/", + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.257865450000001, + 50.842586600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T23:00:37Z", + "reviewed_features": [], + "create": 0, + "modify": 66, + "delete": 0, + "area": 0.00135333082133013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117585528, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 86, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 85 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91834915, + 51.11122125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T22:58:39Z", + "reviewed_features": [], + "create": 2, + "modify": 10, + "delete": 0, + "area": 2.24273000001594e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117585450, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9210056, + 51.10948815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T22:44:01Z", + "reviewed_features": [], + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.00754060948544049, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117584878, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 37, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4190899, + 54.810012 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T21:09:47Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.9891600001114e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117582035, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4186923, + 46.9409021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T20:59:44Z", + "reviewed_features": [], + "create": 5, + "modify": 1, + "delete": 0, + "area": 0.00000591373628999667, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117581674, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 7, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 3, + "change_within_50m": 2, + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42097545, + 46.93622285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T20:56:15Z", + "reviewed_features": [], + "create": 0, + "modify": 88, + "delete": 0, + "area": 0.00285463203219974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117581537, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 123, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.8155002, + 11.9259351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T18:37:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117577383, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3486899, + 50.8709543 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T17:33:06Z", + "reviewed_features": [], + "create": 1432, + "modify": 104, + "delete": 8, + "area": 0.000166077632719928, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117575150, + "host": "pietervdvn.github.io", + "move": 91, + "path": "mc/develop/", + "theme": "grb", + "import": 205, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 30 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.266670700000001, + 50.8455286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Zalitoar", + "uid": "79602", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T17:30:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117575061, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4036422, + -34.7801133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #https://paunofu.github.io/preguntesmc/policia_esp.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T17:26:26Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.80066000014401e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117574912, + "host": "mapcomplete.osm.be", + "theme": "https://paunofu.github.io/preguntesmc/policia_esp.json", + "answer": 5, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0300522, + 38.79186755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T17:22:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117574740, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9687056, + 51.3363691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chvp", + "uid": "9095231", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T17:12:32Z", + "reviewed_features": [], + "create": 245, + "modify": 15, + "delete": 0, + "area": 0.0000045545209499991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117574367, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "answer": 5, + "import": 24, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.283780650000001, + 51.22257845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #policia_esp", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T16:14:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.83835319999886e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117572259, + "host": "mapcomplete.osm.be", + "theme": "policia_esp", + "answer": 3, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0875193, + 38.836771049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9516997172", + "osm_id": 9516997172, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "cmitchusa", + "uid": "1884021", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T16:11:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117572151, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "maps", + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.1604184, + 36.8382338 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #policia_esp", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T14:34:55Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0102577957636008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117568096, + "host": "mapcomplete.osm.be", + "theme": "policia_esp", + "answer": 5, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.081399, + 38.8188128 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T14:21:45Z", + "reviewed_features": [], + "create": 0, + "modify": 34, + "delete": 0, + "area": 0.000167642014039975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117567512, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 44, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 39, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5093747, + 52.9962635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T14:12:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117567044, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "bicycle_rental", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5608821, + 53.0166042 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T14:11:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117567010, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5636561, + 53.00961 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T14:04:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117566718, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "bookcases", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5640763, + 53.0198777 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #https://paunofu.github.io/preguntesmc/policia_esp.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T11:00:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117559177, + "host": "mapcomplete.osm.be", + "theme": "https://paunofu.github.io/preguntesmc/policia_esp.json", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11613, + 38.8415084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T10:20:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117557459, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5801717, + 53.0106033 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T09:56:16Z", + "reviewed_features": [], + "create": 1313, + "modify": 1109, + "delete": 6, + "area": 0.000325233039040081, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117556311, + "host": "mapcomplete.osm.be", + "move": 984, + "theme": "grb", + "import": 216, + "locale": "nl", + "imagery": "osm", + "conflation": 264 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36098305, + 50.7982408 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T09:44:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117555737, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8971894, + 51.0036997 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T09:40:11Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000182360535999818, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117555547, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.4058834, + -33.9004137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T09:35:33Z", + "reviewed_features": [], + "create": 0, + "modify": 68, + "delete": 0, + "area": 0.000534953493399973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117555303, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 85, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.4077087, + -33.9125952 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T09:25:59Z", + "reviewed_features": [], + "create": 539, + "modify": 177, + "delete": 4, + "area": 0.0000657808746999316, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117554863, + "host": "mapcomplete.osm.be", + "move": 153, + "theme": "grb", + "answer": 1, + "import": 134, + "locale": "nl", + "imagery": "osm", + "conflation": 46 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34409655, + 50.8053114 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T09:24:23Z", + "reviewed_features": [], + "create": 26, + "modify": 7, + "delete": 0, + "area": 8.11832519999557e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117554781, + "host": "mapcomplete.osm.be", + "move": 6, + "theme": "grb", + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.343177900000001, + 50.80846735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T08:54:30Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.000313093499939938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117553403, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 44, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2810289, + 51.06923715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.16.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T04:54:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.24219999711115e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117545992, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.36404435, + -34.6337973 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T03:26:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.85656799996562e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117544538, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2132447, + 51.2101303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T03:20:39Z", + "reviewed_features": [], + "create": 2, + "modify": 51, + "delete": 6, + "area": 5.8656222000283e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117544474, + "host": "mapcomplete.osm.be", + "move": 47, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9207621, + 51.10922505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T03:09:37Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000448095477200067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117544352, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 15, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9292371, + 51.1132221 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T02:46:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117544111, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7038135, + 51.050521 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://paunofu.github.io/preguntesmc/policia_esp.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-18T01:58:49Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.022437050956139, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117543583, + "host": "mapcomplete.osm.be", + "theme": "https://paunofu.github.io/preguntesmc/policia_esp.json", + "answer": 6, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0345983, + 38.78271505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-18T00:55:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.39289500040954e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117542792, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.50434325, + 11.62428085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-17T21:22:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.60086900007151e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117538787, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.418889849999999, + 51.093279550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-17T21:19:17Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117538710, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4187734, + 51.0932372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-17T21:15:59Z", + "reviewed_features": [], + "create": 1589, + "modify": 262, + "delete": 7, + "area": 0.000846136346180202, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117538582, + "host": "mapcomplete.osm.be", + "move": 227, + "theme": "grb", + "answer": 11, + "import": 204, + "locale": "nl", + "imagery": "osm", + "conflation": 56 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3427589, + 50.80960905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-17T21:13:45Z", + "reviewed_features": [], + "create": 200, + "modify": 0, + "delete": 0, + "area": 0.0000117351041499862, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117538507, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 27, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35517015, + 50.807496549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/develop/assets/themes/OpenAsianMap/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-17T20:53:45Z", + "reviewed_features": [], + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.0956389928385996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117537838, + "host": "mapcomplete.osm.be", + "theme": "gh://hopperpop/openasianmap/develop/assets/themes/openasianmap/openasianmap.json", + "answer": 10, + "locale": "en", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48132325, + 50.93804 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.15.8", + "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-02-17T20:28:23Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.107660920982521, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117536892, + "host": "mapcomplete.osm.be", + "theme": "gh://hopperpop/openasianmap/main/assets/themes/openasianmap/openasianmap.json", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2279009, + 51.080314900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-17T17:54:12Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117532300, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0688051, + 51.1265552 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-17T16:19:08Z", + "reviewed_features": [], + "create": 0, + "modify": 202, + "delete": 0, + "area": 0.00703423601459941, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117528809, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 262, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.4094967, + -33.9696225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-17T16:03:38Z", + "reviewed_features": [], + "create": 1151, + "modify": 66, + "delete": 0, + "area": 0.000154594606180019, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117528200, + "host": "mapcomplete.osm.be", + "move": 49, + "theme": "grb", + "answer": 9, + "import": 180, + "locale": "nl", + "imagery": "osm", + "conflation": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35177685, + 50.8059123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #policia_esp", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-17T15:05:55Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00123916183356001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117525975, + "host": "mapcomplete.osm.be", + "theme": "policia_esp", + "answer": 3, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12411449999999999, + 38.7803806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-17T14:25:11Z", + "reviewed_features": [], + "create": 0, + "modify": 39, + "delete": 0, + "area": 0.00140261399928001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117524326, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 39, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.49463610000001, + 11.6126132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-17T13:41:42Z", + "reviewed_features": [], + "create": 80, + "modify": 19, + "delete": 0, + "area": 0.0048340005354199, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117522251, + "host": "pietervdvn.github.io", + "move": 17, + "path": "mc/develop/", + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 4, + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1779159999999997, + 50.92685245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 41, + "name": "Software editor was not declared" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": null, + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-17T13:36:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117522028, + "theme": "toerisme_vlaanderen", + "import": 1, + "deletion": 1, + "change_over_5000m": 2, + "import:node/9513916030": "source: https://osm.org/note/3023056", + "deletion:node/9513916030": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2323273, + 51.1000423 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-17T13:34:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117521968, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "SPW_ORTHO_LAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8436157, + 50.7039922 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-17T13:21:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117521358, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.449889, + 51.0925228 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-17T12:49:05Z", + "reviewed_features": [], + "create": 4, + "modify": 18, + "delete": 0, + "area": 4.33175309993757e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117520150, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34470245, + 50.80090285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-17T12:40:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117519867, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4296276, + 46.9541534 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-17T11:37:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117517111, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3957105, + 51.0406149 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-17T11:36:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117517074, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2392253, + 50.734922 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-17T11:12:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117515628, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2269861, + 51.2216144 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Angelo Lisco", + "uid": "12906729", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-17T09:59:42Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.000171178663890016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117512137, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 19, + "locale": "it", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.18249535, + 45.480880850000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-17T06:20:10Z", + "reviewed_features": [], + "create": 3, + "modify": 37, + "delete": 0, + "area": 0.00000210963084000256, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117503612, + "host": "mapcomplete.osm.be", + "move": 34, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.244587, + 51.18730625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-16T23:21:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117497216, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7205239, + 51.026665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-16T23:13:42Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 1.31804400016861e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117497117, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 4, + "change_over_5000m": 4, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.36415195000001, + -34.633951100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.15.8", + "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-02-16T22:45:56Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.0457186849892531, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117496566, + "host": "mapcomplete.osm.be", + "theme": "gh://hopperpop/openasianmap/main/assets/themes/openasianmap/openasianmap.json", + "answer": 8, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07539205, + 50.92742955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T22:41:53Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.00394974579366021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117496475, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 35, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6340651, + 54.86112405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-16T22:14:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117495889, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7151089, + 51.024678 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T21:55:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117495391, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7205239, + 51.026665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-16T21:45:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117495182, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0015773, + 51.2654787 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T20:00:34Z", + "reviewed_features": [], + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.0085797934878698, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117491810, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 41, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59383095, + 54.64609315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T19:50:15Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000159348869400024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117491489, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 15, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.463167049999999, + 50.7735011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T19:44:38Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117491266, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1619664, + 51.1035935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dasrakel", + "uid": "673393", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-16T16:37:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117484485, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1204873, + 50.9447481 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-16T15:44:40Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117482285, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4593111, + 51.0391101 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dasrakel", + "uid": "673393", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-16T15:32:52Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117481817, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1300655, + 50.9491472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-16T14:20:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.32832920000152e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117479097, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "postboxes", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.214, + 51.20484985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dasrakel", + "uid": "673393", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T12:55:47Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00000334240790000602, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117475720, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12630425, + 50.946223399999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T10:31:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117469991, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "locale": "en", + "add-image": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7041469, + 51.0508861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #policia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T10:23:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117469662, + "host": "mapcomplete.osm.be", + "theme": "policia", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7786352, + 39.6473863 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T08:17:01Z", + "reviewed_features": [], + "create": 11, + "modify": 3, + "delete": 0, + "area": 0.047312824505701, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117464857, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "PNOA-Spain-TMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00048125, + 41.266209599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T08:13:17Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 5.5936424000017e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117464726, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "PNOA-Spain-TMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9085326, + 41.1377485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T08:07:02Z", + "reviewed_features": [], + "create": 2, + "modify": 29, + "delete": 0, + "area": 0.00000264160511999357, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117464533, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 29, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9086839, + 41.1381546 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T08:04:16Z", + "reviewed_features": [], + "create": 3, + "modify": 1, + "delete": 0, + "area": 9.61569620005873e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117464419, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.909177, + 41.13798585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T08:02:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00160173471609056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117464351, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00608835, + 41.14150015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #policia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T02:04:06Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0106854549608004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117457096, + "host": "mapcomplete.osm.be", + "theme": "policia", + "answer": 6, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.039957599999999996, + 38.7938045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.15.8", + "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-02-15T22:26:09Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000013911295680006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117453659, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 17, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7230294000000002, + 41.2215123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #policia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T21:41:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.62565959998223e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117452493, + "host": "mapcomplete.osm.be", + "theme": "policia", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12545395, + 38.9246067 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T19:49:54Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000445046332799785, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117449421, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5868946, + 54.699118999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T19:37:59Z", + "reviewed_features": [], + "create": 34, + "modify": 96, + "delete": 0, + "area": 0.00187154913067983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117449082, + "host": "mapcomplete.osm.be", + "move": 86, + "theme": "grb", + "answer": 4, + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01026755, + 51.1412806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + }, + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JensTi", + "uid": "57212", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T19:10:19Z", + "reviewed_features": [], + "create": 2792, + "modify": 9, + "delete": 0, + "area": 0.000427762375040024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117448329, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 9, + "import": 339, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0863391, + 50.7549276 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.15.8", + "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-02-15T18:08:40Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00382693492044069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117446527, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 11, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1575371, + 41.5192789 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T15:36:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117441334, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0500179, + 52.2456512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lenezir", + "uid": "299539", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T15:19:16Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000513138213000518, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117440772, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 6, + "locale": "fr", + "imagery": "osm", + "change_within_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63879255, + 43.44335065 + ] + } + }, + { + "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-02-15T14:42:15Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117439419, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7883325, + 53.0267663 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T14:15:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117438314, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7182358, + 51.0537752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #policia", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T13:38:32Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0294471418661003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117436964, + "host": "mapcomplete.osm.be", + "theme": "policia", + "answer": 5, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04458525, + 38.745986099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T13:28:18Z", + "reviewed_features": [], + "create": 7, + "modify": 17, + "delete": 0, + "area": 0.00000435760623999802, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117436594, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 2, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9947672, + 51.218186 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T13:21:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117436337, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7251733, + 51.0537177 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T13:06:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117435799, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7041469, + 51.0508861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T13:05:22Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.0000078264270299983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117435769, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 23, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90875515, + 41.13772655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T13:02:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000214938428550002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117435681, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91776795, + 41.14022375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T12:53:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000185412135999829, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117435353, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9093435, + 41.1382068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T12:48:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117435150, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7041469, + 51.0508861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-7113286712", + "name": "Font Vella", + "osm_id": 7113286712, + "reasons": [ + 42 + ], + "version": 4, + "primary_tags": { + "amenity": "drinking_water" + } + } + ], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T12:46:06Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000027295635899964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117435015, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9091858500000001, + 41.13696105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T12:44:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117434904, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9090906, + 41.1383502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T12:40:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117434769, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0921566, + 41.3943477 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T11:33:46Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000732996494399763, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117432037, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 20, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3341677999999995, + 51.126763999999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T10:39:12Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117429886, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9978749, + 52.0178661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T10:01:35Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.000684767872619997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117428420, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 29, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.396433699999999, + 51.09445185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T09:43:51Z", + "reviewed_features": [], + "create": 0, + "modify": 29, + "delete": 0, + "area": 0.00003797131584, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117427613, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 22, + "locale": "en", + "imagery": "osm", + "add-image": 10, + "change_within_25m": 32 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8097481, + 44.1349809 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.15.8", + "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-02-15T09:35:09Z", + "reviewed_features": [], + "create": 0, + "modify": 27, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117427236, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 32, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7781999, + 39.6470007 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T09:33:04Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117427140, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 6, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8198981, + 44.1290616 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T09:19:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117426633, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0500179, + 52.2456512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.15.8", + "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-02-15T09:18:45Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000428524569870031, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117426593, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 30, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22094855, + 41.52830585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "annuel", + "uid": "14551226", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T09:14:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117426389, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5878403, + 52.0747411 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T09:07:04Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 2.41250400001165e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117426122, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9091758, + 41.137894700000004 + ] + } + }, + { + "type": "Feature", + "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-02-15T08:43:42Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000254036475000084, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117425181, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.00924475, + 52.0909329 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T08:33:38Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 5.45183650003151e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117424772, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90877025, + 41.13826855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T08:19:24Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.0000153758587599979, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117424226, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 9, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6070158, + 42.965237 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T07:23:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117422010, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "locale": "en", + "imagery": "GEOSN-DOP-RGB", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6825596, + 51.060074 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pol Rojas", + "uid": "12632106", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T07:23:03Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 4.4071708999864e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117422006, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 13, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17336835, + 41.39285865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T07:10:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117421559, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7717385, + 39.6509155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T07:06:30Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000496582992000451, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117421407, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8341679, + 44.0602011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pol Rojas", + "uid": "12632106", + "editor": "MapComplete 0.15.8", + "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-02-15T07:04:54Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117421351, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 18, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1197808, + 41.3858675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #Comisaria", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T00:20:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.83835319999886e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117414634, + "host": "mapcomplete.osm.be", + "theme": "comisaria", + "answer": 1, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0875193, + 38.836771049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T00:01:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000398958095998377, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117414389, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0002554, + 51.163843299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T23:23:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117413850, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "locale": "en", + "imagery": "PNOA-Spain-TMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1163489, + 38.8326918 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "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-02-14T22:48:53Z", + "reviewed_features": [], + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.00191815785856944, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117413266, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 32, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.051675950000000005, + 38.83136675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T22:09:13Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00169175595000006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117412442, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 22, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8471685, + 54.8557585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "complete_gth", + "uid": "9837674", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T20:56:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000100713439680076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117410571, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7386792, + 50.9441082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alex_lofi", + "uid": "6816316", + "editor": "MapComplete 0.15.8", + "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-02-14T20:47:39Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117410300, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 15, + "locale": "es", + "imagery": "osm", + "change_within_500m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.5713944, + 37.1343799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T20:38:37Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000639281520002758, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117410026, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3585625, + 50.8484356 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.15.8", + "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-02-14T20:31:24Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 2.12366720001794e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117409761, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 10, + "locale": "ca", + "imagery": "osm", + "change_within_1000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2194003, + 41.4440369 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "msevilla00", + "uid": "240498", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T20:29:40Z", + "reviewed_features": [], + "create": 5, + "modify": 2, + "delete": 0, + "area": 0.0125160210793797, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117409709, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.848376, + 41.70134615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T20:03:54Z", + "reviewed_features": [], + "create": 15, + "modify": 16, + "delete": 0, + "area": 0.0000238743854500156, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117408885, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 25, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60713235, + 42.96446105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jqngarcia", + "uid": "5126253", + "editor": "MapComplete 0.15.8", + "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-02-14T19:52:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.62288529998133e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117408538, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21032245, + 41.443957850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "msevilla00", + "uid": "240498", + "editor": "MapComplete 0.15.8", + "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-02-14T19:48:19Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117408411, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 25, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.7971125, + 41.7622362 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robot8A", + "uid": "393359", + "editor": "MapComplete 0.15.8", + "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-02-14T19:37:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.10639640002543e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117408081, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 2, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8981497, + 41.64032495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "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-02-14T19:09:14Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 4.65645279997226e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117407110, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 25, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1000843, + 41.1541194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "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-02-14T18:59:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.06268249998789e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117406747, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 3, + "locale": "es", + "imagery": "osm", + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10496275, + 38.840185149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.15.8", + "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-02-14T18:58:12Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117406606, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 5, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8121879, + 41.235172 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lmagreault", + "uid": "260065", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T18:21:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.04362650001831e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117404833, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7004119499999995, + 46.579131149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T15:51:26Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 5.35003349999433e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117399314, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.35530075, + 47.79740325 + ] + } + }, + { + "type": "Feature", + "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-02-14T15:12:29Z", + "reviewed_features": [], + "create": 27, + "modify": 30, + "delete": 0, + "area": 0.00809026408574927, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117397830, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.005525850000001, + 52.02807425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "womped", + "uid": "1880469", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T15:05:58Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000652384235499885, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117397579, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.02623015, + 49.58834715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cabinetcourbi", + "uid": "6231864", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T14:43:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117396671, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8090181, + 43.9481107 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cbeddow", + "uid": "2611295", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T14:36:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117396402, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cafes_and_pubs", + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5447577, + 47.0497303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T14:19:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117395644, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "facadegardens", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8092148, + 43.9474749 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T14:01:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.09940800001334e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117394914, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.746034, + 44.095681049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T13:37:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117393993, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2493381, + -39.8101576 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T13:32:49Z", + "reviewed_features": [], + "create": 4, + "modify": 18, + "delete": 0, + "area": 0.0080653444841389, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117393848, + "host": "mapcomplete.osm.be", + "split": 5, + "theme": "street_lighting", + "answer": 16, + "locale": "en", + "imagery": "osm", + "relation-fix": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82105765, + 44.114283900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #scales", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T13:24:36Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0773028109039203, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117393533, + "host": "mapcomplete.osm.be", + "theme": "scales", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46976815, + 51.140026399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T13:19:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117393391, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8109643, + 44.1372512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T13:05:44Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000920072181599986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117392902, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 11, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4, + "change_within_1000m": 2, + "change_within_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81541565, + 44.1316888 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T13:04:11Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0000338967158399833, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117392861, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40328985, + 51.101978599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cabinetcourbi", + "uid": "6231864", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T10:50:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117387639, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8041136, + 44.1362959 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T09:54:28Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.00011725700990004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117385529, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6126398, + 37.184991749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T08:20:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117381876, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2273985, + 50.9308739 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T02:09:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117374161, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0614534, + 51.1419182 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T02:06:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117374142, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0614835, + 51.1418862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T01:55:12Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00162271236297987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117374038, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_5000m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09546145, + 51.1285031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T01:52:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.29186550004931e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117374015, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07729825, + 51.13039995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "complete_gth", + "uid": "9837674", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T22:27:05Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117371343, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7315329, + 50.9445605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T21:32:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117370208, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2356964, + 50.7318568 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-177394410", + "name": "Robert-Koch-Straße", + "osm_id": 177394410, + "reasons": [ + 87 + ], + "version": 3, + "primary_tags": { + "highway": "residential" + } + } + ], + "user": "complete_gth", + "uid": "9837674", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T21:14:43Z", + "reviewed_features": [], + "create": 0, + "modify": 152, + "delete": 0, + "area": 0.00228942764819996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117369597, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 233, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7024805, + 50.94857965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T19:49:25Z", + "reviewed_features": [], + "create": 0, + "modify": 63, + "delete": 0, + "area": 0.0431145626717401, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117367225, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 78, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4024667, + 54.751086150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T18:42:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117365388, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "locale": "en", + "imagery": "osm", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4794074, + 51.0276134 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T18:40:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117365307, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.482333, + 51.028025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T16:10:24Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000628012638870147, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117360267, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 17, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.61090415, + 37.18418895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T15:44:03Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00593414459932629, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117359158, + "host": "mapcomplete.osm.be", + "theme": "gh://hopperpop/openasianmap/main/openasianmap.json", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80863725, + 51.22239715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T15:13:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.70694639995571e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117357944, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8675501, + 51.13203945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T14:58:58Z", + "reviewed_features": [], + "create": 0, + "modify": 107, + "delete": 0, + "area": 0.103335514497391, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117357360, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 155, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43328005, + 54.71528935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T14:28:14Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117356151, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1083015, + 50.9184127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T13:43:24Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00137637928184003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117354491, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4959851, + 51.00591035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T13:40:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117354388, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0059036, + 52.2450926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T13:34:59Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00169528443830996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117354149, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 14, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58585385, + 54.88974535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-642622181", + "name": "Kinderspielplatz im Dütetal", + "osm_id": 642622181, + "reasons": [ + 42 + ], + "version": 6, + "primary_tags": {} + } + ], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T13:31:17Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 7.53891599991806e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117354018, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "playgrounds", + "answer": 6, + "locale": "de", + "imagery": "osm", + "soft-delete": 1, + "soft-delete:way/642622181": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.005482149999999, + 52.244985799999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T13:28:32Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117353930, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 7, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.005439, + 52.2449605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Gregory Williams", + "uid": "7037", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T11:50:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117350688, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "import": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0566118, + 51.268894 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T09:43:13Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.0109055222702116, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117346566, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68329015, + 54.82907195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T07:51:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117344110, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0495579, + 52.2553818 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #libraries", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T23:11:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.99002279998791e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117338550, + "host": "mapcomplete.osm.be", + "theme": "libraries", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7148795, + 41.2217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T23:04:31Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.0000737489202999912, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117338381, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8673936, + 54.83841955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T23:03:58Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 1.73008110001977e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117338372, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 14, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 3, + "change_over_5000m": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00874315, + 50.83891495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T23:02:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117338341, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9727818, + 50.8137419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T21:19:41Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117336229, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9727818, + 50.8137419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T21:16:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117336170, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "bookcases", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_within_25m": 1, + "change_within_50m": 1, + "move:node/9246056984": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.249092, + 50.7412338 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T21:16:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117336169, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9727818, + 50.8137419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T21:03:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117335842, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2431303, + 51.2060932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T20:53:30Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0000682430154000047, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117335595, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 25, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.472813, + 51.43154145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T20:45:32Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000196648986001323, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117335414, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98087175, + 51.2039646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T20:03:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117334399, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3705808, + 50.858798 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T18:21:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000490618759998795, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117331601, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.591588, + 54.795310799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T18:06:16Z", + "reviewed_features": [], + "create": 0, + "modify": 100, + "delete": 0, + "area": 0.245877827420482, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117331164, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 126, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5380011, + 51.128620600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T16:58:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117329143, + "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.2053054, + 50.9045053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T16:22:27Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000149499209999784, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117327859, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 12, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7, + "change_within_500m": 7, + "move:node/1708952679": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.060921049999999, + 51.1425507 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T16:04:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117327088, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 3, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9755501, + 51.200799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T15:24:43Z", + "reviewed_features": [], + "create": 0, + "modify": 87, + "delete": 0, + "area": 0.446045017155219, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117325641, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 118, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84673305, + 51.025188400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T15:19:27Z", + "reviewed_features": [], + "create": 6, + "modify": 3, + "delete": 0, + "area": 1.1366288000014e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117325420, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "answer": 13, + "import": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 7, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6054129000000001, + 52.2878507 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T14:38:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117323869, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.389842, + 51.0924857 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T14:37:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117323851, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3896566, + 51.0928654 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T13:38:15Z", + "reviewed_features": [], + "create": 0, + "modify": 70, + "delete": 0, + "area": 0.00218779727420004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117321792, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 95, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0949215500000005, + 50.923219200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T12:25:16Z", + "reviewed_features": [], + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.0393324001693999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117319351, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 91, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4825216499999998, + 54.7606524 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T12:12:05Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000119695415499967, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117318921, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48132485, + 51.030765450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T11:59:40Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.000184995125639949, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117318583, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18356845, + 50.9019296 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T10:51:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117316426, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0101024, + 51.1280572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T10:26:11Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00442422258415994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117315711, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7676228, + 51.165043100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T09:56:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.90061950000558e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117314758, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22282455, + 50.93005145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "k4pl4n", + "uid": "11229531", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #vegan", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T01:05:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117307299, + "theme": "vegan", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4067009, + 49.0058082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T00:27:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117306917, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3579497, + 50.8677288 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T00:25:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000338467525270024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117306895, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37119715, + 50.86158505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T00:12:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000238274606769976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117306735, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35150055, + 50.85828535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T23:21:15Z", + "reviewed_features": [], + "create": 0, + "modify": 139, + "delete": 0, + "area": 0.0128278237787205, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117305997, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 236, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.223801, + 51.217234399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T23:13:27Z", + "reviewed_features": [], + "create": 48, + "modify": 22, + "delete": 0, + "area": 0.0000176368689500045, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117305884, + "host": "mapcomplete.osm.be", + "move": 21, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08663425, + 51.098935749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T19:55:02Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 1.24045560002469e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117301022, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 9, + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76757355000001, + -33.489257800000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T17:49:13Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 1.35885120000903e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117297205, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7026322, + 51.0507195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8024991201", + "osm_id": 8024991201, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "shop": "brass_instruments" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T17:38:10Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 9.01651999984962e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117296852, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "shops", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "move:node/8024991201": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.702182, + 51.0510151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T17:18:21Z", + "reviewed_features": [], + "create": 66, + "modify": 0, + "delete": 0, + "area": 0.00000795072137998792, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117296102, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "Surrey-Air_Survey", + "change_over_5000m": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6112112000000001, + 51.18754945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T17:05:04Z", + "reviewed_features": [], + "create": 30, + "modify": 0, + "delete": 0, + "area": 0.00000574917770000133, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117295625, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "Surrey-Air_Survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6129124, + 51.18727935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 83, + "name": "User has multiple blocks" + } + ], + "tags": [], + "features": [], + "user": "rodolfovargas", + "uid": "1217047", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T16:49:51Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000265520794000014, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117295023, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 14, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -68.153109, + -16.524512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T15:16:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.82327199999694e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117292039, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "buurtnatuur", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7363807500000004, + 51.0547579 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T14:45:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117290881, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7036753, + 51.0489713 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T14:43:40Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 4.79922159999307e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117290798, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "Surrey-Air_Survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61240665, + 51.185958799999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T14:39:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.78376369995346e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117290651, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7009465500000003, + 51.053537250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T14:35:12Z", + "reviewed_features": [], + "create": 80, + "modify": 510, + "delete": 10, + "area": 0.000167040742690075, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117290521, + "host": "mapcomplete.osm.be", + "move": 449, + "theme": "grb", + "answer": 2, + "import": 8, + "locale": "nl", + "imagery": "AGIV", + "conflation": 128 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.039327650000001, + 51.16185715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9498240425", + "osm_id": 9498240425, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T14:34:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117290489, + "host": "mapcomplete.osm.be", + "theme": "maps", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6077781, + 51.1889232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T14:31:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.57163179997417e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117290398, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70216935, + 51.058794 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T13:29:49Z", + "reviewed_features": [], + "create": 940, + "modify": 0, + "delete": 0, + "area": 0.00000977924591998971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117288194, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 145, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 145 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2286577, + 50.956700600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T12:41:44Z", + "reviewed_features": [], + "create": 61, + "modify": 65, + "delete": 3, + "area": 0.000200738054520031, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117286674, + "host": "mapcomplete.osm.be", + "move": 56, + "theme": "grb", + "answer": 1, + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.050019799999999, + 51.147232599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T11:57:29Z", + "reviewed_features": [], + "create": 356, + "modify": 0, + "delete": 0, + "area": 0.00000323845038000038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117285094, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 45, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 45 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2345405, + 50.950699549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T11:22:06Z", + "reviewed_features": [], + "create": 0, + "modify": 39, + "delete": 0, + "area": 0.00189539978975995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117283702, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 72, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2609897, + 51.0822598 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joeybab3", + "uid": "8783843", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T06:32:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000416065628997944, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117273386, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.05421045, + 36.98852575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T03:32:25Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 2.61939739993927e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117269761, + "host": "pietervdvn.github.io", + "move": 4, + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2303648000000003, + 51.20210565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T01:50:29Z", + "reviewed_features": [], + "create": 99, + "modify": 0, + "delete": 0, + "area": 8.24775450005381e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117268208, + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 16, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23304755, + 50.956947650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T23:14:04Z", + "reviewed_features": [], + "create": 1363, + "modify": 11, + "delete": 0, + "area": 0.264789621125804, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117265715, + "host": "pietervdvn.github.io", + "move": 10, + "path": "mc/develop/", + "theme": "grb", + "import": 204, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7251993, + 51.084739049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T23:05:38Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000143525726399998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117265547, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9173372, + 51.08922025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T22:46:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117265193, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7096154, + 51.0349112 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T20:55:04Z", + "reviewed_features": [], + "create": 0, + "modify": 68, + "delete": 0, + "area": 0.127115024572478, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117261964, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 103, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82628115, + 54.6969143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:56:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117260011, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "en", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9979324, + 51.1655666 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:35:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117259394, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.942541, + 51.0934708 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:27:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117259168, + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5588466, + 50.7861103 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:20:49Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.2181586696027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117259010, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.301940650000001, + 50.9871752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:04:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0687662546338617, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117258567, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98379205, + 50.8396925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T18:26:12Z", + "reviewed_features": [], + "create": 0, + "modify": 43, + "delete": 0, + "area": 0.00192598286145003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117257353, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 58, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.60501505, + 37.17783205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T18:15:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117257071, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7004163, + 51.0535894 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T18:03:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00129441517515011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117256720, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33987605, + 50.84966905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T17:59:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.93813020002945e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117256602, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4499508500000005, + 50.7867584 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T17:46:55Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117256167, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4338323, + 50.8163334 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T16:54:55Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000016212426899974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117254536, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2296235500000003, + 51.20124525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T16:13:19Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.78981200000161e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117252707, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65965575, + 42.9136302 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T15:44:04Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.000102759123029981, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117251573, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6585090500000002, + 42.916419250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T15:25:20Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000182593782000022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117250931, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 13, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00058175, + 51.1588728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T14:18:04Z", + "reviewed_features": [], + "create": 175, + "modify": 0, + "delete": 0, + "area": 0.00000132942488999982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117248276, + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 22, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22646205, + 50.95457675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T13:52:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117247272, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7445464, + 51.041222 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T13:06:48Z", + "reviewed_features": [], + "create": 11, + "modify": 0, + "delete": 0, + "area": 1.28356800001321e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117245437, + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2271549, + 50.9545464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lattenzaun", + "uid": "2603279", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T12:53:45Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.000312531730559862, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117244900, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 32, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.4374369, + 51.30851925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 41, + "name": "Software editor was not declared" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": null, + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T12:27:22Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000594207852999994, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117244083, + "theme": "toerisme_vlaanderen", + "answer": 12, + "import": 2, + "import:node/9495257973": "source: https://osm.org/note/3044279", + "import:node/9495282428": "source: https://osm.org/note/3044139" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1975654, + 50.924038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T10:12:34Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000142921481999509, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117238352, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 18, + "locale": "en", + "imagery": "osm", + "change_within_25m": 16, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4294232000000004, + 46.95223085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lattenzaun", + "uid": "2603279", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T09:57:48Z", + "reviewed_features": [], + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.000147436880680092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117237763, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 38, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.4404786, + 51.30683205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sparkofska", + "uid": "15028493", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T09:34:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117236734, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.2858713, + 50.8866216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T05:50:15Z", + "reviewed_features": [], + "create": 0, + "modify": 109, + "delete": 0, + "area": 0.0147166456669596, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117228304, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 193, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9223640500000005, + 51.1093147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T04:25:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117226569, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.3379922, + -29.9535533 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marcel1109", + "uid": "14940118", + "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-02-09T23:32:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117222929, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5541946, + 52.0577699 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rejbzh", + "uid": "15051154", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T23:24:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117222795, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "fr", + "imagery": "fr.ign.bdortho" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6095722, + 42.960264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T23:03:38Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.000204124782880029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117222384, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 27, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 27 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9301259, + 51.0936796 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rejbzh", + "uid": "15051154", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:48:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 8.11762230002591e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117222003, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "fr.ign.bdortho", + "deletion": 1, + "deletion:node/9493709466": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6481919500000002, + 42.91931475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:43:28Z", + "reviewed_features": [], + "create": 533, + "modify": 13, + "delete": 0, + "area": 0.00000437973960998855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117221882, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "answer": 1, + "import": 70, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23152855, + 50.95920065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:39:09Z", + "reviewed_features": [], + "create": 25, + "modify": 0, + "delete": 0, + "area": 1.29470419999773e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117221776, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23170945, + 50.9593676 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:38:45Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 2.8156800001431e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117221761, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2319998000000005, + 50.9592019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:37:19Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 4.30737500005559e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117221726, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23211755, + 50.95863825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T21:58:45Z", + "reviewed_features": [], + "create": 134, + "modify": 0, + "delete": 0, + "area": 0.0000012432383199994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117220765, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 20, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6312961999999995, + 51.3481569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 70, + "name": "Impossible angle in a highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-736570673", + "name": "Westmorland Way", + "osm_id": 736570673, + "reasons": [ + 70 + ], + "version": 3, + "primary_tags": { + "highway": "primary" + } + }, + { + "url": "way-126044600", + "name": "Westmorland Way", + "osm_id": 126044600, + "reasons": [ + 70 + ], + "version": 2, + "primary_tags": { + "highway": "primary" + } + }, + { + "url": "way-736570670", + "name": "Westmorland Way", + "osm_id": 736570670, + "reasons": [ + 70 + ], + "version": 3, + "primary_tags": { + "highway": "primary" + } + } + ], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T21:18:26Z", + "reviewed_features": [], + "create": 0, + "modify": 43, + "delete": 0, + "area": 0.0400825428863997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117219747, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 62, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6448942999999998, + 55.2582255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marvin Geisler", + "uid": "13424339", + "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-02-09T20:35:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117218343, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5531508, + 52.0544254 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rejbzh", + "uid": "15051154", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T20:26:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117218067, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6485795, + 42.9187911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rejbzh", + "uid": "15051154", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T20:26:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117218051, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6485997, + 42.9187699 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 70, + "name": "Impossible angle in a highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-126044593", + "name": "Station Road", + "osm_id": 126044593, + "reasons": [ + 70 + ], + "version": 6, + "primary_tags": { + "highway": "primary" + } + }, + { + "url": "way-126044594", + "name": "Station Road", + "osm_id": 126044594, + "reasons": [ + 70 + ], + "version": 5, + "primary_tags": { + "highway": "secondary" + } + }, + { + "url": "way-125785869", + "name": "Stakeford Lane", + "osm_id": 125785869, + "reasons": [ + 70 + ], + "version": 4, + "primary_tags": { + "highway": "primary" + } + } + ], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T19:51:05Z", + "reviewed_features": [], + "create": 0, + "modify": 98, + "delete": 0, + "area": 0.0162084351371999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117217034, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 143, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56836845, + 55.1422099 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lattenzaun", + "uid": "2603279", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T19:33:32Z", + "reviewed_features": [], + "create": 0, + "modify": 84, + "delete": 0, + "area": 0.000437229224130107, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117216564, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 117, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43007285, + 51.30919625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T17:57:13Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 5.70685920000429e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117213496, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.640953, + 42.9185613 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T17:03:43Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117211444, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4294978, + 50.8067103 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T15:43:41Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000295323861000725, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117208566, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_1000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47771655, + 51.028050050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jas7100", + "uid": "15023699", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:48:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117206256, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "SPW_ORTHO_LAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3936619, + 50.4801134 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:43:39Z", + "reviewed_features": [], + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.00205493764451984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117205993, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 30, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.509296, + 11.6121965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:29:58Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00000871070819999706, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117205330, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6086410999999998, + 42.962588049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:29:57Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117205328, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6095722, + 42.960264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:29:49Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117205318, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6095936, + 42.960264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:29:14Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117205291, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6096097, + 42.960319 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mark Rogerson", + "uid": "14388354", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:22:29Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00476037562820004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117204967, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 13, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25795455, + 51.7141201 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:19:50Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000342445613260125, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117204832, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.47874895, + 11.608314499999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DNRvuP", + "uid": "15049065", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:02:05Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.7094008000296e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117204073, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4038968, + 50.3474326 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:01:26Z", + "reviewed_features": [], + "create": 9, + "modify": 4, + "delete": 0, + "area": 0.00000900986817000346, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117204046, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5409599499999995, + 51.22351245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T13:46:21Z", + "reviewed_features": [], + "create": 0, + "modify": 190, + "delete": 0, + "area": 0.638697690991675, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117203387, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 276, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4367402499999997, + 51.04148375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T13:11:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117201983, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "cyclosm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2450132, + -39.8149123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T12:09:58Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.00000208089727000232, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117199538, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 3, + "change_within_50m": 3, + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51970325, + 51.23128395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "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-02-09T12:08:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117199461, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/verkeerdebordendatabank/verkeerdebordendatabank.json", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2410496, + 51.2064575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nicolas2b54", + "uid": "14828783", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T10:46:20Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.000222428175280065, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117196396, + "host": "mapcomplete.osm.be", + "theme": "sidewalks", + "answer": 32, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4348868, + 48.83941945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T10:19:40Z", + "reviewed_features": [], + "create": 7, + "modify": 6, + "delete": 0, + "area": 0.0000391226473999729, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117195266, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 10, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 7, + "change_within_25m": 14, + "move:node/9492215009": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.512715399999999, + 51.231305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T10:14:28Z", + "reviewed_features": [], + "create": 0, + "modify": 162, + "delete": 0, + "area": 0.855378118823207, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117195083, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 217, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93866145, + 51.1283177 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Jori", + "uid": "14800690", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T09:56:41Z", + "reviewed_features": [], + "create": 13, + "modify": 19, + "delete": 0, + "area": 0.000752581810510032, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117194308, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 14, + "change_over_5000m": 13, + "change_within_25m": 18, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52054885, + 51.23210245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T09:46:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 1, + "area": 1.13080800001156e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117193831, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "change_within_25m": 3, + "change_within_100m": 1, + "deletion:node/6119665025": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4201695, + 46.93757605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T08:40:02Z", + "reviewed_features": [], + "create": 14, + "modify": 17, + "delete": 0, + "area": 0.000103596247519954, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117191011, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "add-image": 13, + "change_over_5000m": 14, + "change_within_25m": 11, + "change_within_50m": 5, + "change_within_100m": 9, + "move:node/9491933424": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49906635, + 51.2332707 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T08:09:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117189898, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3811197, + 50.8581346 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T07:03:17Z", + "reviewed_features": [], + "create": 38, + "modify": 2, + "delete": 0, + "area": 0.000449286868800087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117187792, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 17, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 38, + "change_within_25m": 11, + "change_within_50m": 3, + "change_within_100m": 1, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6946479, + 48.0103681 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T23:54:47Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00111348838039994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117180667, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2616456, + 51.2185259 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T21:41:30Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000312971518639712, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117178203, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8780273, + 54.5464718 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T21:35:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117178055, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8364815, + 51.1846906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T19:47:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117175034, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5492029, + 50.9430976 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T19:41:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117174875, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0039372, + 51.1292317 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T19:32:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0853101078559389, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117174624, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77762945, + 51.0366205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9490613102", + "osm_id": 9490613102, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T19:28:28Z", + "reviewed_features": [], + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.186519321469497, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117174481, + "host": "mapcomplete.osm.be", + "theme": "maps", + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.715437100000001, + 51.00471125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T18:21:22Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117172449, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_within_5000m": 1, + "deletion:node/9490464167": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2157024, + 51.2154692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T18:15:43Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117172287, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2157024, + 51.2154692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T18:12:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117172158, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3719104, + 50.8495035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T18:08:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.06296000009218e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117172020, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3947423, + 50.8541809 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T17:45:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.28449999955957e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117171205, + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3580935, + 50.844928949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T16:12:42Z", + "reviewed_features": [], + "create": 0, + "modify": 439, + "delete": 0, + "area": 1.50158077902896, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117167781, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 637, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88985565, + 51.104120699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T14:38:31Z", + "reviewed_features": [], + "create": 31, + "modify": 46, + "delete": 0, + "area": 0.000095567433600134, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117164043, + "host": "mapcomplete.osm.be", + "move": 43, + "theme": "grb", + "answer": 2, + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9731199, + 51.16294205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T13:53:00Z", + "reviewed_features": [], + "create": 213, + "modify": 65, + "delete": 0, + "area": 0.0130425630748969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117162248, + "host": "mapcomplete.osm.be", + "move": 53, + "theme": "grb", + "import": 22, + "locale": "nl", + "imagery": "osm", + "conflation": 24, + "change_over_5000m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.733478, + 51.40781965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T13:09:12Z", + "reviewed_features": [], + "create": 7, + "modify": 10, + "delete": 1, + "area": 0.0000588182025200195, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117160589, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 6, + "change_over_5000m": 7, + "change_within_25m": 3, + "change_within_50m": 4, + "change_within_100m": 5, + "change_within_500m": 5, + "move:node/7980623376": "improve_accuracy", + "move:node/9489869914": "improve_accuracy", + "move:node/9489892866": "improve_accuracy", + "deletion:node/7980623376": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5145031, + 51.22344645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-125921816", + "name": "Verkeerstuin 'Biesieklette'", + "osm_id": 125921816, + "reasons": [ + 42 + ], + "version": 7, + "primary_tags": {} + } + ], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T12:32:11Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.0270943589590802, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117159099, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "soft-delete": 1, + "soft-delete:way/125921816": "dit is geen speeltuin, maar een verkeerstuin waar kinderen verkeersregels leren" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32444845, + 50.968232400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T09:35:59Z", + "reviewed_features": [], + "create": 23, + "modify": 21, + "delete": 0, + "area": 0.00014069695652991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117151884, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 27, + "locale": "nl", + "imagery": "osm", + "add-image": 17, + "change_over_5000m": 23, + "change_within_25m": 28, + "change_within_50m": 3, + "change_within_100m": 8, + "change_within_500m": 7, + "move:node/9489430949": "improve_accuracy", + "move:node/9489646032": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51425635, + 51.22657435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T09:32:05Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117151752, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 3, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5110612, + 51.2254501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Jori", + "uid": "14800690", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T09:02:46Z", + "reviewed_features": [], + "create": 44, + "modify": 48, + "delete": 1, + "area": 0.000170286208800126, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117150611, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 16, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 41, + "change_over_5000m": 44, + "change_within_25m": 58, + "deletion:node/9489217545": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5147709, + 51.2263965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "kapiza", + "uid": "15040216", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T08:48:32Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000074070873000003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117149982, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 20, + "locale": "en", + "imagery": "EsriWorldImagery" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.852185, + 48.00468035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T08:37:51Z", + "reviewed_features": [], + "create": 13, + "modify": 19, + "delete": 0, + "area": 0.0000215856762799765, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117149573, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 19, + "locale": "nl", + "imagery": "osm", + "add-image": 10, + "change_over_5000m": 13, + "change_within_25m": 6, + "change_within_50m": 17, + "change_within_100m": 10, + "move:node/9489129510": "improve_accuracy", + "move:node/9489261714": "improve_accuracy", + "move:node/9489269562": "improve_accuracy", + "move:node/9489300240": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5162472000000005, + 51.226175299999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T08:27:46Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000139513019360011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117149227, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.003857099999999, + 51.134489349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T07:54:22Z", + "reviewed_features": [], + "create": 0, + "modify": 42, + "delete": 0, + "area": 0.00102796421472014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117148021, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 57, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9979423, + 51.1462133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T07:48:32Z", + "reviewed_features": [], + "create": 15, + "modify": 4, + "delete": 0, + "area": 0.000204659967420032, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117147804, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 14, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 15, + "change_within_25m": 7, + "change_within_50m": 3, + "change_within_100m": 3, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.725999250000001, + 47.9900886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T07:42:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000643456548000032, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117147589, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.010748400000001, + 51.13582065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T23:59:53Z", + "reviewed_features": [], + "create": 8, + "modify": 62, + "delete": 0, + "area": 8.8785146999344e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117139657, + "host": "mapcomplete.osm.be", + "move": 55, + "theme": "grb", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 12, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98983215, + 51.16480105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dmx_valou", + "uid": "13908331", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T19:26:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117132736, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1215835, + 46.2326336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T16:43:09Z", + "reviewed_features": [], + "create": 0, + "modify": 540, + "delete": 0, + "area": 0.0281794568235999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117127208, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 886, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_5000m": 54 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0031348, + 51.1688049 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T16:33:09Z", + "reviewed_features": [], + "create": 0, + "modify": 44, + "delete": 0, + "area": 0.000180281591279987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117126820, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 59, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94144975, + 51.1434014 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "trolleway", + "uid": "397326", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T15:59:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.60532799993378e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117125624, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 37.6614644, + 55.77070055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9487156863", + "osm_id": 9487156863, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "mike140", + "uid": "2471547", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T15:48:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117125249, + "host": "mapcomplete.osm.be", + "theme": "maps", + "locale": "ru", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.7990064, + 50.8962661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T15:14:19Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00227333440542055, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117124054, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 22, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 12, + "change_within_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.054395899999999, + 51.11872975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CjMalone", + "uid": "6816132", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T14:25:59Z", + "reviewed_features": [], + "create": 11, + "modify": 8, + "delete": 0, + "area": 0.00000147473078999973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117122175, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "answer": 16, + "import": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29605595, + 50.69736545000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T13:47:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000266964404999211, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117120640, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.393012649999999, + 50.85382595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T13:35:32Z", + "reviewed_features": [], + "create": 0, + "modify": 29, + "delete": 0, + "area": 0.00364316540420003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117120081, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 39, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 13, + "change_within_5000m": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0215511, + 51.155660049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T12:48:13Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000047543134770004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117118217, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 20, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00740855, + 51.127844550000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakuje", + "uid": "1641564", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T08:23:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117107587, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.5751174, + 49.2333062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T08:00:15Z", + "reviewed_features": [], + "create": 13, + "modify": 0, + "delete": 0, + "area": 0.00038083420944001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117106705, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 7, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 13, + "change_within_25m": 4, + "change_within_50m": 2, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8196291, + 48.02427265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jas7100", + "uid": "15023699", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T00:01:17Z", + "reviewed_features": [], + "create": 7, + "modify": 2, + "delete": 0, + "area": 0.0217250127215007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117098329, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 16, + "locale": "fr", + "imagery": "SPW_ORTHO_LAST", + "change_over_5000m": 8, + "change_within_5000m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2604713499999995, + 50.535606200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T19:50:32Z", + "reviewed_features": [], + "create": 9, + "modify": 10, + "delete": 1, + "area": 0.00000271812923999703, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117092571, + "host": "mapcomplete.osm.be", + "move": 7, + "theme": "grb", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8077447499999995, + 51.1716143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T19:33:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000152456625000562, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117092124, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6082627499999997, + 37.180579550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T16:44:00Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.97816999985172e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117086537, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "move:node/9483811766": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25039075, + 51.23787525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T15:31:08Z", + "reviewed_features": [], + "create": 0, + "modify": 82, + "delete": 0, + "area": 0.005475181474, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117083441, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 122, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98339075, + 51.190768 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T11:47:44Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.000301493327310007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117076107, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 45, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99355415, + 51.16445125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T11:23:13Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 1.76999999967769e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117075258, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "move:node/9483033353": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30692765, + 50.8342351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "shogun", + "uid": "94315", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T11:03:46Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000758011175500046, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117074726, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "answer": 11, + "locale": "en", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.69386325, + 51.0759341 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:56:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.57831999948163e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117074470, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73895285, + 50.8125385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:23:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.42549999997565e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117073294, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.559968, + 50.849278350000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:15:47Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117073072, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.624339, + 50.8703127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:11:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000417924069999491, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117072973, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6149052, + 50.84535965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:00:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117072647, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5877942, + 50.7352587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T09:52:03Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117072390, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6012411, + 50.8671691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T09:34:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117071913, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2344225, + 50.7377153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T09:19:50Z", + "reviewed_features": [], + "create": 1, + "modify": 25, + "delete": 0, + "area": 0.00554786979894018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117071461, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 33, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_5000m": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60071485, + 50.8358086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hfs", + "uid": "9607", + "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-02-06T08:19:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117070044, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0488154, + 52.3830947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "oudalricus", + "uid": "29752", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T04:49:30Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000509027850000251, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117067048, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_500m": 3, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6375567, + 49.7444332 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T03:36:36Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.75087499983324e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117066501, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "EsriWorldImagery", + "add-image": 3, + "change_over_5000m": 1, + "change_within_1000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.57622965, + -33.58917985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T01:28:05Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117065334, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3293576, + 50.9330894 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T01:11:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.23910149993863e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117065156, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33040935, + 50.93343195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-05T23:19:52Z", + "reviewed_features": [], + "create": 87, + "modify": 99, + "delete": 0, + "area": 0.0156375734063937, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117063791, + "host": "mapcomplete.osm.be", + "move": 87, + "theme": "grb", + "answer": 3, + "import": 14, + "locale": "nl", + "imagery": "osm", + "conflation": 20, + "change_over_5000m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7057804999999995, + 51.006778499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T22:31:34Z", + "reviewed_features": [], + "create": 12, + "modify": 40, + "delete": 0, + "area": 3.00064160001714e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117062931, + "host": "mapcomplete.osm.be", + "move": 38, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9493548499999998, + 51.2238674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T22:12:29Z", + "reviewed_features": [], + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.0000289318822999867, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117062564, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 33, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4737913, + 51.04145065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T21:07:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000393128015998355, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117061161, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.700900900000001, + 50.9468739 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T21:05:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117061124, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3505589, + 50.8534436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T20:57:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117060916, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3848027, + 50.8537825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jas7100", + "uid": "15023699", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T20:30:50Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00117592998955005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117060144, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 7, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21651575, + 50.48277865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T19:14:33Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000186666271319987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117057746, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6029033999999998, + 37.18449865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-05T17:50:08Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 1.086299999993e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117055064, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "EsriWorldImagery", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6199609, + -33.41523425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-05T14:28:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117047039, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6993572, + 51.0548482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T14:11:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117046304, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4279919, + 50.8954137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T12:28:57Z", + "reviewed_features": [], + "create": 0, + "modify": 34, + "delete": 0, + "area": 0.000823279896180065, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117042748, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 49, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6102721, + 37.19314985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T10:30:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000212131868001264, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117038736, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5057758, + 50.8841731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jordi MF", + "uid": "8278438", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/nameca.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T23:08:30Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.737210158408981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117026389, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/nameca.json", + "answer": 3, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2540176, + 39.169342150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T22:22:16Z", + "reviewed_features": [], + "create": 0, + "modify": 90, + "delete": 0, + "area": 0.0401349367103696, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117024588, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 132, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62166195, + 54.61615275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stereo", + "uid": "40611", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T22:09:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117024181, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.9586471, + 40.7358133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T20:14:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117020965, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7001051, + 51.0525401 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T19:40:45Z", + "reviewed_features": [], + "create": 0, + "modify": 116, + "delete": 0, + "area": 0.0236791804765092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117020021, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 165, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4202968500000002, + 54.78992755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T17:22:57Z", + "reviewed_features": [], + "create": 0, + "modify": 142, + "delete": 0, + "area": 0.0599800374607494, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117015486, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 218, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61068935, + 54.93911265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T15:35:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117011429, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8755227, + 47.9883074 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T15:28:35Z", + "reviewed_features": [], + "create": 0, + "modify": 51, + "delete": 0, + "area": 0.000343044279940017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117011189, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 69, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.60746175, + 37.1764941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 41, + "name": "Software editor was not declared" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": null, + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T15:22:45Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117010979, + "theme": "toerisme_vlaanderen", + "answer": 3, + "import": 1, + "import:node/9476264469": "source: https://osm.org/note/3023001" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4794074, + 51.0276134 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T14:32:33Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117009200, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/8264901851": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5144967, + 51.2274513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.15.4", + "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-02-04T13:49:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117007591, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 5, + "locale": "es", + "imagery": "EsriWorldImageryClarity", + "change_over_5000m": 1, + "change_within_100m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4142745, + -34.60851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T11:58:30Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 1, + "area": 9.99999996726842e-13, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117003771, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "locale": "fr", + "imagery": "AGIV", + "deletion": 1, + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 10, + "deletion:node/9474148329": "mauvaise catégorie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4143583, + 50.8202936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T10:50:55Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0278837800463587, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117000670, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3643696, + 51.1336217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T10:18:16Z", + "reviewed_features": [], + "create": 21, + "modify": 0, + "delete": 0, + "area": 8.10454100006014e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116999217, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00015065, + 50.914118450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "quantumstate", + "uid": "71337", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T10:17:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.81266200010587e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116999189, + "host": "mapcomplete.osm.be", + "theme": "sidewalks", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04689035, + 51.4931733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T07:25:27Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.00000360670982000805, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116992786, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 2, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.81097665, + 48.0206827 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "womped", + "uid": "1880469", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T07:18:58Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000214852108499701, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116992590, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.76630795, + 49.63019435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T01:31:08Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000931500118709959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116985905, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 1, + "change_within_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2124950500000002, + 51.22994905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T01:20:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116985783, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7086034, + 51.0371267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 91, + "name": "Motorway/trunk geometry modified" + } + ], + "tags": [], + "features": [ + { + "url": "way-975389803", + "name": "Consett Road", + "osm_id": 975389803, + "reasons": [ + 91 + ], + "version": 4, + "primary_tags": { + "highway": "trunk" + } + }, + { + "url": "way-929712895", + "name": "Consett Road", + "osm_id": 929712895, + "reasons": [ + 91 + ], + "version": 5, + "primary_tags": { + "highway": "trunk" + } + } + ], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-03T22:29:42Z", + "reviewed_features": [], + "create": 0, + "modify": 81, + "delete": 0, + "area": 0.0479769859208512, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116982670, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 123, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73418035, + 54.89588915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-03T18:30:09Z", + "reviewed_features": [], + "create": 0, + "modify": 109, + "delete": 0, + "area": 0.0285403107347409, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116975972, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 165, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65464475, + 54.71689 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "milenasonneveld", + "uid": "8177639", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T15:44:58Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116970091, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3006754, + 50.8825968 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T14:04:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116966319, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3630863, + 50.9960832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.15.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-02-03T13:00:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116963372, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 4, + "locale": "es", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7921441, + -34.6497892 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T12:22:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116961725, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2045793, + 51.2231139 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T11:18:10Z", + "reviewed_features": [], + "create": 6, + "modify": 11, + "delete": 0, + "area": 0.00000915342031999193, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116958998, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 7, + "change_over_5000m": 6, + "change_within_25m": 1, + "change_within_50m": 3, + "change_within_100m": 6, + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5027176, + 51.223291149999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 57, + "name": "Feature overlaps with existing features" + } + ], + "tags": [], + "features": [ + { + "url": "way-1027348440", + "osm_id": 1027348440, + "reasons": [ + 57 + ], + "version": 1, + "primary_tags": { + "building": "yes" + } + } + ], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-03T11:03:53Z", + "reviewed_features": [], + "create": 65, + "modify": 82, + "delete": 1, + "area": 0.000933149096000222, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116958369, + "host": "mapcomplete.osm.be", + "move": 70, + "theme": "grb", + "answer": 1, + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8953164000000005, + 51.1479844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-03T10:38:42Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000254243576499923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116957163, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.37077815, + 48.17006515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T09:32:58Z", + "reviewed_features": [], + "create": 6, + "modify": 19, + "delete": 0, + "area": 2.18991759999316e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116954133, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.036241199999999, + 51.1450411 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T09:31:10Z", + "reviewed_features": [], + "create": 12, + "modify": 16, + "delete": 0, + "area": 0.0000458808661800098, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116954048, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 12, + "locale": "nl", + "imagery": "osm", + "add-image": 11, + "change_over_5000m": 12, + "change_within_25m": 14, + "change_within_100m": 8, + "change_within_500m": 4, + "move:node/9471164305": "improve_accuracy", + "move:node/9471270450": "improve_accuracy", + "move:node/9471273002": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50380715, + 51.222460100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T06:49:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116948018, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7879398, + 48.0076587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T22:28:13Z", + "reviewed_features": [], + "create": 78, + "modify": 0, + "delete": 0, + "area": 0.00537978322287021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116938373, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 10, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99356555, + 50.91401875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T20:56:15Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.000154698350000062, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116935775, + "host": "mapcomplete.osm.be", + "move": 6, + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "AGIV", + "add-image": 8, + "change_within_25m": 6, + "change_within_50m": 6, + "move:node/9246056984": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.240376599999999, + 50.7367963 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T20:41:45Z", + "reviewed_features": [], + "create": 83, + "modify": 6, + "delete": 0, + "area": 0.0011675329132498, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116935227, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "answer": 2, + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52607115, + 51.133823050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T17:17:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000503599892180124, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116925894, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "move:node/1706000858": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01627635, + 51.1392182 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T16:52:31Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 4.61999999436376e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116923770, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.041887, + 51.1515348 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T15:56:24Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000220390090000211, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116920011, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.034685550000001, + 51.150353499999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T15:54:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000286904520000127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116919912, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0396392, + 51.1451315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T15:51:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116919820, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0150035, + 51.1428292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T15:44:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116919481, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0149785, + 51.1428032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GBAB", + "uid": "3335899", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T14:21:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.24201999979239e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116915898, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.9798257, + 47.69100315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T12:39:25Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116911694, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "change_within_500m": 1, + "deletion:node/9425818877": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2249977, + 51.210513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T11:42:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.5314093000299e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116909437, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "test", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23716075, + 51.18855405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T11:40:35Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000119596013250028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116909356, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "playgrounds", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "delete-image": 1, + "change_within_25m": 6, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23202115, + 51.19379365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T11:21:58Z", + "reviewed_features": [], + "create": 0, + "modify": 88, + "delete": 0, + "area": 0.00057000400200004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116908634, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 127, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6, + "change_within_50m": 7, + "change_within_100m": 18, + "change_within_500m": 59, + "change_within_1000m": 30, + "change_within_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2437670499999998, + 51.1900844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T10:31:16Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000950729211640121, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116906468, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3696776, + 51.00611265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GeertDD", + "uid": "2776338", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T19:45:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116882267, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4669026, + 51.4670566 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T15:57:32Z", + "reviewed_features": [], + "create": 10, + "modify": 0, + "delete": 0, + "area": 6.04912000016582e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116874502, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 2, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5340641999999995, + 51.421862700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T15:27:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116873429, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6340412, + 46.7554728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T14:28:34Z", + "reviewed_features": [], + "create": 94, + "modify": 236, + "delete": 6, + "area": 0.000183572463149995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116871277, + "host": "mapcomplete.osm.be", + "move": 213, + "theme": "grb", + "answer": 1, + "import": 9, + "imagery": "osm", + "language": "nl", + "conflation": 68, + "change_within_500m": 9, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01077555, + 51.114988249999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T13:10:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116868200, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5719102, + 51.127015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T12:23:54Z", + "reviewed_features": [], + "create": 19, + "modify": 36, + "delete": 0, + "area": 0.0000169902935799801, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116866356, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 19, + "imagery": "osm", + "language": "nl", + "add-image": 23, + "change_over_5000m": 19, + "change_within_25m": 33, + "change_within_50m": 5, + "change_within_100m": 7, + "move:node/9465980888": "improve_accuracy", + "move:node/9466180750": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5134892, + 51.22819895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pieterpaul", + "uid": "14539037", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T11:20:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116863788, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "imagery": "AGIV", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7424285, + 50.9160986 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T11:15:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116863619, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5112514, + 51.2295137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T10:19:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 1, + "area": 0.000289339196450073, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116861180, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "deletion:node/9420056262": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20444105, + 50.92634885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T09:54:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.51764999983124e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116860089, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41637825, + 46.922135749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T09:31:33Z", + "reviewed_features": [], + "create": 4, + "modify": 12, + "delete": 0, + "area": 0.0000119820829999795, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116859087, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 10, + "imagery": "osm", + "language": "nl", + "add-image": 6, + "change_over_5000m": 4, + "change_within_25m": 15, + "change_within_50m": 2, + "move:node/9465521314": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5077700499999995, + 51.2286787 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T09:23:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116858693, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3428155, + 53.1637274 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T09:20:56Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 1, + "area": 2.50013719996649e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116858601, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 12, + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 13, + "deletion:node/5168101073": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.342973, + 53.163731999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "art_m_wb", + "uid": "12876924", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T06:09:39Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.48838469999256e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116850450, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.610203349999999, + 51.12703915 + ] + } + }, + { + "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-03-31T22:10:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 269, + "modify": 268, + "delete": 7, + "area": 0.0126228680937595, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119179130, + "host": "mapcomplete.osm.be", + "move": 235, + "theme": "grb", + "answer": 4, + "import": 19, + "locale": "nl", + "imagery": "osm", + "conflation": 64, + "change_over_5000m": 23 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9547075, + 51.149465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-31T21:05:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.27073439998075e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119177668, + "host": "pietervdvn.github.io", + "theme": "sidewalks", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2408339, + 51.207188 + ] + } + }, + { + "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-03-31T20:42:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 165, + "modify": 0, + "delete": 0, + "area": 0.00000865172191999141, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119177017, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 26, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4840608500000005, + 50.845177500000005 + ] + } + }, + { + "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 #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-31T20:23:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000270976896299824, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119176477, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40140835, + 50.79631395 + ] + } + }, + { + "type": "Feature", + "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-03-31T19:00:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 47, + "delete": 0, + "area": 0.000189712649280011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119174003, + "host": "mapcomplete.osm.be", + "split": 18, + "theme": "sidewalks", + "answer": 75, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3193764, + 50.993800949999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-31T18:45:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000662466355600361, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119173579, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4161695000000005, + 51.2144542 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-31T15:29:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 254, + "delete": 0, + "area": 0.000756505659580174, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119166365, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 400, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1664099, + 41.38994305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-31T15:26:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119166248, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1954288, + 51.2497832 + ] + } + }, + { + "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-03-31T14:47:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 0, + "delete": 0, + "area": 1.43633199998758e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119164497, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.484670100000001, + 50.8455495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AaronRi112", + "uid": "15408103", + "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-03-31T14:34:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 7, + "delete": 0, + "area": 0.00152328653663996, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119163895, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.07598195, + 52.3864156 + ] + } + }, + { + "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 #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-31T14:25:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119163511, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3806916, + 50.8114407 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-31T13:40:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 588, + "delete": 0, + "area": 0.0029381682920202, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119161053, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 829, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17909545, + 41.3936125 + ] + } + }, + { + "type": "Feature", + "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-03-31T13:29:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1075, + "modify": 0, + "delete": 0, + "area": 0.000773022863739998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119160499, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 143, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.476392049999999, + 50.8311063 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LDW56", + "uid": "9403294", + "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-03-31T13:29:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 55, + "delete": 0, + "area": 1.24299239997193e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119160492, + "host": "mapcomplete.osm.be", + "move": 15, + "theme": "toerisme_vlaanderen", + "answer": 47, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "move:node/9626571473": "improve_accuracy", + "move:node/9626576649": "improve_accuracy", + "move:node/9626613959": "improve_accuracy", + "move:node/9626675921": "improve_accuracy", + "move:node/9626683663": "improve_accuracy", + "move:node/9626695007": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.191172549999999, + 51.1029211 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-1467418953", + "name": "Cattrysse", + "osm_id": 1467418953, + "reasons": [ + 43 + ], + "version": 10, + "primary_tags": { + "shop": "bicycle_rental" + } + } + ], + "user": "jospyck", + "uid": "12128135", + "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-03-31T11:54:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119156524, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0309681, + 51.2744692 + ] + } + }, + { + "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 #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-31T11:14:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119154766, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3483082, + 50.8476208 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "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-03-31T09:42:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0000933531162900321, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119151020, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80642445, + 50.88730875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "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-03-31T07:52:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 10, + "delete": 1, + "area": 0.0000948935416800067, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119146600, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 14, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 3, + "change_over_5000m": 4, + "change_within_25m": 18, + "deletion:node/6007337660": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7644596, + 50.88814515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-31T07:02:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 679, + "delete": 0, + "area": 0.0017700646938602, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119144605, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1006, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1702499499999997, + 41.3890759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-30T22:40:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000262484020499833, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119135159, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 9, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_100m": 3, + "change_within_500m": 3, + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39755555, + 51.038072549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-30T21:33:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.88793160004044e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119133649, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1779716000000002, + 41.38277515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-30T15:47:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.60397479999726e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119122579, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "AGIV", + "add-image": 3, + "change_within_25m": 2, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8838579, + 50.87187315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-30T15:47:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 961, + "delete": 0, + "area": 0.00424544188860018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119122559, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1260, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18052835, + 41.4014358 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-30T14:21:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119118909, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2140803, + 50.9309198 + ] + } + }, + { + "type": "Feature", + "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-03-30T13:54:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1868, + "modify": 0, + "delete": 0, + "area": 0.000161530426400088, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119117926, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 205, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4492545, + 50.8409133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-30T13:49:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 69, + "delete": 0, + "area": 0.000180754617600027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119117724, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 85, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2043592, + 41.417205800000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Kasterlee", + "uid": "15445529", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-30T12:39:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 10, + "delete": 0, + "area": 0.000750939310109988, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119115021, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 14, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94461345, + 51.23477525 + ] + } + }, + { + "type": "Feature", + "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-03-30T12:06:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1044, + "modify": 0, + "delete": 0, + "area": 0.000205484632119985, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119113734, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 126, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4444544, + 50.8567825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Woazboat", + "uid": "3545112", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-30T11:34:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 86, + "delete": 0, + "area": 0.00295777507455013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119112224, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 115, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.45614005, + 47.046620950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-30T10:58:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 18, + "modify": 15, + "delete": 0, + "area": 0.000171022234819997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119110756, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 56, + "locale": "nl", + "imagery": "osm", + "move:node/9623615925": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1459562, + 51.168595249999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StevenPelckmans", + "uid": "15444901", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-30T10:39:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0369204726410892, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119110068, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86200675, + 51.14991485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.18.0-alpha", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-30T10:05:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119108504, + "host": "pietervdvn.github.io", + "theme": "aed", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2210085, + 51.2153016 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-30T09:46:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119107732, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3770886, + 50.9606057 + ] + } + }, + { + "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-03-30T09:33:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 36, + "modify": 0, + "delete": 0, + "area": 9.26092969993534e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119107215, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45982945, + 50.85503675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-30T09:19:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119106590, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3773941, + 50.960818 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-30T09:09:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119106179, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3605091, + 50.8713106 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-30T09:06:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 9.54653200010564e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119106050, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36387825, + 50.8711494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-30T08:08:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 5, + "delete": 0, + "area": 0.000259217063459965, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119103722, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 23, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 29 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1527435, + 51.16331305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Janjko", + "uid": "244754", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-30T08:00:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000155827063001325, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119103430, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.98352525, + 45.80010095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-30T07:50:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 46, + "delete": 0, + "area": 0.0000393016839199999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119103034, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 66, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19917565, + 41.4110334 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-30T07:02:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 37, + "delete": 0, + "area": 0.0000813064185000212, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119100793, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 61, + "import": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 9, + "change_over_5000m": 6, + "change_within_25m": 68, + "change_within_50m": 3, + "move:node/9623114660": "improve_accuracy", + "import:node/9623114660": "source: https://osm.org/note/3044478" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3839108, + 50.961468249999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-30T06:34:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 7.14630000011547e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119099387, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44720095, + 51.0924207 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-30T02:51:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119093761, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.3528552, + -33.6405306 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-30T02:33:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.44000000783063e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119093546, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 2, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5707309, + -33.590303399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-29T21:35:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 960, + "modify": 0, + "delete": 0, + "area": 0.0000736292312600242, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119089343, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 92, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76434785, + 50.9031344 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T21:20:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 5.30683999993276e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119089030, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3376969499999998, + 51.1383086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-29T20:58:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000016725427199981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119088449, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 7, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.110082, + 38.8386318 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T19:10:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.00000118598749999465, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119085117, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1478802, + 51.10180805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Woazboat", + "uid": "3545112", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T17:31:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1245, + "delete": 0, + "area": 0.0149433773516996, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119081123, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1612, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.44246145, + 47.0634563 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skizz98", + "uid": "13920670", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T16:32:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119078563, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.21317, + 45.5014076 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vic Van Eyck", + "uid": "8791681", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T15:29:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000131018734000176, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119075894, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97986415, + 51.2297429 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-29T14:35:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119073619, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.216212, + 51.1968385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AaronRi112", + "uid": "15408103", + "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-03-29T14:22:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 4, + "delete": 0, + "area": 0.0000932955279600455, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119073087, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0809987, + 52.367570549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T12:42:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 971, + "delete": 0, + "area": 0.00224597494626006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119068383, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1281, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1679215999999997, + 41.40559825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "jospyck", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Shana Matthys", + "uid": "15437476", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T12:08:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 21, + "modify": 20, + "delete": 2, + "area": 0.00093823352189983, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-29T20:26:57.111651Z", + "id": 119066726, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 68, + "locale": "nl", + "imagery": "EsriWorldImagery", + "move:node/9620954105": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.169836549999999, + 50.8695077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Anzegem", + "uid": "12747497", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T11:24:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.0019570661764002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119064572, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 12, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45070495, + 50.8258658 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-29T11:22:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119064497, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 5, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3078879, + 50.7669057 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T10:17:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119061696, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3754458, + 50.8682112 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-29T10:00:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.77691709998439e-7, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-29T10:25:53.394407Z", + "id": 119060959, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3957970499999997, + 51.03772285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T09:55:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 946, + "delete": 0, + "area": 0.00396948148658991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119060707, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1246, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16900905, + 41.404608550000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "obst96", + "uid": "10436028", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T09:27:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000486622444000018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119059490, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 3, + "locale": "de", + "imagery": "EsriWorldImagery" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.807015399999999, + 53.2234352 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T09:20:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119059135, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.432184, + 50.8782359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T08:57:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119058167, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4031989, + 50.8674395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pezespe", + "uid": "149682", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T08:54:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000954355733999222, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119058021, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.9319299, + 43.26576465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aerond", + "uid": "10217353", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T08:50:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119057810, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.6185769, + 60.6032214 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-29T08:43:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119057559, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1129783, + 38.8360513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-29T08:43:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119057537, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1111708, + 38.8365312 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/containeronvas.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-29T08:41:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.95092779996935e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119057460, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/containeronvas.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11066585000000001, + 38.836677300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-29T08:31:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 2, + "area": 0.000995315819499881, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119057080, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "osm", + "deletion": 2, + "import:node/9620399323": "source: https://osm.org/note/3090198", + "deletion:node/693277863": "disused", + "deletion:node/2390001958": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4112306, + 50.75005625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-29T08:11:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 266, + "modify": 0, + "delete": 0, + "area": 0.00000465017577000911, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119056220, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 26, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76585165, + 50.90419895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "milenasonneveld", + "uid": "8177639", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-29T08:10:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119056198, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.VoyagerNoLabels", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2887424, + 48.7450862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T07:54:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 224, + "modify": 0, + "delete": 0, + "area": 0.0000169314600000048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119055562, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 40, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4476394, + 50.8436817 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 91, + "name": "Motorway/trunk geometry modified" + } + ], + "tags": [], + "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", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T07:43:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 813, + "delete": 0, + "area": 0.00217849270859993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119055014, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1094, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2055926, + 41.430702 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Frank Y", + "uid": "15434739", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-29T03:59:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119047637, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6754949, + 51.2612705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "way-239261173", + "note": "Spam text reported in [\"name\"] tags in the feature", + "osm_id": 239261173, + "reasons": [ + 489 + ], + "version": 10 + } + ], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.17.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-03-28T21:11:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 19, + "delete": 0, + "area": 2.46604800004548e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119040374, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 22, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4559791, + 41.1848831 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T20:53:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 322, + "modify": 0, + "delete": 0, + "area": 0.000035909912940005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119039787, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 56, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4521581, + 50.84184225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-28T20:39:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2384, + "modify": 5, + "delete": 0, + "area": 0.00013389291317992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119039288, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 5, + "import": 232, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7671429, + 50.90453895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T19:33:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 492, + "delete": 0, + "area": 0.00454836020940023, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119036842, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 669, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.154118, + 41.402591099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "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-03-28T18:59:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00058537029991996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119035721, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16083, + 51.186602699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T18:56:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119035632, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3485848, + 50.8546324 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T18:56:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1367, + "modify": 0, + "delete": 0, + "area": 0.000100436787359937, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119035611, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 184, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4574096999999995, + 50.85580255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T18:54:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119035579, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3503256, + 50.8547037 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T18:53:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119035534, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3529301, + 50.863851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T18:08:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.10237299997767e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119033861, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72179845, + 51.026884550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dinn0", + "uid": "14893874", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-28T18:07:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000206709808499939, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119033803, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1, + "change_within_50m": 3, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.99047665, + 37.38267755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AaronRi112", + "uid": "15408103", + "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-03-28T16:08:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.0000164222454900237, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119028879, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.092521049999998, + 52.38779985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T14:54:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 103, + "modify": 0, + "delete": 0, + "area": 0.00000418996283999653, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119026022, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 17, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.458774050000001, + 50.860493700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T14:47:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 363, + "modify": 0, + "delete": 0, + "area": 0.0000245250488000062, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119025721, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 59, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4562273, + 50.862891 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-28T11:32:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 10, + "delete": 0, + "area": 0.00433514605684963, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119017661, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 47, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 18, + "change_within_500m": 1, + "change_within_1000m": 2, + "change_within_5000m": 42 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.087702650000001, + 51.16711505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T10:50:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1302, + "delete": 0, + "area": 0.00360142606230011, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119015966, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1782, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17440835, + 41.3921115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Visit Kinrooi", + "uid": "15291736", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T10:26:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 18, + "delete": 0, + "area": 0.0000893478887999781, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119015015, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 25, + "import": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 11, + "move:node/9612972833": "improve_accuracy", + "import:node/9612845526": "source: https://osm.org/note/3044291", + "import:node/9612946095": "source: https://osm.org/note/3044265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8124845999999994, + 51.128731849999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-28T09:37:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 17, + "modify": 0, + "delete": 0, + "area": 0.0000277678238800146, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119012923, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97890635, + 51.1734256 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T09:30:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000108928265000065, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119012620, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03148735, + 51.27481515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-28T08:46:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119010852, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5706811, + 52.9923595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-28T08:13:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119009586, + "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.5306645, + 44.8391173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "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-03-28T08:08:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.000259552034059991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119009426, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4630014, + 52.13354875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "ccamara", + "uid": "423535", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T08:03:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1092, + "delete": 0, + "area": 0.00266205483827961, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119009236, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1452, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1759093, + 41.40391545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eric Royer", + "uid": "12137407", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T07:32:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119007905, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5967011, + 45.3638508 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-28T01:03:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 119000040, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2402575, + -39.8314888 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-28T00:25:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118999619, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.35635445, + 47.6803374 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T22:37:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 2.44420989998521e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118998067, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 19, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 19 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.02426715, + 38.81774635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-27T21:41:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118997076, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.5498217, + -33.0196915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-27T21:18:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000129180587000062, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118996653, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0315111000000003, + 51.27465335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.17.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-03-27T20:38:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 43, + "delete": 0, + "area": 0.00136266590550006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118995770, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 57, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6393371, + 41.19859915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T20:09:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 56, + "modify": 0, + "delete": 0, + "area": 0.00000143696735000235, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118994915, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 8, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85615475, + 51.14581785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.17.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-27T20:00:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.0000376528281599982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118994625, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0294074, + 51.274063600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T17:57:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118990728, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5549891, + 53.0173317 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T14:35:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118983300, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1262041, + 51.0873396 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T13:52:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118981764, + "host": "pietervdvn.github.io", + "theme": "aed", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3482953, + 50.8710458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T13:41:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118981358, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3481934, + 50.8709375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "blubberbass", + "uid": "15227900", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-27T13:40:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118981312, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5393488, + 48.0143759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T13:35:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118981144, + "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": [ + 4.3477535, + 50.8706328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "js374", + "uid": "12733546", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T13:27:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118980898, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7467333, + 52.0843469 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T12:46:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118979583, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2033451, + 50.9146668 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T12:39:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 2.61590000002776e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118979377, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 10, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2033171, + 50.91468155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "blubberbass", + "uid": "15227900", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-27T12:10:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.89700779999787e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118978420, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.533138950000001, + 48.027099699999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T12:06:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000166893711999358, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-28T07:14:49.250585Z", + "id": 118978278, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3439497, + 50.873030799999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T11:40:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 102, + "modify": 0, + "delete": 0, + "area": 0.00000274835511999064, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118977525, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 14, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9831864, + 51.173654299999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Ronse", + "uid": "15420943", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-27T10:59:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 28, + "delete": 2, + "area": 0.00192553231864003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118976472, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 37, + "locale": "nl", + "imagery": "osm", + "deletion": 2, + "add-image": 11, + "move:node/9610640449": "improve_accuracy", + "deletion:node/9610607360": "testing point", + "deletion:node/9610615775": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61765625, + 50.7504433 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T10:54:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118976363, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3453395, + 50.8659811 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T10:24:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118975431, + "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.3423013, + 50.8699755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T09:45:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000193062996000013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118974254, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_within_25m": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34632905, + 50.8763728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vakantiehuis Velogies", + "uid": "15380005", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-27T09:41:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 10, + "delete": 0, + "area": 0.0000407850537499744, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118974155, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 16, + "locale": "nl", + "imagery": "AGIV", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71760455, + 50.85131955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "blubberbass", + "uid": "15227900", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-27T09:36:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000120336000000242, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118974004, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5290862, + 48.024296899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "blubberbass", + "uid": "15227900", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-27T09:22:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 3.348799998013e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118973591, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 3, + "locale": "en", + "imagery": "osm", + "move:node/9610486727": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5344887, + 48.0271645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-27T09:07:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 22, + "modify": 109, + "delete": 1, + "area": 0.0226917713260798, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118973150, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 168, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 39, + "deletion:node/9610487768": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9387353999999997, + 51.017946499999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vakantiehuis Velogies", + "uid": "15380005", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-27T07:16:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 1, + "delete": 0, + "area": 0.000338958913629982, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118970451, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 13, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74393815, + 50.811107250000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-27T06:55:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000554395357004278, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118969986, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1, + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99912775, + 48.50099625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "blubberbass", + "uid": "15227900", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T21:00:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000295442276039948, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118962600, + "host": "mapcomplete.osm.be", + "split": 28, + "theme": "sidewalks", + "answer": 401, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54447845, + 48.0223555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "blubberbass", + "uid": "15227900", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T20:45:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 14, + "delete": 0, + "area": 0.000464093932659919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118962216, + "host": "mapcomplete.osm.be", + "split": 48, + "theme": "sidewalks", + "answer": 638, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.537231349999999, + 48.0194464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T20:34:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 7.63139999988134e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118961966, + "host": "pietervdvn.github.io", + "move": 1, + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 3, + "move:node/9609677678": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34533815, + 50.8755405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "blubberbass", + "uid": "15227900", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T20:18:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 32, + "delete": 0, + "area": 0.000251350109279956, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118961492, + "host": "mapcomplete.osm.be", + "split": 90, + "theme": "sidewalks", + "answer": 665, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.52978445, + 48.0223604 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "blubberbass", + "uid": "15227900", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T19:23:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.00022841064651002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118959722, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 95, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.531026449999999, + 48.02473845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "blubberbass", + "uid": "15227900", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T19:07:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 0, + "delete": 0, + "area": 4.95936000025309e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118959319, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.534220099999999, + 48.02731935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tuur Jena", + "uid": "10072061", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T17:22:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118956190, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 9, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6037127, + 50.7698991 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T16:47:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118955012, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4767226, + 51.028858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T16:24:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118954066, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8101476, + 43.2184376 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T15:37:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.42700039994269e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118952182, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9763167500000005, + 50.326205599999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T15:32:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 436, + "modify": 314, + "delete": 0, + "area": 0.000017265435900004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118951945, + "host": "mapcomplete.osm.be", + "move": 277, + "theme": "grb", + "import": 60, + "locale": "nl", + "imagery": "osm", + "conflation": 74 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.453489299999999, + 50.86611625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T15:29:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118951841, + "host": "pietervdvn.github.io", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.974052, + 50.3258132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T15:19:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118951522, + "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": [ + 3.2242065, + 51.0854796 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T14:54:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 320, + "modify": 96, + "delete": 2, + "area": 0.000018009044760011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118950655, + "host": "mapcomplete.osm.be", + "move": 84, + "theme": "grb", + "import": 43, + "locale": "nl", + "imagery": "osm", + "conflation": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45369815, + 50.8698777 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T14:44:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 7, + "delete": 0, + "area": 0.00000284698070999574, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118950309, + "host": "pietervdvn.github.io", + "theme": "climbing", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 7, + "change_within_25m": 11, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9746495500000005, + 50.32602165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T13:39:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1516, + "modify": 1267, + "delete": 41, + "area": 0.0280607981354093, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118947984, + "host": "mapcomplete.osm.be", + "move": 1144, + "theme": "grb", + "import": 185, + "locale": "nl", + "imagery": "osm", + "conflation": 268 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.360227549999999, + 50.80585525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T13:04:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118946672, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.027931, + 51.2708096 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T13:00:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000113159128799916, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118946498, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "add-image": 3, + "change_within_25m": 2, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0262571, + 51.27265615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T12:56:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 5.04792000066681e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118946264, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0276492, + 51.271123450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dinn0", + "uid": "14893874", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T12:52:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118946021, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.5844983, + 37.1820409 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T12:24:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000939140801199172, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118945101, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 14, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 9, + "change_within_500m": 4, + "change_within_5000m": 2, + "move:node/9608966079": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29425295, + 50.438285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DavidKarlas", + "uid": "12422736", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T12:05:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118944527, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "locale": "sl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.22421, + 45.9530898 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "obst96", + "uid": "10436028", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T09:32:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 34, + "delete": 0, + "area": 0.000120247436480012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118939595, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 40, + "locale": "de", + "imagery": "EsriWorldImagery" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9340969, + 53.2612293 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T09:17:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.21072710004843e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118939000, + "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.97626575, + 50.32620215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ilja_space", + "uid": "14124839", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T07:17:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118936067, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1356472, + 51.1435364 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T07:07:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.97999999967955e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118935904, + "host": "pietervdvn.github.io", + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20160305, + 50.8146169 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T06:57:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 1, + "delete": 0, + "area": 1.66046100003633e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118935708, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 3, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20165765, + 50.81446115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T06:54:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118935646, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4468317, + 51.0919947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-26T06:46:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 58, + "delete": 0, + "area": 0.00000487656958000618, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118935515, + "host": "mapcomplete.osm.be", + "move": 50, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5453008, + 51.15230005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T00:30:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.000706122970799951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118931740, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 15, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30335965, + 51.0277097 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T00:28:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0000392873130000045, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118931706, + "host": "mapcomplete.osm.be", + "split": 2, + "theme": "cyclestreets", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3137288, + 51.02099735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T00:27:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0000181106323999927, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118931694, + "host": "mapcomplete.osm.be", + "split": 2, + "theme": "cyclestreets", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3160261, + 51.0209803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-26T00:24:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.0000112357729999792, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118931665, + "host": "mapcomplete.osm.be", + "split": 2, + "theme": "cyclestreets", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3142527, + 51.023765049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.16.8", + "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-03-25T20:30:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00686249593128066, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118926908, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 11, + "locale": "es", + "imagery": "EsriWorldImagery", + "change_over_5000m": 1, + "change_within_25m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6400702, + -34.6490496 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AaronRi112", + "uid": "15408103", + "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-03-25T18:51:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 41, + "modify": 40, + "delete": 0, + "area": 0.000155693372159918, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118923758, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0903036, + 52.36311035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-25T17:27:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.19423999987143e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118920715, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4478872999999997, + 51.0922728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "vott", + "uid": "15407842", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-25T16:09:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 17, + "modify": 49, + "delete": 1, + "area": 0.00711152469043095, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118917662, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 125, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/9606139248": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10950095, + 51.17099305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-25T15:40:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.37269999987908e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118916321, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 3, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.56986435, + -33.5919883 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AaronRi112", + "uid": "15408103", + "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-03-25T15:36:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118916056, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0881332, + 52.3635561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-25T14:58:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.32961200005903e-8, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-25T15:55:08.310817Z", + "id": 118914410, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3322506, + 51.01309605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-25T14:56:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118914351, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3326654, + 51.0129804 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-25T13:45:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00908710064569878, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118911166, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2710495, + 51.105582850000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JassKurn", + "uid": "4345757", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-25T11:46:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000007077997599969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118906009, + "host": "pietervdvn.github.io", + "theme": "cycle_infra", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.39359655, + 50.624623400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ICT 112", + "uid": "15406213", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-25T11:07:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118904087, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0357134, + 51.1295389 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-25T06:02:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118892472, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4107361, + 51.141158 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Becsta", + "uid": "15402954", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-25T02:26:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118889189, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 149.094485, + -35.1442242 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "daniel46", + "uid": "9677", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-24T21:34:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 7, + "delete": 0, + "area": 0.0123770365977892, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118883794, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 16, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.04589585, + 52.366787450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-24T21:08:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 536, + "modify": 535, + "delete": 2, + "area": 0.000140513374889999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118883056, + "host": "mapcomplete.osm.be", + "move": 444, + "theme": "grb", + "answer": 14, + "import": 29, + "locale": "nl", + "imagery": "osm", + "conflation": 160, + "change_over_5000m": 43 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90950425, + 51.15403175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-24T20:54:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000828432284280123, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118882639, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0651869, + 51.2671706 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-24T20:32:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118881949, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0001521, + 51.1602547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "smedo", + "uid": "9002106", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-24T18:37:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.36739999978643e-9, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-24T21:27:30.744773Z", + "id": 118877282, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30942175, + 50.9345953 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-24T18:02:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.27863999998476e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118875823, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_25m": 5, + "move:node/6853889587": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.366443, + 50.8335079 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-24T17:10:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000157714239000707, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118873730, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45266345, + 51.09617875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-24T17:09:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 6, + "delete": 0, + "area": 2.23585920000129e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118873708, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 35, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 6, + "change_within_25m": 35 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3295411, + 51.0025099 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DavidKarlas", + "uid": "12422736", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-24T15:43:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 1.17357119997708e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118870458, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "locale": "sl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.4156043, + 46.00977605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "woutvg", + "uid": "15339080", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-24T14:31:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118867598, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/9603423370": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3228605, + 51.2933456 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "Jorisbo", + "uid": "1983103", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-24T12:21:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-24T20:02:01.020833Z", + "id": 118862621, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1837877, + 51.2911118 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Francis Sprangers", + "uid": "15383214", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-24T12:16:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118862378, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1109762, + 51.2430925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-24T10:21:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.82186800000893e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118857632, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2075941, + 51.18764675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Francis Sprangers", + "uid": "15383214", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-24T09:26:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.000224497732140023, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118855117, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05666685, + 51.2847807 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Dadizele", + "uid": "12309530", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-24T07:38:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 5, + "delete": 1, + "area": 0.00183405266793008, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118850644, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 18, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "deletion:node/9602533302": "foutje" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07700605, + 50.86838025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #unkown", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-24T01:07:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118842944, + "host": "127.0.0.1:1234", + "theme": "unkown", + "answer": 2, + "locale": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.347242, + 50.8816672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-24T00:33:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000198929851999765, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118842562, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3461429999999996, + 50.992177 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gautrr", + "uid": "4157466", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T20:46:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118837894, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.3665066, + 44.7987499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9601744671", + "name": "Art Dekor", + "osm_id": 9601744671, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "shop": "Souvenirs" + } + } + ], + "user": "gautrr", + "uid": "4157466", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T20:36:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118837590, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.4116475, + 44.8481872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T20:33:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118837511, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5987492, + -32.838203 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gautrr", + "uid": "4157466", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T20:25:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118837297, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.4119593, + 44.8197656 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T20:24:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 50, + "modify": 17, + "delete": 0, + "area": 0.00000363745787999698, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118837260, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30142505, + 50.7437841 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T20:18:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000228800208000063, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118837119, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1411681500000004, + 51.0266328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-23T20:18:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0000106202070000052, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118837090, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_1000m": 2, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9211760499999997, + 42.6865599 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gautrr", + "uid": "4157466", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T20:14:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118836999, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 3, + "locale": "en", + "imagery": "EsriWorldImagery" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.4345167, + 44.8129312 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9601643872", + "name": "Jelena Plus", + "osm_id": 9601643872, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "shop": "Jewelry" + } + } + ], + "user": "gautrr", + "uid": "4157466", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T19:45:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118836126, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.4792372, + 44.8028969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9600988589", + "name": "Butik Ametist", + "osm_id": 9600988589, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "shop": "Spiritual shop" + } + } + ], + "user": "gautrr", + "uid": "4157466", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T19:26:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118835510, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.306244, + 62.3873676 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gautrr", + "uid": "4157466", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T19:04:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118834771, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.4603441, + 44.8217824 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mariobra", + "uid": "15391987", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T18:56:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118834542, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3252393, + 52.4724848 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "user_15392026", + "uid": "15392026", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T16:59:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000890786528000506, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118830235, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 10, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8536523, + 50.9886062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gautrr", + "uid": "4157466", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T16:43:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 9, + "delete": 1, + "area": 0.000014389150679999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118829535, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "food", + "answer": 10, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "move:node/1870596305": "relocated", + "move:node/9600337506": "improve_accuracy", + "deletion:node/1870596308": "shop_closed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.2663802, + 62.391459999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gautrr", + "uid": "4157466", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T16:40:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118829424, + "host": "mapcomplete.osm.be", + "theme": "waste", + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/9600166563": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.267713, + 62.388925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-23T16:27:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 14, + "delete": 0, + "area": 0.0000206901124100036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118828837, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 15, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_100m": 3, + "change_within_500m": 9, + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21419415, + 51.193303650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gautrr", + "uid": "4157466", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T16:22:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 3, + "delete": 1, + "area": 0.00000114465953000214, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118828667, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 4, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/9600144043": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.268300349999997, + 62.38845695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-23T15:37:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.25416000000219e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118826984, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 10, + "move:node/9165167061": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3662785500000005, + 50.794160500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-23T15:03:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.70449999996533e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118825666, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 10, + "move:node/9165158557": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37336965, + 50.7958046 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ken2009", + "uid": "207307", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T14:33:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 7, + "delete": 0, + "area": 0.0000961340561999895, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118824523, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 26, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3122524, + 51.704875900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Francis Sprangers", + "uid": "15383214", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-23T13:59:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118823099, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1610544, + 51.2219578 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vakantiehuis Velogies", + "uid": "15380005", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T13:56:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00180284518340994, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-23T14:57:40.226333Z", + "id": 118822966, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 10, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74126375, + 50.83672155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T13:17:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1055, + "modify": 812, + "delete": 15, + "area": 0.00118289846678983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118821368, + "host": "mapcomplete.osm.be", + "move": 702, + "theme": "grb", + "import": 199, + "locale": "nl", + "imagery": "osm", + "conflation": 198 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32222275, + 50.741967849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T13:04:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 7, + "delete": 1, + "area": 0.00351466899015001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118820890, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 20, + "import": 2, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "import:node/9599653855": "source: https://osm.org/note/3090144", + "import:node/9599691223": "source: https://osm.org/note/3084029", + "deletion:node/2321047983": "Dit is een binnenspeeltuin" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20274255, + 50.939344750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T13:04:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 148, + "modify": 251, + "delete": 19, + "area": 0.00110688914148008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118820870, + "host": "mapcomplete.osm.be", + "move": 228, + "theme": "grb", + "import": 32, + "locale": "nl", + "imagery": "osm", + "conflation": 54 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31862535, + 50.7448264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T12:45:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.00433879997271e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118820079, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2100109000000003, + 51.176832250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-23T12:10:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 11, + "delete": 0, + "area": 0.00000398068799999972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118818681, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 12, + "locale": "fr", + "imagery": "osm", + "change_within_50m": 6, + "change_within_500m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5076195, + 44.883331 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-23T11:18:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 65, + "delete": 0, + "area": 4.12753560003429e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118816109, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 77, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 16, + "change_within_25m": 70, + "change_within_50m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57473635, + 50.614018200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T10:21:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 114, + "modify": 122, + "delete": 7, + "area": 0.000026672204800044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118813152, + "host": "mapcomplete.osm.be", + "move": 109, + "theme": "grb", + "import": 20, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2965362, + 50.752806050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T09:39:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000400729560000016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118811423, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2096449, + 51.18762675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Francis Sprangers", + "uid": "15383214", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-23T09:21:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 1, + "delete": 2, + "area": 0.00000996619620002069, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118810739, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "deletion": 2, + "change_over_5000m": 8, + "change_within_25m": 5, + "change_within_50m": 1, + "deletion:node/9599234795": "testing point", + "deletion:node/9599258625": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19473625, + 51.1779944 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mieke Kerkhofs", + "uid": "15388519", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T09:14:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 12, + "modify": 3, + "delete": 0, + "area": 0.00867234025021022, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118810416, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 16, + "import": 12, + "locale": "nl", + "imagery": "osm", + "import:node/-10": "source: https://osm.org/note/3044216", + "import:node/-11": "source: https://osm.org/note/3044606", + "import:node/-12": "source: https://osm.org/note/3044716", + "import:node/9599155075": "source: https://osm.org/note/3044558", + "import:node/9599230042": "source: https://osm.org/note/3044538", + "import:node/9599234601": "source: https://osm.org/note/3044564", + "import:node/9599234793": "source: https://osm.org/note/3044708", + "import:node/9599234802": "source: https://osm.org/note/3044207", + "import:node/9599246200": "source: https://osm.org/note/3044393", + "import:node/9599250273": "source: https://osm.org/note/3044212", + "import:node/9599251375": "source: https://osm.org/note/3023043", + "import:node/9599263108": "source: https://osm.org/note/3044290" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.417748850000001, + 51.19010365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T08:56:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 38, + "modify": 58, + "delete": 4, + "area": 0.00000724622505000885, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118809679, + "host": "mapcomplete.osm.be", + "move": 54, + "theme": "grb", + "import": 8, + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29309115, + 50.75283375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Carmen van den Akker", + "uid": "15388402", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T08:55:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 15, + "modify": 3, + "delete": 1, + "area": 0.00792900187924005, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-23T15:27:57.339912Z", + "id": 118809579, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 2, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "import:node/-17": "source: https://osm.org/note/3044287", + "import:node/9599160916": "source: https://osm.org/note/3044386", + "deletion:node/9599246201": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.438019199999999, + 51.219092399999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T08:45:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 146, + "modify": 166, + "delete": 4, + "area": 0.000248971321619996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118809158, + "host": "mapcomplete.osm.be", + "move": 148, + "theme": "grb", + "import": 23, + "locale": "nl", + "imagery": "osm", + "conflation": 36 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2823049, + 50.758063449999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T08:35:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 309, + "modify": 438, + "delete": 4, + "area": 0.0000474347543999644, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118808752, + "host": "mapcomplete.osm.be", + "move": 403, + "theme": "grb", + "import": 40, + "locale": "nl", + "imagery": "osm", + "conflation": 78 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2760561, + 50.760599299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T08:17:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 271, + "modify": 396, + "delete": 0, + "area": 0.0000626518445500493, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118808005, + "host": "mapcomplete.osm.be", + "move": 355, + "theme": "grb", + "import": 46, + "locale": "nl", + "imagery": "osm", + "conflation": 86 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.279560249999999, + 50.76485435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-23T08:08:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 205, + "modify": 221, + "delete": 1, + "area": 0.00000988313226998669, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118807679, + "host": "mapcomplete.osm.be", + "move": 199, + "theme": "grb", + "import": 34, + "locale": "nl", + "imagery": "osm", + "conflation": 44 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.281672049999999, + 50.76657005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-23T07:32:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 8, + "delete": 0, + "area": 1.12894559999679e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118806384, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 11, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4494096, + 51.0921513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-22T21:22:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.87949300000752e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118795094, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "street_lighting", + "locale": "en", + "imagery": "fr.ign.bdortho", + "move:node/1985817833": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80787885, + 44.13789045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-22T19:43:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 94, + "modify": 139, + "delete": 4, + "area": 0.0000248097185000197, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118792115, + "host": "mapcomplete.osm.be", + "move": 128, + "theme": "grb", + "import": 15, + "locale": "nl", + "imagery": "osm", + "conflation": 30 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27737955, + 50.7658254 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-22T17:17:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-23T15:29:26.961338Z", + "id": 118787553, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7059572, + 51.1468866 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-22T17:09:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 5, + "delete": 0, + "area": 0.0000223092128800018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118787292, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 10, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 10, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57183525, + 44.8452276 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thiewinkel23", + "uid": "15378404", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-22T16:35:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 1, + "area": 6.39311999953794e-9, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-23T16:07:35.608380Z", + "id": 118786020, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "AGIV", + "deletion": 1, + "add-image": 6, + "deletion:node/9596688538": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2167611, + 50.97626885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-22T15:46:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 90, + "modify": 145, + "delete": 0, + "area": 0.00000414964133999355, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118784301, + "host": "mapcomplete.osm.be", + "move": 130, + "theme": "grb", + "import": 17, + "locale": "nl", + "imagery": "osm", + "conflation": 30 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2767047, + 50.765489849999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-22T15:36:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 274, + "modify": 257, + "delete": 2, + "area": 0.0000137331935999784, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118783891, + "host": "mapcomplete.osm.be", + "move": 226, + "theme": "grb", + "import": 48, + "locale": "nl", + "imagery": "osm", + "conflation": 62 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2784116999999995, + 50.7679458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-22T15:25:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 2, + "delete": 1, + "area": 0.00000801717280000437, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-23T16:09:44.706018Z", + "id": 118783363, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 4, + "change_within_25m": 9, + "deletion:node/9597678820": "Wrong tag" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3438457, + 50.99277094999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-22T15:04:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000371186649600184, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118782549, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2205076, + 51.207802099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-22T14:57:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118782337, + "host": "pietervdvn.github.io", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.215805, + 51.2046391 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-22T13:59:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 36, + "delete": 2, + "area": 0.00000137975987999989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118780210, + "host": "mapcomplete.osm.be", + "move": 32, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1225304, + 50.908049950000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vakantiehuis Velogies", + "uid": "15380005", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-22T13:49:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.00000624442914998957, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118779818, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67519215, + 50.82763455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-22T13:01:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.66799999792855e-11, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-23T16:11:37.341532Z", + "id": 118777957, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "move:node/9597257573": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7809369, + 51.1369548 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pieterpaul", + "uid": "14539037", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-22T12:38:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.000758655590239881, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-23T16:18:04.767734Z", + "id": 118777122, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 12, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "import:node/9597282387": "source: https://osm.org/note/3084026", + "import:node/9597282938": "source: https://osm.org/note/3084018" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74490585, + 50.923738900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-22T12:32:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118776933, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3704124, + 50.848361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Aurélie8377", + "uid": "15380511", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-22T12:06:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 25, + "delete": 0, + "area": 6.97996319995701e-7, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-23T16:32:22.662457Z", + "id": 118776010, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "toerisme_vlaanderen", + "answer": 30, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "move:node/9597204888": "improve_accuracy", + "move:node/9597212551": "improve_accuracy", + "move:node/9597219630": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1800964, + 51.262924 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-22T11:45:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 17, + "delete": 0, + "area": 0.00000164517495999468, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-23T16:33:44.855006Z", + "id": 118775276, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 18, + "locale": "nl", + "imagery": "AGIV", + "add-image": 4, + "change_over_5000m": 10, + "change_within_25m": 23, + "move:node/9597188035": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7172941, + 50.8748343 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vakantiehuis Velogies", + "uid": "15380005", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-22T11:27:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 11, + "modify": 0, + "delete": 0, + "area": 0.00220125481580008, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118774584, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.739409, + 50.8369321 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-22T10:01:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 2.73915649999752e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118771407, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "move:node/7281830764": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19737595, + 50.910076849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Wortegem-Petegem", + "uid": "10387981", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-22T09:44:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 13, + "modify": 0, + "delete": 0, + "area": 0.00224590149894001, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-23T16:47:22.901760Z", + "id": 118770693, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53256715, + 50.8339517 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-22T09:15:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118769485, + "host": "pietervdvn.github.io", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3704124, + 50.848361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Thiewinkel23", + "uid": "15378404", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-22T07:26:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 3, + "delete": 0, + "area": 6.39311999953794e-9, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-23T16:35:31.367145Z", + "id": 118765260, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2167611, + 50.97626885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T19:35:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 101, + "modify": 102, + "delete": 1, + "area": 0.00000703209040001046, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118749940, + "host": "mapcomplete.osm.be", + "move": 93, + "theme": "grb", + "import": 14, + "locale": "nl", + "imagery": "osm", + "conflation": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27546225, + 50.7698932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T19:35:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 0, + "delete": 0, + "area": 1.12281660006147e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118749922, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27376315, + 50.7707397 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T16:57:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118744338, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3947619, + 51.2077547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T16:31:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000184795537500014, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-23T16:38:32.921953Z", + "id": 118743392, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7133312, + 51.11352825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-21T16:05:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.06624999995019e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118742468, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69223275, + 51.0540912 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T15:44:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-21T19:43:20.543030Z", + "id": 118741722, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79272, + 51.1850743 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T15:31:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 447, + "modify": 539, + "delete": 13, + "area": 0.0000222713567999992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118741234, + "host": "mapcomplete.osm.be", + "move": 491, + "theme": "grb", + "import": 67, + "locale": "nl", + "imagery": "osm", + "conflation": 104 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2753403, + 50.7726612 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael Didderiens", + "uid": "15281757", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T15:16:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-23T16:48:05.559232Z", + "id": 118740648, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5003718, + 50.9659266 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T14:03:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.000608876598239968, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118737999, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.036584449999999, + 50.9120935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tetryk", + "uid": "13505870", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T12:53:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 3, + "area": 0.00000665431925999953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118735229, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "en", + "imagery": "osm", + "deletion": 3, + "deletion:node/4602946348": "disused", + "deletion:node/5235959914": "shop_closed", + "deletion:node/8093829729": "shop_closed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.994979049999998, + 52.2383374 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-21T12:51:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0460593747613994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118735147, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0519102499999997, + 50.933075099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.16.8", + "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-03-21T12:43:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00259015217341938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118734824, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 3, + "locale": "es", + "imagery": "osmfr", + "change_within_25m": 2, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6648397, + -34.654196049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-21T12:19:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 11, + "delete": 0, + "area": 2.66766659997769e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118733801, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 14, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 5, + "change_within_25m": 4, + "change_within_50m": 5, + "change_within_100m": 6, + "move:node/4908035523": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7119271000000005, + 50.87760485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RubOSM", + "uid": "2096650", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-21T11:59:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 28, + "delete": 0, + "area": 0.00000706541755999335, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118732935, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 41, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 6, + "change_within_25m": 42, + "move:node/9594268350": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34007, + 50.99349795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T11:36:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118731804, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2010138, + 51.1861374 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Visit Kinrooi", + "uid": "15291736", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T09:25:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118726456, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "import": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "import:node/9593947994": "source: https://osm.org/note/3044265" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8165661, + 51.1239165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T07:24:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 2.68524901333255, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118721867, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 15, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.9878147, + 10.1500781 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NaanAvanIllai", + "uid": "14062769", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T07:13:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.123000610973104, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118721482, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 77.89188805, + 9.494318 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "un1matr1x", + "uid": "9133122", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T06:24:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.24950859998461e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118719959, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.241793, + 53.54717825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thschick", + "uid": "2753036", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-21T05:39:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118718813, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.012732, + 51.4545217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-21T01:10:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.38449150001034e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118715002, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "nl", + "imagery": "osm", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29874625, + 50.83237075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tomczk", + "uid": "4345690", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-20T19:29:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118708091, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "Geoportal2-PL-HighResolution-aerial_image_WMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.9567039, + 52.2495538 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Philippe Winant", + "uid": "6354026", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-20T18:47:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-22T10:28:12.210336Z", + "id": 118706934, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8019088, + 51.3215277 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-20T16:14:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.49662699985366e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118702127, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04693755, + 51.64543055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Liezeke P", + "uid": "15315945", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-20T15:43:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-20T18:42:33.265518Z", + "id": 118701048, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1638534, + 50.9354031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Janjko", + "uid": "244754", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-20T15:31:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000262641979499947, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118700505, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_500m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.99735905, + 45.79836035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-20T14:35:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118698189, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1058316, + 49.7465855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "queenLizzie", + "uid": "15349770", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-20T13:32:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118696122, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1264086, + 51.534583 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "queenLizzie", + "uid": "15349770", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-20T13:19:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 10, + "delete": 1, + "area": 6.44167679997887e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118695699, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 14, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 4, + "change_over_5000m": 5, + "change_within_25m": 19, + "deletion:node/9592055349": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12689250000000002, + 51.534870600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-20T11:55:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 69, + "modify": 286, + "delete": 9, + "area": 0.000105902549400005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118693357, + "host": "mapcomplete.osm.be", + "move": 253, + "theme": "grb", + "answer": 4, + "import": 14, + "locale": "nl", + "imagery": "osm", + "conflation": 68 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0123675500000004, + 51.1320806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Lommel", + "uid": "15363065", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-20T11:05:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 15, + "modify": 1, + "delete": 0, + "area": 0.0143505333550801, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118691909, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "import": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "import:node/-14": "source: https://osm.org/note/3022908", + "import:node/-19": "source: https://osm.org/note/3044336", + "import:node/-20": "source: https://osm.org/note/3044408", + "import:node/9591751423": "source: https://osm.org/note/3023036", + "import:node/9591769183": "source: https://osm.org/note/3023012" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2960866, + 51.21434815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-20T09:42:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 20, + "modify": 94, + "delete": 0, + "area": 0.00347811634879973, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118689635, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 129, + "locale": "nl", + "imagery": "osm", + "add-image": 25, + "move:node/9591648663": "improve_accuracy", + "move:node/9591655479": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76564475, + 51.0564118 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-20T09: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": 118689499, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8363957, + 51.0462844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-20T08:53:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000807733869960054, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118688521, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8814148, + 50.9955853 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-20T07:26:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 64, + "delete": 0, + "area": 0.0161402292196001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118686881, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 106, + "locale": "nl", + "imagery": "osm", + "add-image": 18, + "move:node/9591488277": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9346186, + 50.994585099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T23:54:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118682470, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3793721, + 50.8607021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T23:52:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118682451, + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3517883, + 50.8492024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T23:47:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118682388, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "UrbISOrtho", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3834236, + 50.8560664 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-19T22:55:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118681569, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.3183669, + 47.637297 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Zarr", + "uid": "6670496", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-19T22:46:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118681432, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 2, + "locale": "en", + "imagery": "EsriWorldImagery", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.9615528, + 49.2079629 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T20:50:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 49, + "delete": 0, + "area": 0.000204429839130034, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118678876, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 55, + "locale": "nl", + "imagery": "osm", + "add-image": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.050417250000001, + 50.94979765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-19T19:17:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-20T18:45:32.041910Z", + "id": 118676646, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2325124, + 50.73165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-19T18:58:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.78854999946534e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118676265, + "host": "pietervdvn.github.io", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7253290000000003, + 51.043951750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #vending_machines", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-19T16:35:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118671861, + "host": "mapcomplete.osm.be", + "theme": "vending_machines", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7279218, + 51.0444851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T16:08:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.38186000002912e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118670971, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4950197, + 50.9911265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #vending_machines", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-19T15:33:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118669747, + "host": "mapcomplete.osm.be", + "theme": "vending_machines", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7279218, + 51.0444851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T15:17:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118669196, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5148994, + 50.8251802 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T14:06:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118667027, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3552997, + 50.8776305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T13:53:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 6.28703999985087e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118666687, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4238739, + 50.884706699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T13:17:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118665576, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5331481, + 44.8653597 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.16.8", + "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-03-19T12:02:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000524881920000107, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118663453, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 3, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.76187605, + -34.658275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jorisbo", + "uid": "1983103", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-19T11:55:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.60097000031982e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118663259, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 5, + "move:node/9589827080": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55171645, + 51.25300365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-19T11:34:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118662751, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1112677, + 38.841307 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-19T11:21:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118662292, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2357428, + 50.7364971 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jorisbo", + "uid": "1983103", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T10:21:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.63240000062901e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118660316, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "move:node/7242959910": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42460055, + 51.203291199999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T10:00:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118659636, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.450867, + 50.8811808 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T09:57:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.00103607327180992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118659559, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42629385, + 50.87071415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T09:36:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.90453699996611e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118658975, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71262875, + 51.0606261 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T08:38:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118657435, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4847071, + 50.8855086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Arlo James Barnes", + "uid": "682928", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-19T08:24:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0129474161375995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118657115, + "host": "mapcomplete.osm.be", + "theme": "hackerspaces", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -105.94176519999999, + 35.5990231 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-19T07:49:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118656381, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0972963, + 50.9970135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-18T21:06:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 37, + "modify": 16, + "delete": 0, + "area": 0.000129623842879997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118647769, + "host": "mapcomplete.osm.be", + "move": 15, + "theme": "grb", + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2639518, + 50.7778309 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-18T19:25:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 908, + "modify": 0, + "delete": 0, + "area": 0.000027476706400007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118645314, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 137, + "locale": "nl", + "imagery": "osm", + "change_within_100m": 5, + "change_within_500m": 57, + "change_within_1000m": 70, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6259553, + 50.9175388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-18T18:51:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118644313, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.912223, + -53.1576011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-18T17:31:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 6, + "delete": 0, + "area": 2.08463999938217e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118641855, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1445650999999994, + 51.178313700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "queenLizzie", + "uid": "15349770", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-18T17:27:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118641720, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1378696, + 51.5485577 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-18T14:18:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 765, + "modify": 1928, + "delete": 31, + "area": 0.000597187733999868, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118634971, + "host": "mapcomplete.osm.be", + "move": 1667, + "theme": "grb", + "answer": 6, + "import": 85, + "locale": "nl", + "imagery": "osm", + "conflation": 520, + "change_within_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0230865, + 51.104622649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-18T13:44:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1284, + "modify": 1525, + "delete": 13, + "area": 0.000128803365899977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118633589, + "host": "mapcomplete.osm.be", + "move": 1384, + "theme": "grb", + "import": 156, + "locale": "nl", + "imagery": "osm", + "conflation": 348 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.262135349999999, + 50.7693472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Alveringem", + "uid": "15348388", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-18T13:30:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 0, + "delete": 0, + "area": 7.72131360000253e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118633102, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7073487, + 51.0117444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dries Verdoodt", + "uid": "7250277", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-18T13:11:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-18T19:14:33.947925Z", + "id": 118632455, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.348841, + 50.8664898 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-981249348", + "osm_id": 981249348, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": {} + } + ], + "user": "DNK9290", + "uid": "14143286", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-18T10:02:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 13, + "delete": 1, + "area": 0.00114073372840009, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118625875, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 23, + "locale": "nl", + "imagery": "AGIV", + "deletion": 1, + "soft-delete": 1, + "deletion:node/1624607361": "shop_closed", + "soft-delete:way/981249348": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9726844, + 51.0344684 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "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, + "area": 0.00062539171490998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118625802, + "host": "mapcomplete.osm.be", + "move": 543, + "theme": "grb", + "import": 134, + "locale": "nl", + "imagery": "osm", + "conflation": 164 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26210045, + 50.74059235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-18T09:09:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 950, + "modify": 843, + "delete": 38, + "area": 0.00034310082198002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118624092, + "host": "mapcomplete.osm.be", + "move": 767, + "theme": "grb", + "import": 149, + "locale": "nl", + "imagery": "osm", + "conflation": 180 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.259865250000001, + 50.7516035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-18T09:07:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 41, + "modify": 26, + "delete": 0, + "area": 0.0000120413611200131, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118624029, + "host": "mapcomplete.osm.be", + "move": 23, + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.261163, + 50.757676599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-18T08:45:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.47722400002576e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118623219, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13867, + 51.177499100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-18T08:06:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1342, + "modify": 1282, + "delete": 6, + "area": 0.000115530484300022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118621703, + "host": "mapcomplete.osm.be", + "move": 1165, + "theme": "grb", + "import": 175, + "locale": "nl", + "imagery": "osm", + "conflation": 282 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25893635, + 50.762283999999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-18T07:58:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118621398, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7361168, + 50.8545877 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T22:50:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118613561, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8571554, + 50.9910854 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T21:47:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118611994, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1054638, + 51.0649694 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T21:01:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00180065448671988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118610877, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.996756850000001, + 51.320970700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tissie", + "uid": "11544291", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T19:32:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 16, + "delete": 0, + "area": 0.00086489841434997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118608266, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 29, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9586258366": "source: https://osm.org/note/3022934" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45649525, + 51.39093335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T19:08:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.5314093000299e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118607485, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23716075, + 51.18855405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T18:13:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000116369240680035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118605990, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.289380850000001, + 51.0482232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T15:52:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 112, + "modify": 182, + "delete": 0, + "area": 0.000013143554639993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118600405, + "host": "mapcomplete.osm.be", + "move": 159, + "theme": "grb", + "import": 16, + "locale": "nl", + "imagery": "osm", + "conflation": 50 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2558033, + 50.76333795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T14:19:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1515, + "modify": 1393, + "delete": 9, + "area": 0.000143165877400018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118596301, + "host": "mapcomplete.osm.be", + "move": 1239, + "theme": "grb", + "answer": 1, + "import": 208, + "locale": "nl", + "imagery": "osm", + "conflation": 326 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25004, + 50.7673164 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-17T14:11:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.10402999997761e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118595932, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10483805, + 38.83519915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-17T12:21:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118591272, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7505282, + 50.796036 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "jospyck", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jan Pirard", + "uid": "13678221", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T11:19:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000323085365750092, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-17T13:11:23.974143Z", + "id": 118588371, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20045715, + 50.76450655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T11:10:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0245139258209393, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118587883, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3198669499999998, + 51.1142117 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-17T11:05:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00000327088838999726, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118587640, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.570225150000001, + 53.01745065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T11:05:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 704, + "modify": 452, + "delete": 3, + "area": 0.000107972870700042, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118587636, + "host": "mapcomplete.osm.be", + "move": 385, + "theme": "grb", + "import": 81, + "locale": "nl", + "imagery": "osm", + "conflation": 132 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.251057749999999, + 50.7744625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T10:02:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 921, + "modify": 539, + "delete": 9, + "area": 0.00027927218667995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118584609, + "host": "mapcomplete.osm.be", + "move": 464, + "theme": "grb", + "import": 100, + "locale": "nl", + "imagery": "osm", + "conflation": 152 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2565728499999995, + 50.782296 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T10:01:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 44, + "modify": 10, + "delete": 0, + "area": 0.00000190340395001113, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118584566, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25756495, + 50.77894925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-17T08:37:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 5.74600000433126e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118581339, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 4, + "move:node/9383788521": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5726065, + 53.0172661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "Jorisbo", + "uid": "1983103", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-17T06:41:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000237232236799868, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-17T19:57:07.984287Z", + "id": 118577261, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 23, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43307685, + 51.2072224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T21:00:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 28, + "modify": 33, + "delete": 0, + "area": 0.00000331488287999821, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118567688, + "host": "mapcomplete.osm.be", + "move": 28, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0455681, + 50.8775455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "davidtorcivia", + "uid": "1798584", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-16T20:39:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 2, + "delete": 0, + "area": 1.5218807999938e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118567052, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "answer": 7, + "locale": "en", + "imagery": "osm", + "change_within_25m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.91527389999999, + 40.704386150000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T20:28:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 208, + "modify": 106, + "delete": 0, + "area": 0.00000955237750000776, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118566700, + "host": "mapcomplete.osm.be", + "move": 91, + "theme": "grb", + "answer": 1, + "import": 21, + "locale": "nl", + "imagery": "osm", + "conflation": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25866785, + 50.7801245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T20:23:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 121, + "modify": 142, + "delete": 0, + "area": 0.0000030974993999889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118566538, + "host": "mapcomplete.osm.be", + "move": 126, + "theme": "grb", + "import": 22, + "locale": "nl", + "imagery": "osm", + "conflation": 32 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2597607, + 50.78184385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-16T20:11:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 40, + "delete": 0, + "area": 1.89025269997242e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118566196, + "host": "mapcomplete.osm.be", + "move": 37, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1795731499999995, + 50.74277965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-16T20:02:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 742, + "modify": 52, + "delete": 0, + "area": 0.0000188787978299813, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118565951, + "host": "mapcomplete.osm.be", + "move": 46, + "theme": "grb", + "answer": 3, + "import": 87, + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18001635, + 50.739725050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-16T17:40:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 16, + "delete": 0, + "area": 0.00241095666979979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118561656, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 24, + "locale": "en", + "imagery": "HDM_HOT", + "add-image": 3, + "change_over_5000m": 5, + "change_within_25m": 27 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.23248995, + 47.816131999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T17:33:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 6.40493999984351e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118561467, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/4882081431": "Is geen zitbank maar een picknickbank" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79278135, + 51.1850482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Logies De Boskouter", + "uid": "15276486", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-16T16:30:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-16T22:02:08.153936Z", + "id": 118559047, + "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.5660567, + 50.7645165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Zarr", + "uid": "6670496", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T16:00:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.2402800004679e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118557775, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -123.0026354, + 49.225227950000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dries Verdoodt", + "uid": "7250277", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T15:39:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118556890, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/9583281442": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1512455, + 50.9696173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T15:33:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 1.33465500000938e-8, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-17T22:43:55.896239Z", + "id": 118556714, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79249125, + 50.872947749999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-16T15:25:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118556460, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9639441, + 51.1978204 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Logies De Boskouter", + "uid": "15276486", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-16T14:58:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0085151897468013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118555484, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7518325, + 50.804096099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T14:35:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1004, + "modify": 1315, + "delete": 13, + "area": 0.0277668062585198, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118554638, + "host": "mapcomplete.osm.be", + "move": 1160, + "theme": "grb", + "import": 164, + "locale": "nl", + "imagery": "osm", + "conflation": 310 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3547373, + 50.85480825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T14:15:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 203, + "modify": 506, + "delete": 4, + "area": 0.000155284306560054, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118553947, + "host": "mapcomplete.osm.be", + "move": 449, + "theme": "grb", + "import": 34, + "locale": "nl", + "imagery": "osm", + "conflation": 124 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4385677999999995, + 50.9257932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T14:14:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 18, + "modify": 34, + "delete": 0, + "area": 4.51867199993351e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118553941, + "host": "mapcomplete.osm.be", + "move": 33, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4282936, + 50.922067150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.16.8", + "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-03-16T13:30:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118552313, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 1, + "locale": "es", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6323347, + -34.6496348 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "markloenders", + "uid": "5690621", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T13:22:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0.000100471522129993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118552005, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "import:node/9582956239": "source: https://osm.org/note/3044211" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25914945, + 51.03380275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-16T12:56:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1370, + "modify": 5, + "delete": 0, + "area": 0.0000805020698400416, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118551109, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "answer": 1, + "import": 176, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1812521, + 50.73828455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Visit Kinrooi", + "uid": "15291736", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T12:28:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00028490179718004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118550004, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 12, + "import": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "import:node/9582862682": "source: https://osm.org/note/3044320", + "import:node/9582907281": "source: https://osm.org/note/3044341" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.818458, + 51.13765215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Pluimpapaver Hotel & Glamping", + "uid": "15329767", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T10:08:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 1, + "area": 2.02369999987935e-8, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-17T08:28:40.364264Z", + "id": 118544600, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8796329, + 50.971024299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Driehoekshoeve", + "uid": "15329516", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T10:05:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118544445, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.002474, + 51.2537847 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T09:39:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 15, + "delete": 0, + "area": 2.35132040002148e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118543291, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 31, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.840204, + 50.8831656 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T08:13:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 456, + "modify": 551, + "delete": 9, + "area": 0.000265786267249995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118540122, + "host": "mapcomplete.osm.be", + "move": 495, + "theme": "grb", + "import": 82, + "locale": "nl", + "imagery": "osm", + "conflation": 112 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43329675, + 50.92671475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "VisitBruges", + "uid": "15310759", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-16T07:18:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-16T08:14:51.979153Z", + "id": 118538208, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "deletion:node/738894732": "shop_closed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2233015, + 51.2051967 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Zarr", + "uid": "6670496", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T22:49:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118529847, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -123.00222629999999, + 49.2254297 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T21:17:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 229, + "modify": 318, + "delete": 10, + "area": 0.0000117044225600093, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118527759, + "host": "mapcomplete.osm.be", + "move": 285, + "theme": "grb", + "import": 37, + "locale": "nl", + "imagery": "osm", + "conflation": 66 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4428845, + 50.93278685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-15T20:47:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118526961, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5561089, + 44.8269918 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T19:55:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118525421, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "locale": "en", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7742691, + 51.0756882 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-15T19:44:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000142429530060083, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118525053, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0105638, + 51.16040125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-15T19:29:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 19, + "modify": 33, + "delete": 0, + "area": 0.000214416843499977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118524561, + "host": "mapcomplete.osm.be", + "move": 28, + "theme": "grb", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5181737, + 51.13430785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-15T17:53:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 2.28920640000961e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118521492, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 11, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55636665, + 44.8266364 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T15:52:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 101, + "modify": 247, + "delete": 4, + "area": 0.00000592386370002065, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118517174, + "host": "mapcomplete.osm.be", + "move": 217, + "theme": "grb", + "import": 18, + "locale": "nl", + "imagery": "osm", + "conflation": 60 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44224675, + 50.9330742 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T15:49:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 69, + "modify": 102, + "delete": 4, + "area": 0.00000230646025000147, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118517083, + "host": "mapcomplete.osm.be", + "move": 88, + "theme": "grb", + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.441668249999999, + 50.93204235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T15:42:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 152, + "modify": 165, + "delete": 5, + "area": 0.0000717496921600331, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118516791, + "host": "mapcomplete.osm.be", + "move": 146, + "theme": "grb", + "import": 29, + "locale": "nl", + "imagery": "osm", + "conflation": 38 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4377654, + 50.9287564 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-15T14:28:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118513998, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2134326, + 51.2049828 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "jospyck", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ce_", + "uid": "15322395", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T14:17:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-15T14:36:08.662655Z", + "id": 118513576, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1097819, + 50.7415797 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-15T13:59:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118512905, + "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": [ + 3.2155716, + 51.2047105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T13:42:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 269, + "modify": 208, + "delete": 0, + "area": 0.0000149062315499825, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118512295, + "host": "mapcomplete.osm.be", + "move": 185, + "theme": "grb", + "import": 43, + "locale": "nl", + "imagery": "osm", + "conflation": 46 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.434477749999999, + 50.924742949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T13:41:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 52, + "modify": 47, + "delete": 0, + "area": 0.00000123053059999508, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118512258, + "host": "mapcomplete.osm.be", + "move": 44, + "theme": "grb", + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4377031, + 50.9257166 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael Didderiens", + "uid": "15281757", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T13:41:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.0037582309320301, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118512257, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.470357249999999, + 50.96733535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-15T13:24:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 105, + "modify": 211, + "delete": 2, + "area": 0.00000945652607999887, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118511602, + "host": "mapcomplete.osm.be", + "move": 184, + "theme": "grb", + "answer": 1, + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 52 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5229099, + 51.1268072 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "StefanB", + "uid": "3834", + "editor": "MapComplete 0.16.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-15T13:09:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 342, + "delete": 0, + "area": 0.535929494227679, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118511107, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 506, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.0433161, + 45.8065747 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-15T12:57:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118510679, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4351923, + 50.9398675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-15T12:52:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.00715999998366e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118510502, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1144693, + 38.83338355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-15T12:36:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118509934, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5354477, + 50.9555309 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "'t Kroonrad", + "uid": "15316179", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T12:36:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 10, + "delete": 0, + "area": 1.42484999966433e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118509928, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 15, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0178752499999995, + 51.00279115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "'t Kroonrad", + "uid": "15316179", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T12:19:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118509349, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0178766, + 51.0028135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Logies De Boskouter", + "uid": "15276486", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-15T11:34:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-15T12:23:56.373122Z", + "id": 118507695, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9204159, + 50.8167443 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-15T11:28:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 1.03134499999342e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118507463, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 9, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_100m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11272874999999999, + 38.83467975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T10:56:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 492, + "modify": 1155, + "delete": 3, + "area": 0.0000344824639500087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118506235, + "host": "mapcomplete.osm.be", + "move": 1013, + "theme": "grb", + "import": 78, + "locale": "nl", + "imagery": "osm", + "conflation": 284 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44047595, + 50.92842595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T10:45:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 14, + "modify": 134, + "delete": 5, + "area": 0.00000203970800000548, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118505771, + "host": "mapcomplete.osm.be", + "move": 113, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 42 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4401842, + 50.928962600000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T10:37:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 22, + "modify": 223, + "delete": 4, + "area": 0.00000308842112000092, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118505486, + "host": "mapcomplete.osm.be", + "move": 194, + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 58 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4386981, + 50.9287652 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T10:30:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 49, + "modify": 304, + "delete": 20, + "area": 0.00000392240859998531, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118505128, + "host": "mapcomplete.osm.be", + "move": 263, + "theme": "grb", + "import": 11, + "locale": "nl", + "imagery": "osm", + "conflation": 82 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4383763, + 50.92741315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rmic", + "uid": "805306", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T10:22:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.17541059999885e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118504760, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "locale": "fr", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8474116, + 50.47605995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T10:18:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 21, + "modify": 73, + "delete": 0, + "area": 0.00016011004584, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-22T13:53:13.120331Z", + "id": 118504623, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 117, + "locale": "nl", + "imagery": "osm", + "add-image": 27, + "move:node/9580330930": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04364165, + 50.9453142 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T10:15:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 224, + "modify": 315, + "delete": 13, + "area": 0.0000352231420100275, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118504497, + "host": "mapcomplete.osm.be", + "move": 280, + "theme": "grb", + "import": 40, + "locale": "nl", + "imagery": "osm", + "conflation": 70 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43736305, + 50.92780705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T09:09:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00180065448671988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118501930, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.996756850000001, + 51.320970700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michiel Inter", + "uid": "15318935", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T07:24:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118498050, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7738502, + 51.0847928 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T07:02:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 24, + "delete": 0, + "area": 0.0122698951120001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118497313, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 45, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95984205, + 50.979486 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "escada", + "uid": "436365", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-15T05:18:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.05813510002423e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118494501, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56339545, + 50.65957505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "'t Kroonrad", + "uid": "15316179", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T22:36:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 1.82879999982451e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118488666, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "move:node/9579359201": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0178034, + 51.00282575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Zarr", + "uid": "6670496", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T22:30:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.65438000004153e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118488492, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.9336705, + 49.206012900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Zarr", + "uid": "6670496", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T22:18:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.34409999905446e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118488198, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "personal", + "locale": "en", + "imagery": "osm", + "move:node/9432790097": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.94521094999999, + 49.201372250000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Zarr", + "uid": "6670496", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T22:08:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000185604539999823, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118487962, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.93997619999999, + 49.2026748 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rudi3324", + "uid": "15316049", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T22:08:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.0000893348237400831, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118487957, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1393848, + 51.025551050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-14T20:16:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 46, + "delete": 2, + "area": 0.00000319688567999425, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118484793, + "host": "mapcomplete.osm.be", + "move": 38, + "theme": "grb", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 14, + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5153118, + 51.105348 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-14T20:06:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000108651647999508, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118484496, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5130359, + 51.1108761 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.16.7", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T19:46:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 13, + "modify": 61, + "delete": 0, + "area": 0.0117630666615695, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118483875, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 79, + "locale": "nl", + "imagery": "osm", + "add-image": 16, + "move:node/9579123619": "improve_accuracy", + "move:node/9579250644": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93910525, + 50.81568215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T19:41:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000147087524999989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118483753, + "host": "127.0.0.1:1234", + "theme": "bicycle_rental", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22446535, + 51.20891145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T19:16:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118482999, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.076271, + 37.8176932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jcn706", + "uid": "351940", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-14T19:12:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00274439121549977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118482886, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 10, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.6952365, + 40.74721005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T18:53:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 11, + "modify": 40, + "delete": 1, + "area": 0.0037092903036, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118482232, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 56, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 11, + "deletion:node/9578947698": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0326207499999995, + 50.8988169 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-14T18:42:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 13, + "delete": 0, + "area": 0.000819228413299823, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118481877, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 18, + "locale": "nl", + "imagery": "AGIV", + "add-image": 5, + "change_over_5000m": 27 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.526627700000001, + 51.13937435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T18:10:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118480648, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.1303963, + 37.8966723 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T18:03:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118480364, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.128613, + 37.8891871 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ambigirl", + "uid": "15314372", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T16:49:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000277239030589766, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-26T10:47:10.492799Z", + "id": 118477544, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85512235, + 50.78507195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-14T16:07:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000018243731600029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118476072, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24124475, + 50.7340997 + ] + } + }, + { + "type": "Feature", + "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": "survey", + "imagery_used": "Not reported", + "date": "2022-03-14T15:29:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118474661, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1331118, + 52.3943701 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T15:28:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0107618210999992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118474613, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3808437, + 51.1166604 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-14T15:16:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3116, + "modify": 46, + "delete": 0, + "area": 0.000227332805489915, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118474199, + "host": "mapcomplete.osm.be", + "move": 45, + "theme": "grb", + "import": 397, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61698015, + 50.92108235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "endim8", + "uid": "13666626", + "editor": "MapComplete 0.17.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T14:46:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000433152588000564, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118473045, + "host": "pietervdvn.github.io", + "theme": "uk_addresses", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.016287, + 51.47761765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "jospyck", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WimBau", + "uid": "15313167", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T14:09:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 25, + "delete": 0, + "area": 0.00000496467074998924, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-14T15:35:27.157477Z", + "id": 118471676, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 28, + "locale": "nl", + "imagery": "osm", + "add-image": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04665005, + 50.95258765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ydel", + "uid": "3842332", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T13:53:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118471072, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.168353, + 47.8407103 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T13:04:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 761, + "modify": 1035, + "delete": 22, + "area": 0.000187007666859982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118469480, + "host": "mapcomplete.osm.be", + "move": 942, + "theme": "grb", + "import": 128, + "locale": "nl", + "imagery": "osm", + "conflation": 212 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.432088350000001, + 50.9262677 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T12:50:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 89, + "modify": 327, + "delete": 9, + "area": 0.0000120341289999897, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118468970, + "host": "mapcomplete.osm.be", + "move": 283, + "theme": "grb", + "import": 18, + "locale": "nl", + "imagery": "osm", + "conflation": 88 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.437152, + 50.9302107 + ] + } + }, + { + "type": "Feature", + "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": "survey", + "imagery_used": "Not reported", + "date": "2022-03-14T12:41:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118468672, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1652527, + 52.4488826 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T11:34:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 58, + "modify": 970, + "delete": 27, + "area": 0.0000580571972000069, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118466411, + "host": "mapcomplete.osm.be", + "move": 863, + "theme": "grb", + "import": 10, + "locale": "nl", + "imagery": "osm", + "conflation": 222 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.435321, + 50.928844350000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thschick", + "uid": "2753036", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-14T09:04:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.2171448000015e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118461165, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0106053500000005, + 51.4389497 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thschick", + "uid": "2753036", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-14T08:21:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.25641100007266e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118459528, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 3, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01183915, + 51.439524399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thschick", + "uid": "2753036", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-14T08:18:28Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118459394, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01076, + 51.4393456 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "VisitBruges", + "uid": "15310759", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T06:55:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 32, + "delete": 0, + "area": 0.000370036201270036, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-24T09:09:37.988234Z", + "id": 118456364, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 37, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22814925, + 51.21333025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "doublah", + "uid": "4948143", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-14T02:41:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.68031800003681e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118451315, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1937897, + 53.15497365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "doublah", + "uid": "4948143", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-14T02:39:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.68031800003681e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118451289, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1937897, + 53.15497365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-14T02:30:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 2, + "area": 1.40996000011719e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118451144, + "host": "127.0.0.1:1234", + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 2, + "locale": "nl", + "imagery": "osm", + "deletion": 2, + "import:node/9576684258": "source: https://osm.org/note/3023071", + "import:node/9576738884": "source: https://osm.org/note/3023071", + "deletion:node/9576684258": "testing point", + "deletion:node/9576738884": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4765827, + 51.028875299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "complete_gth", + "uid": "9837674", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-13T20:45:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 70, + "delete": 0, + "area": 0.0181593857952003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118445282, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 95, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.650708999999999, + 50.9317426 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "P Kanzler", + "uid": "6173912", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-13T20:43:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118445234, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.012898, + 49.4126348 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-13T19:52:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.50836519999781e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118443748, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70962295, + 51.036304799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dinn0", + "uid": "14893874", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-13T16:37:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000290726013500063, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118437254, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16361575, + 41.36208345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-13T16:29:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.0000262356408299977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118436939, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 12, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_5000m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2174659500000002, + 51.20081315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-13T14:19:04Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.01240370000772e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118431501, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22309175, + 51.20872955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-13T14:09:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 22, + "delete": 0, + "area": 0.0000657532705500014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118431030, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 34, + "locale": "nl", + "imagery": "osm", + "add-image": 7, + "change_over_5000m": 4, + "change_within_25m": 17, + "change_within_50m": 14, + "change_within_100m": 6, + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2203379500000002, + 51.20281745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-13T14:02:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118430760, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5303936, + 44.8382183 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-13T11:24:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 18, + "delete": 0, + "area": 4.46521299994367e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118425866, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99881025, + 51.131101650000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 41, + "name": "Software editor was not declared" + } + ], + "tags": [], + "features": [], + "user": "kersentaart", + "uid": "9812520", + "editor": null, + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-13T09:24:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 6.65483220002789e-7, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-13T18:15:50.140295Z", + "id": 118422299, + "theme": "toerisme_vlaanderen", + "import": 2, + "change_over_5000m": 2, + "import:node/9574672296": "source: https://osm.org/note/3023039", + "import:node/9574693847": "source: https://osm.org/note/3044323" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5356927, + 50.95738375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-13T06:26:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 488, + "modify": 1853, + "delete": 29, + "area": 0.000201913322380013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118419134, + "host": "mapcomplete.osm.be", + "move": 1650, + "theme": "grb", + "answer": 5, + "import": 65, + "locale": "nl", + "imagery": "osm", + "conflation": 442 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.006922299999999, + 51.12849095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wegspotter", + "uid": "428001", + "editor": "MapComplete 0.17.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-12T23:37:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 68, + "modify": 0, + "delete": 0, + "area": 9.52916579994416e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118415420, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 10, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8933532, + 50.797446550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-12T23:13:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.00000999227754999489, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118415064, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 22, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60545215, + 54.855653149999995 + ] + } + }, + { + "type": "Feature", + "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": "survey", + "imagery_used": "Not reported", + "date": "2022-03-12T19:39:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 4, + "delete": 0, + "area": 0.00228290690005983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118410404, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.129729600000001, + 52.40746395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-12T16:11:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.7200000009025e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118403754, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 10, + "move:node/9165158595": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36722755, + 50.8145848 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-12T15:04:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2228, + "modify": 69, + "delete": 4, + "area": 0.00080863751670006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118401351, + "host": "mapcomplete.osm.be", + "move": 55, + "theme": "grb", + "answer": 7, + "import": 257, + "locale": "nl", + "imagery": "osm", + "conflation": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97278045, + 50.9166126 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tordans", + "uid": "11881", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-12T14:59:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118401126, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4497273, + 52.4729002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-12T13:56:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000223420313100043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118399034, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 10, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7170052499999997, + 50.89962665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-12T13:33:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-13T07:37:51.167869Z", + "id": 118398322, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8121588, + 51.1936374 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-12T13:27:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118398150, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5562629, + 53.2301499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-12T12:50:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118396864, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.504258, + 47.4446216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cMartin", + "uid": "128287", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-12T10:46:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000375564284998951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118393302, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.92138765, + 50.68325485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-12T08:32:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.55745299999529e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118389625, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33666595, + 51.087551250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Asteliks", + "uid": "9420959", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-12T07:29:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000979987870799585, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118388467, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.9556968, + 52.205279700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-12T07:18:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118388310, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1552405, + 50.805731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-12T05:34:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1854, + "modify": 258, + "delete": 0, + "area": 0.000211887023540078, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118386966, + "host": "mapcomplete.osm.be", + "move": 221, + "theme": "grb", + "answer": 9, + "import": 229, + "locale": "nl", + "imagery": "osm", + "conflation": 64 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.992186650000001, + 50.9234317 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-7421525825", + "osm_id": 7421525825, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T19:56:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118377606, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3381958, + 51.0862626 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T19:42:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00010871777161989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118377145, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35999945, + 51.077729500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefanB", + "uid": "3834", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-11T19:37:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118376992, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.4909855, + 46.071118 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Els Q", + "uid": "15213418", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-11T18:24:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 13, + "modify": 5, + "delete": 0, + "area": 0.00687879089856004, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-24T08:14:53.674857Z", + "id": 118374773, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 14, + "locale": "nl", + "imagery": "osm", + "move:node/9571364716": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6486779, + 50.83145355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.6", + "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-03-11T18: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": 118374322, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.338839, + 51.0866906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-11T16:30:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 30, + "delete": 0, + "area": 0.0011789189445999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118370715, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 28, + "locale": "nl", + "imagery": "osm", + "add-image": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3681838500000003, + 51.080854200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.6", + "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-03-11T16:25:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.000676807401540088, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118370544, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 12, + "locale": "en", + "imagery": "osm", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3569613499999997, + 51.082890500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T15:48:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1688, + "modify": 11, + "delete": 0, + "area": 0.0000561948088499916, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118369149, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "import": 212, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99669075, + 50.91579885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T15:40:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 202, + "modify": 133, + "delete": 0, + "area": 0.00000957029327999146, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118368873, + "host": "mapcomplete.osm.be", + "move": 107, + "theme": "grb", + "answer": 12, + "import": 15, + "locale": "nl", + "imagery": "osm", + "conflation": 30 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00299825, + 50.9137597 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T15:27:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118368424, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5562629, + 53.2301499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T14:33:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 87, + "modify": 111, + "delete": 0, + "area": 0.00006566943431999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118366520, + "host": "mapcomplete.osm.be", + "move": 88, + "theme": "grb", + "answer": 13, + "import": 11, + "locale": "nl", + "imagery": "osm", + "conflation": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0018731, + 50.9153212 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T13:54:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 488, + "modify": 192, + "delete": 2, + "area": 0.0000175274485400165, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118365197, + "host": "mapcomplete.osm.be", + "move": 151, + "theme": "grb", + "answer": 17, + "import": 52, + "locale": "nl", + "imagery": "osm", + "conflation": 56 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.003205599999999, + 50.91616205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T12:57:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118363238, + "host": "pietervdvn.github.io", + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7002817, + 51.0535344 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "P Kanzler", + "uid": "6173912", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T12:51:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118363062, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.1224848, + 49.4797711 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T12:51:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1448, + "modify": 245, + "delete": 6, + "area": 0.0000459554667200474, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118363052, + "host": "mapcomplete.osm.be", + "move": 202, + "theme": "grb", + "answer": 17, + "import": 176, + "locale": "nl", + "imagery": "osm", + "conflation": 56 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.007255799999999, + 50.918398249999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [ + { + "id": 9, + "name": "Resolved" + } + ], + "features": [], + "user": "Visit_Maasmechelen", + "uid": "15271831", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-11T11:52:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 9, + "modify": 19, + "delete": 2, + "area": 0.000462920752160016, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-24T08:13:47.046238Z", + "id": 118360995, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 43, + "import": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "deletion": 2, + "import:node/9570710286": "source: https://osm.org/note/3044260", + "deletion:node/9570698173": "duplicate", + "deletion:node/9570698174": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70174875, + 50.9823282 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-11T11:18:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.00000133431572999704, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-14T15:36:06.529903Z", + "id": 118359426, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75535835, + 51.130081950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-11T10:23:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118356986, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5562629, + 53.2301499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefanB", + "uid": "3834", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T10:13:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118356486, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.4909855, + 46.071118 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T10:05:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118356139, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5562629, + 53.2301499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Muokkaaja", + "uid": "494482", + "editor": "MapComplete 0.17.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T09:29:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118354803, + "host": "pietervdvn.github.io", + "theme": "benches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.8898929, + 60.2625226 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T05:37:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1006, + "modify": 546, + "delete": 4, + "area": 0.0221342944576804, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118347932, + "host": "mapcomplete.osm.be", + "move": 489, + "theme": "grb", + "answer": 3, + "import": 117, + "locale": "nl", + "imagery": "osm", + "conflation": 120 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95925085, + 51.0298023 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-11T01:20:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118344483, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.459969, + 50.7691044 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 41, + "name": "Software editor was not declared" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": null, + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-11T00:43:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0086878095159601, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118344062, + "theme": "toerisme_vlaanderen", + "answer": 3, + "import": 2, + "import:node/9569800008": "source: https://osm.org/note/3044645", + "import:node/9569885802": "source: https://osm.org/note/3044554" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2153412, + 51.058568 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-11T00:20:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000548268340499619, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118343765, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08347965, + 51.13013035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Regionaal Landschap Zuid-Hageland", + "uid": "8539263", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-11T00:14:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00063544200672001, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-11T20:25:04.775224Z", + "id": 118343688, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 10, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9984545, + 50.80494775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.6", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-10T23:29:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118343025, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7040531, + 51.0499375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "totosm", + "uid": "252884", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-10T21:35:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000130667748000219, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118340668, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8519929, + 51.2980341 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Christopher", + "uid": "2956", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-10T21:25:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118340407, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2661075, + 52.2970677 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.5", + "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-03-10T20:07:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118337950, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3737036, + 51.0818367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T19:01:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118335890, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48466, + 51.0009077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T18:58:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118335792, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4845031, + 51.0009929 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T18:24:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118334701, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6996553, + 51.0521448 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-203753872", + "name": "Ulica kneza Branimira", + "osm_id": 203753872, + "reasons": [ + 87 + ], + "version": 10, + "primary_tags": { + "highway": "secondary" + } + } + ], + "user": "Janjko", + "uid": "244754", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T15:52:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 110, + "delete": 0, + "area": 0.00320965119732009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118329336, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 134, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 26, + "change_within_25m": 2, + "change_within_50m": 1, + "change_within_100m": 1, + "change_within_500m": 2, + "change_within_5000m": 102 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.032459000000003, + 45.81094525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T14:55:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 9, + "delete": 0, + "area": 3.97514039998877e-7, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-11T20:15:35.954271Z", + "id": 118327277, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 5, + "change_within_50m": 3, + "change_within_100m": 1, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3324381, + 51.01304145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T14:49:46Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000336365823299648, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118327062, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16729185, + 51.11370345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T14:34:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4906, + "modify": 77, + "delete": 0, + "area": 0.00648723537359989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118326565, + "host": "mapcomplete.osm.be", + "move": 74, + "theme": "grb", + "import": 674, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 34, + "change_over_5000m": 333 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1398245, + 51.169143649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fx99", + "uid": "130472", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-10T14:30:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.14513500011416e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118326429, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.90373885, + 48.648897149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dries Verdoodt", + "uid": "7250277", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-10T14:17:09Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-11T15:11:33.090652Z", + "id": 118325923, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/9568829106": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0125418, + 50.9441163 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Menen", + "uid": "15282506", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-10T12:47:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 0, + "delete": 0, + "area": 3.47759999996515e-8, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-11T15:08:59.116049Z", + "id": 118322667, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1194758, + 50.795159100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T12:35:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 205, + "modify": 1024, + "delete": 19, + "area": 0.0000533583361999875, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118322336, + "host": "mapcomplete.osm.be", + "move": 894, + "theme": "grb", + "answer": 12, + "import": 28, + "locale": "nl", + "imagery": "osm", + "conflation": 266 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90635535, + 51.128516399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AnnabelleVerhaegen", + "uid": "12319350", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-10T12:33:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 1, + "delete": 0, + "area": 0.00192710186363972, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-11T15:06:59.557170Z", + "id": 118322266, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "AGIV", + "move:node/9568658420": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8543772, + 50.9860374 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T12:21:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2479, + "modify": 0, + "delete": 0, + "area": 0.000036258157100006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118321860, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 330, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 330 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1182476999999995, + 51.22267795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T12:07:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1543, + "modify": 0, + "delete": 0, + "area": 0.0000366263693199895, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118321391, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 215, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 215 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.118388599999999, + 51.21917045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jeugddienst Bierbeek", + "uid": "15281781", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-10T11:08:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118318869, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7947919, + 50.8092246 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T09:35:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 2.00999999972702e-12, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118313135, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 10, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "move:node/5212386109": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40286065, + 50.82110945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-10T08:43:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 382, + "modify": 452, + "delete": 0, + "area": 0.0000527204761000177, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118310778, + "host": "mapcomplete.osm.be", + "move": 411, + "theme": "grb", + "import": 60, + "locale": "nl", + "imagery": "osm", + "conflation": 82 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42681305, + 50.9240732 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vrijetijd", + "uid": "15265182", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T08:31:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.00282049016212004, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-11T14:57:13.993816Z", + "id": 118310233, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17516405, + 50.9877867 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-10T08:10:59Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.01240370000772e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118309449, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22309175, + 51.20872955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T07:44:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-10T16:13:43.717092Z", + "id": 118307883, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8130907, + 51.1921633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T05:43:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 51, + "modify": 420, + "delete": 8, + "area": 0.0000398565289500127, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118303992, + "host": "mapcomplete.osm.be", + "move": 362, + "theme": "grb", + "answer": 13, + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 106 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91201575, + 51.13523135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 489, + "name": "Mapbox: Spam text" + } + ], + "tags": [], + "features": [ + { + "url": "node-4318020492", + "note": "Spam text reported in [\"name:en\",\"name:etymology:wikidata\"] tags in the feature", + "osm_id": 4318020492, + "reasons": [ + 489 + ], + "version": 4 + } + ], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-10T05:00:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 72, + "delete": 0, + "area": 7.08537441671416, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118303101, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 87, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 14, + "change_within_5000m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.1739574, + 11.4873639 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-10T02:08:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.26457000002718e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118300475, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1434507, + 51.17146075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "P Kanzler", + "uid": "6173912", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T22:03:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000228374644999014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118296034, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.029012250000001, + 49.57401145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-09T21:56:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 75, + "delete": 0, + "area": 0.00462900275794009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118295878, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 103, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07524025000000001, + 38.8221872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LeTopographeFou", + "uid": "3178375", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T21:32:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 149, + "delete": 0, + "area": 0.0408221753616892, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118295287, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 175, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3343826500000002, + 49.06452405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dinn0", + "uid": "14893874", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-09T21:05:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118294518, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1333814, + 49.3041449 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Els Q", + "uid": "15213418", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T20:56:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 7, + "modify": 11, + "delete": 0, + "area": 0.00196756997643997, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-11T10:09:47.830923Z", + "id": 118294281, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 27, + "locale": "nl", + "imagery": "osm", + "move:node/9566924243": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56952995, + 50.857408899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Logies De Boskouter", + "uid": "15276486", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-09T20:47:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000135381883900112, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-24T08:11:47.869987Z", + "id": 118294029, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_5000m": 3, + "move:node/9566927051": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91096265, + 50.813164 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.17.0-alpha", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-09T20:11:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.26457000002718e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118293075, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 3, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1434507, + 51.17146075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde OSM", + "uid": "15275790", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T19:38:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-11T09:27:15.949720Z", + "id": 118292206, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8567589, + 50.8834305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T18:28:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.00109314747760005, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-11T09:11:41.003729Z", + "id": 118289942, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 21, + "locale": "nl", + "imagery": "osm", + "move:node/9566663258": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76583045, + 51.126369 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-09T17:26:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1942, + "modify": 0, + "delete": 0, + "area": 0.0000222405478400292, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118287854, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 283, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_within_50m": 5, + "change_within_100m": 42, + "change_within_500m": 23, + "change_within_1000m": 213 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1194924, + 51.217741000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-09T16:32:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000380432052000064, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118285899, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1113622, + 51.2206607 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "L'imaginaire", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mappers_Delight", + "uid": "15267966", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-09T14:51:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-09T21:43:53.652609Z", + "id": 118282335, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7534705, + 51.0628504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T14:44:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 97, + "modify": 240, + "delete": 4, + "area": 0.00000453714927000435, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118282091, + "host": "mapcomplete.osm.be", + "move": 215, + "theme": "grb", + "import": 17, + "locale": "nl", + "imagery": "osm", + "conflation": 50 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.423796149999999, + 50.92158295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T14:42:20Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 128, + "modify": 94, + "delete": 4, + "area": 0.00000318038388999626, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118282013, + "host": "mapcomplete.osm.be", + "move": 82, + "theme": "grb", + "import": 19, + "locale": "nl", + "imagery": "osm", + "conflation": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4227947499999996, + 50.920382849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 41, + "name": "Software editor was not declared" + } + ], + "tags": [], + "features": [], + "user": "vatho", + "uid": "3146120", + "editor": null, + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T14:20:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118281107, + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 1, + "change_over_5000m": 1, + "change_within_1000m": 2, + "move:node/9566127444": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166589, + 50.9304418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T14:14:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 186, + "modify": 332, + "delete": 39, + "area": 0.0000323980588500322, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118280901, + "host": "mapcomplete.osm.be", + "move": 289, + "theme": "grb", + "import": 33, + "locale": "nl", + "imagery": "osm", + "conflation": 86 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41960315, + 50.920047350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T14:12:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 6, + "modify": 13, + "delete": 3, + "area": 1.38527269999866e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118280827, + "host": "mapcomplete.osm.be", + "move": 11, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42155085, + 50.92026405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-09T14:12:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 34, + "delete": 0, + "area": 0.000302990946220054, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118280802, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 34, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9002175, + 51.13845455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 531, + "name": "Mapbox: Overlapping features" + } + ], + "tags": [], + "features": [ + { + "url": "way-1038766925", + "osm_id": 1038766925, + "reasons": [ + 531 + ], + "version": 1 + } + ], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T14:10:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 92, + "modify": 267, + "delete": 9, + "area": 0.00106098675712986, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118280741, + "host": "mapcomplete.osm.be", + "move": 233, + "theme": "grb", + "answer": 7, + "import": 4, + "locale": "nl", + "conflation": 56 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89667665, + 51.13427515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jumpguitarke", + "uid": "1764929", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T14:07:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 19, + "modify": 0, + "delete": 0, + "area": 0.000517690779600008, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-10T09:13:14.449642Z", + "id": 118280600, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0895098, + 50.873349899999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-09T13:47:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118279890, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 5, + "locale": "en", + "imagery": "AGIVFlandersGRB", + "change_within_25m": 4, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1391715, + 51.1690027 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-09T13:26:18Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118279228, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 10, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 4, + "change_within_25m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5562629, + 53.2301499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T12:46:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 572, + "modify": 1472, + "delete": 24, + "area": 0.000152326014820025, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118277942, + "host": "mapcomplete.osm.be", + "move": 1279, + "theme": "grb", + "import": 95, + "locale": "nl", + "imagery": "osm", + "conflation": 390 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4204398000000005, + 50.924634350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-09T11:34:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118275036, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 6, + "locale": "en", + "imagery": "AGIVFlandersGRB", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1391715, + 51.1690027 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T11:19:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 132, + "modify": 140, + "delete": 1, + "area": 0.0000186994838399811, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118274475, + "host": "mapcomplete.osm.be", + "move": 124, + "theme": "grb", + "import": 21, + "locale": "nl", + "imagery": "osm", + "conflation": 36 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4267536, + 50.930077350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T11:12:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 45, + "modify": 183, + "delete": 4, + "area": 0.00000443903523000748, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118274197, + "host": "mapcomplete.osm.be", + "move": 175, + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 42 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42708285, + 50.93025945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Salambre", + "uid": "15272429", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T10:31:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.000762918030350127, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-09T14:08:12.245479Z", + "id": 118272545, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "move:node/9565779052": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76583045, + 51.12249475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T10:16:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 126, + "delete": 0, + "area": 4.90218371747509, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118271953, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 163, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.47643755, + 12.4473016 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LienV", + "uid": "15272266", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T09:44:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.0126033346223101, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-09T14:05:01.484344Z", + "id": 118270704, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07785225, + 50.72725785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T09:03:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 657, + "modify": 1526, + "delete": 39, + "area": 0.00011652742815991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118269085, + "host": "mapcomplete.osm.be", + "move": 1364, + "theme": "grb", + "import": 107, + "locale": "nl", + "imagery": "osm", + "conflation": 330 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43115095, + 50.931426099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "reginaldc", + "uid": "510576", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T07:35:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 14, + "modify": 16, + "delete": 0, + "area": 0.00115553820690009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118265775, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 16, + "locale": "en", + "imagery": "osm", + "add-image": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2606738, + 50.92481375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-412829145", + "osm_id": 412829145, + "reasons": [ + 42 + ], + "version": 5, + "primary_tags": {} + } + ], + "user": "reginaldc", + "uid": "510576", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-09T07:17:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 7, + "delete": 0, + "area": 0.00039159397816006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118265167, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 5, + "soft-delete": 1, + "soft-delete:way/412829145": "This point is not on the right place" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2518016000000003, + 50.917114 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-08T21:53:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.25440000038195e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118254055, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5159798, + 51.0020467 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mappers_Delight", + "uid": "15267966", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T21:50:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-09T09:02:22.390225Z", + "id": 118253993, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7534705, + 51.0628504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-08T21:31:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 255, + "delete": 0, + "area": 0.00366293581327996, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118253482, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 297, + "locale": "it", + "imagery": "osm", + "change_within_500m": 26, + "change_within_1000m": 36, + "change_within_5000m": 38 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.6756675, + 44.737562100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T20:53:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 22, + "modify": 191, + "delete": 6, + "area": 0.0000253542884699958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118252393, + "host": "mapcomplete.osm.be", + "move": 172, + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 38 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42214005, + 50.92658215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-08T20:03:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 50, + "delete": 7, + "area": 0.0000363495934500258, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118250925, + "host": "mapcomplete.osm.be", + "move": 43, + "theme": "grb", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91379785, + 51.13515085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-08T19:44:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-09T08:56:58.594720Z", + "id": 118250413, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1318877, + 51.1824735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-08T16:06:47Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 11, + "modify": 15, + "delete": 0, + "area": 5.41721600016333e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118242501, + "host": "mapcomplete.osm.be", + "move": 15, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9038169499999995, + 51.1362211 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T15:16:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 596, + "modify": 928, + "delete": 21, + "area": 0.000159577799999978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118240767, + "host": "mapcomplete.osm.be", + "move": 819, + "theme": "grb", + "import": 93, + "locale": "nl", + "imagery": "osm", + "conflation": 218 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.413574199999999, + 50.9273556 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-08T14:50:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.65940000231548e-9, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-10T08:22:18.317322Z", + "id": 118239785, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3311437, + 51.01281195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Vrijetijd", + "uid": "15265182", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-08T14:47:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 15, + "delete": 0, + "area": 0.00399834164783989, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-08T18:50:58.066169Z", + "id": 118239668, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 14, + "locale": "nl", + "imagery": "AGIV", + "add-image": 8, + "change_over_5000m": 1, + "change_within_5000m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18294845, + 50.987740599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "reginaldc", + "uid": "510576", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T14:38:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.000156078727419997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118239383, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2554427, + 50.91710745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Toerisme Tongeren", + "uid": "15265134", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T14:16:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 10, + "modify": 7, + "delete": 1, + "area": 0.000160119945999957, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-08T18:42:01.590764Z", + "id": 118238619, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/9562762302": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4657465, + 50.776033 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T13:48:11Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 321, + "modify": 345, + "delete": 3, + "area": 0.0000452876767200176, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118237596, + "host": "mapcomplete.osm.be", + "move": 310, + "theme": "grb", + "import": 43, + "locale": "nl", + "imagery": "osm", + "conflation": 70 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4048713, + 50.9321906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marival", + "uid": "8238040", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T13:42:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118237389, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 5, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.4745793, + 44.9077529 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T13:23:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-08T15:34:15.073878Z", + "id": 118236745, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2420522, + 50.8909833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T13:07:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.00131567645037004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118236215, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.82746405, + -32.91976135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T12:46:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 913, + "modify": 916, + "delete": 15, + "area": 0.0058217387617498, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118235536, + "host": "mapcomplete.osm.be", + "move": 823, + "theme": "grb", + "import": 121, + "locale": "nl", + "imagery": "osm", + "conflation": 188 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36752495, + 50.89485685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hilde De Laet", + "uid": "15264487", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T12:42:15Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118235395, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8132414, + 51.1923822 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-08T12:10:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 150, + "modify": 486, + "delete": 21, + "area": 0.00010621402264005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118234219, + "host": "mapcomplete.osm.be", + "move": 425, + "theme": "grb", + "answer": 13, + "import": 18, + "locale": "nl", + "imagery": "osm", + "conflation": 130 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9033266, + 51.1353339 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SanderVD", + "uid": "264932", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T12:00:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-08T15:30:14.453859Z", + "id": 118233805, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6431019, + 50.8379963 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T11:24:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 137, + "modify": 45, + "delete": 0, + "area": 0.0000259473606999894, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118232324, + "host": "mapcomplete.osm.be", + "move": 44, + "theme": "grb", + "import": 17, + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3334156, + 50.86743935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T11:22:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 20, + "modify": 0, + "delete": 0, + "area": 3.46069119991433e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118232233, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33559235, + 50.8650159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T10:57:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.0135785299154498, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2022-03-08T15:29:43.621514Z", + "id": 118231284, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 13, + "locale": "nl", + "imagery": "osm", + "move:node/9562341567": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16490515, + 51.00666715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Janjko", + "uid": "244754", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T10:43:27Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 480, + "delete": 0, + "area": 0.00212682553019993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118230692, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 635, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.00318, + 45.80360245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 41, + "name": "Software editor was not declared" + } + ], + "tags": [], + "features": [], + "user": "dienst cultuur & toerisme", + "uid": "2133790", + "editor": null, + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T09:53:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00125059263538026, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118228793, + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 1, + "add-image": 1, + "import:node/9562203897": "source: https://osm.org/note/3044209" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13827795, + 51.0925163 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "P Kanzler", + "uid": "6173912", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-08T09:51:41Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118228715, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0292689, + 49.5713591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-784538238", + "osm_id": 784538238, + "reasons": [ + 42 + ], + "version": 2, + "primary_tags": {} + } + ], + "user": "reginaldc", + "uid": "510576", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T09:18:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.000324375376499956, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118227572, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 5, + "soft-delete": 1, + "soft-delete:way/784538238": "not on the right place" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.251272, + 50.91918315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-08T09:08:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1715, + "modify": 544, + "delete": 2, + "area": 0.00117299145299996, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118227218, + "host": "mapcomplete.osm.be", + "move": 494, + "theme": "grb", + "import": 215, + "locale": "nl", + "imagery": "osm", + "conflation": 106 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3415979, + 50.8398012 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-08T05:40:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 432, + "modify": 341, + "delete": 0, + "area": 0.000703233228480137, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118221455, + "host": "mapcomplete.osm.be", + "move": 296, + "theme": "grb", + "import": 39, + "locale": "nl", + "imagery": "osm", + "conflation": 90, + "change_over_5000m": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8795936, + 51.138446599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-07T21:57:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.000142774506150018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118214319, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 11, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 7, + "change_within_500m": 1, + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7048168500000003, + 51.04496465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-07T21:26:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 0, + "delete": 0, + "area": 2.50094720001778e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118213398, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.520593, + 51.433745599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-07T19:52:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118210701, + "host": "mapcomplete.osm.be", + "theme": "hackerspaces", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7102741, + 51.0231119 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-07T19:25:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 3.43442999997304e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118209843, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2695423000000003, + 50.8019343 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ON7WPI", + "uid": "12424191", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-07T19:24:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118209824, + "host": "mapcomplete.osm.be", + "theme": "hackerspaces", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7102741, + 51.0231119 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Janjko", + "uid": "244754", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-07T16:43:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 95, + "delete": 0, + "area": 0.000352414790099876, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118204324, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 125, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2, + "change_within_50m": 1, + "change_within_100m": 3, + "change_within_500m": 23, + "change_within_1000m": 57, + "change_within_5000m": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.9898404, + 45.79516185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9560170891", + "osm_id": 9560170891, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Janjko", + "uid": "244754", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-07T10:32:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118191412, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.9404205, + 45.8690835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-07T09:40:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000524177275799939, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118189505, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4674812, + 51.040714050000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-07T09:16:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118188707, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3723686, + 50.869964 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-07T09:13:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 6, + "delete": 0, + "area": 3.9068480000613e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118188610, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 10, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3721321, + 50.869917 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-07T09:12:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118188555, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3724129, + 50.8699778 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-07T09:08:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 600, + "modify": 427, + "delete": 3, + "area": 0.0000239993654999472, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118188430, + "host": "mapcomplete.osm.be", + "move": 363, + "theme": "grb", + "import": 60, + "locale": "nl", + "imagery": "osm", + "conflation": 168, + "change_over_5000m": 17 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86516915, + 51.146701300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Janjko", + "uid": "244754", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-07T08:23:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 115, + "delete": 0, + "area": 0.000661844832750229, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118186892, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 141, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1, + "change_within_100m": 2, + "change_within_500m": 10, + "change_within_1000m": 38, + "change_within_5000m": 64 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.96395465, + 45.80302025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-07T00:54:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118178737, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.9722679, + 40.5793 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "4b3eff", + "uid": "14349548", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-06T17:09:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118167533, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.1189366, + 42.3749189 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koofi_mk", + "uid": "2272879", + "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-03-06T15:36:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118163935, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0635917, + 51.9928944 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.5", + "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-03-06T14:41:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000882723436000667, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118161679, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 7, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3733152000000004, + 51.08143565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-06T10:32:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 106, + "delete": 2, + "area": 0.00000268608942000679, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118153014, + "host": "pietervdvn.github.io", + "move": 95, + "path": "mc/develop/", + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3851037999999996, + 50.91372225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-06T07:56:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 342, + "modify": 309, + "delete": 0, + "area": 0.0000122753131199973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118149109, + "host": "mapcomplete.osm.be", + "move": 264, + "theme": "grb", + "answer": 3, + "import": 16, + "locale": "nl", + "imagery": "osm", + "conflation": 124 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8636158, + 51.1472972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-06T06:24:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 56, + "delete": 0, + "area": 0.00762919222596976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118147708, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 56, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86274895, + 51.11961815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "solenoid jam", + "uid": "10129333", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-05T20:53:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118140353, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 37.6799834, + 55.7926476 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "timshel500", + "uid": "14565618", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #swimmingpools", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-05T20:33:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118139848, + "host": "mapcomplete.osm.be", + "theme": "swimmingpools", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.9680947, + 40.673378 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "timshel500", + "uid": "14565618", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #swimmingpools", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-05T20:31:00Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118139784, + "host": "mapcomplete.osm.be", + "theme": "swimmingpools", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.9349078, + 40.6738154 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-05T19:09:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 128, + "modify": 58, + "delete": 2, + "area": 0.0000149452492799969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118137628, + "host": "pietervdvn.github.io", + "move": 51, + "path": "mc/develop/", + "theme": "grb", + "import": 30, + "locale": "nl", + "imagery": "osm", + "conflation": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3843596, + 50.91409905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Slayne88", + "uid": "14768560", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-05T18:02:03Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118135766, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/9556471822": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8848472, + 30.5800732 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Slayne88", + "uid": "14768560", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-05T18:00:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118135736, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/9556463133": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8850269, + 30.5794058 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T14:58:37Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118129344, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9229988, + 50.3902303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T14:42:31Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.000681341240250118, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118128832, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 19, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8321755500000005, + 51.15159075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T14:20:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 3, + "delete": 0, + "area": 1.02727440002313e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118128068, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_50m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9318354499999995, + 50.393611899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T14:14:43Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118127846, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9321196, + 50.3937542 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T14:12:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118127769, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9321196, + 50.3937542 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9555980278", + "osm_id": 9555980278, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T12:54:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118125332, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1215198, + 50.4102953 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T12:20:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118124234, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1327422, + 50.370227 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T12:16:48Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 5, + "modify": 3, + "delete": 0, + "area": 0.000448206740680026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118124171, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 5, + "change_within_25m": 8, + "move:node/5861552919": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1272946, + 50.3903124 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T10:46:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 481, + "modify": 237, + "delete": 0, + "area": 0.0000383612595100013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118121418, + "host": "mapcomplete.osm.be", + "move": 208, + "theme": "grb", + "import": 52, + "locale": "nl", + "imagery": "osm", + "conflation": 66 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86423065, + 51.14484515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-05T10:27:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1128, + "modify": 12, + "delete": 0, + "area": 0.0177723020448607, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118120897, + "host": "pietervdvn.github.io", + "move": 10, + "path": "mc/develop/", + "theme": "grb", + "import": 148, + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.307387350000001, + 50.864631700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T10:10:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118120118, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "openwindpowermap", + "locale": "en", + "imagery": "SPW_ORTHO_LAST", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9622073, + 50.3011109 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T09:51:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118119606, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9233508, + 50.2905251 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T08:21:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 75, + "modify": 91, + "delete": 0, + "area": 0.00000659993990000122, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118117305, + "host": "mapcomplete.osm.be", + "move": 77, + "theme": "grb", + "answer": 7, + "import": 10, + "locale": "nl", + "imagery": "AGIV", + "conflation": 32 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86089645, + 51.1457458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T08:02:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 138, + "modify": 51, + "delete": 0, + "area": 0.00000370050156000682, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118116865, + "host": "mapcomplete.osm.be", + "move": 44, + "theme": "grb", + "import": 15, + "locale": "nl", + "imagery": "osm", + "conflation": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.861044, + 51.147499100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T07:37:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 113, + "modify": 35, + "delete": 0, + "area": 0.00000352594704000586, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118116407, + "host": "mapcomplete.osm.be", + "move": 28, + "theme": "grb", + "answer": 1, + "import": 13, + "locale": "nl", + "imagery": "osm", + "conflation": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8597558, + 51.14704735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T07:33:16Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 13, + "modify": 5, + "delete": 0, + "area": 6.41646999999435e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118116290, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.859988550000001, + 51.146219599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jessbeutler", + "uid": "3243541", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-05T03:07:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118113124, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.6478932, + 42.9278164 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T00:49:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 123, + "modify": 403, + "delete": 7, + "area": 0.00000746683100999265, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118111685, + "host": "mapcomplete.osm.be", + "move": 356, + "theme": "grb", + "answer": 5, + "import": 16, + "locale": "nl", + "imagery": "AGIV", + "conflation": 110 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98344185, + 51.202917049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-05T00:49:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 32, + "delete": 2, + "area": 3.44339250001342e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118111670, + "host": "mapcomplete.osm.be", + "move": 29, + "theme": "grb", + "answer": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.983734050000001, + 51.203849149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-04T23:36:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.8019061999935e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118110876, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4731836, + 54.856060150000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T21:27:01Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 43, + "modify": 159, + "delete": 0, + "area": 0.00000332001791998639, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118108465, + "host": "mapcomplete.osm.be", + "move": 144, + "theme": "grb", + "answer": 1, + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 40 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9822157, + 51.2042864 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.5", + "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-03-04T19:59:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 47, + "delete": 0, + "area": 0.00184356376602007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118105979, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 48, + "locale": "en", + "imagery": "osm", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92600565, + 51.0222381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-04T18:58:58Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00075497841250006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118104458, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "AGIV", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90819385, + 51.021733100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-04T17:14:12Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.0000195739397599943, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118101553, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 12, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20922935, + 41.5420928 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "way-453704920", + "osm_id": 453704920, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "building": "porch" + } + } + ], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T17:10:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 29, + "modify": 222, + "delete": 7, + "area": 0.00000961566635997691, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118101373, + "host": "mapcomplete.osm.be", + "move": 191, + "theme": "grb", + "answer": 5, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 56 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97908765, + 51.201777899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T16:43:13Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 37, + "modify": 129, + "delete": 2, + "area": 0.0000155335837799731, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118100314, + "host": "mapcomplete.osm.be", + "move": 114, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 30 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98274535, + 51.2023262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Isabel H", + "uid": "10282777", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-04T15:51:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000320622829000051, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-24T07:55:01.067081Z", + "id": 118098261, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 10, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79667465, + 51.00377829999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T15:44:22Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000302399544000756, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118098026, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97891975, + 51.2017763 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T13:55:08Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.000321865258440015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118094557, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 32, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.989106, + 51.203831949999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 41, + "name": "Software editor was not declared" + } + ], + "tags": [], + "features": [], + "user": "kersentaart", + "uid": "9812520", + "editor": null, + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-04T13:13:49Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118092916, + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 1, + "import:node/9554166555": "source: https://osm.org/note/3044266" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6437621, + 51.0493263 + ] + } + }, + { + "type": "Feature", + "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-03-04T12:42:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000105554654869888, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118091882, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.12853715, + 52.42188295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T11:53:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.70694639995571e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118090192, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 3, + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8675501, + 51.13203945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T11:46:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118089917, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0207871, + 51.0805814 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T09:25:34Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118085019, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0207871, + 51.0805814 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T09:24:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118084984, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.021277, + 51.0810354 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T09:11:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118084542, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2346426, + 50.7384954 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T09:02:35Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.63644999998274e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118084249, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02063385, + 51.081244999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-04T05:32:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118078451, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "fr", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8806415, + 42.669099 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T03:03:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 44, + "delete": 0, + "area": 3.76418159999753e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118076487, + "host": "mapcomplete.osm.be", + "move": 40, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9946649, + 51.1652792 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T02:54:02Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 88, + "modify": 300, + "delete": 4, + "area": 0.0000112970158799912, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118076378, + "host": "mapcomplete.osm.be", + "move": 267, + "theme": "grb", + "answer": 3, + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 64 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99566315, + 51.1652027 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T02:42:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 32, + "modify": 276, + "delete": 7, + "area": 0.0000190966381500077, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118076244, + "host": "mapcomplete.osm.be", + "move": 253, + "theme": "grb", + "answer": 2, + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 48 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.992682650000001, + 51.16732655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-04T01:58:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 76, + "modify": 427, + "delete": 9, + "area": 0.000726303816800043, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118075743, + "host": "mapcomplete.osm.be", + "move": 386, + "theme": "grb", + "answer": 2, + "import": 10, + "locale": "nl", + "imagery": "osm", + "conflation": 110 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9990942, + 51.14838805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-03T20:46:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118070354, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "sport_pitches", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9109154, + 50.2807152 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-03T20:28:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118069713, + "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": [ + 5.9145337, + 50.2846932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-03T19:59:29Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 598, + "modify": 19, + "delete": 0, + "area": 0.0000101640110000195, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118068873, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "import": 73, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84326665, + 50.975374099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-03T15:23:56Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00000873441845001246, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118059913, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 17, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6134968499999998, + 37.17807335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-03T14:58:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 25, + "modify": 126, + "delete": 0, + "area": 0.00000440961180000555, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118059165, + "host": "mapcomplete.osm.be", + "move": 111, + "theme": "grb", + "answer": 1, + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "conflation": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97860625, + 51.2018887 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dinn0", + "uid": "14893874", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-03T14:10:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118057594, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4254993, + 49.3100456 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-03T13:53:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 16, + "modify": 34, + "delete": 2, + "area": 1.62122250001428e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118057057, + "host": "mapcomplete.osm.be", + "move": 28, + "theme": "grb", + "answer": 3, + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97213975, + 51.17151925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-144886153", + "name": "Koning Leopold III-laan", + "osm_id": 144886153, + "reasons": [ + 87 + ], + "version": 6, + "primary_tags": { + "highway": "tertiary" + } + } + ], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-03T12:41:10Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 135, + "delete": 0, + "area": 0.0597811340548109, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118054679, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 135, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10100705, + 51.11678515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-03T11:38:26Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118052653, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2346426, + 50.7384954 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Els Q", + "uid": "15213418", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-03T11:01:54Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.0000117715019399882, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-24T07:52:41.965137Z", + "id": 118051527, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65173565, + 50.85923 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-03T09:58:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.000855000742340097, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118049274, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 12, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22522415, + 50.9196216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-03T09:49:40Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118048962, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9153166, + 50.2846207 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dinn0", + "uid": "14893874", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-03T08:05:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000137284732500344, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118045751, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 10, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.11148185, + 49.19607375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alxGS", + "uid": "13367754", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-03T08:00:55Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 50, + "delete": 0, + "area": 0.00466827835252973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118045644, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 79, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.12221585, + 48.12488245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-02T23:07:23Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.01418414537432, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118036767, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1369864, + 50.8651605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-02T20:04:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 38, + "modify": 124, + "delete": 13, + "area": 0.00000982345822998835, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118032364, + "host": "mapcomplete.osm.be", + "move": 116, + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 30 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91450645, + 50.28587345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dinn0", + "uid": "14893874", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-02T19:08:51Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000867301161000706, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118030744, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 11, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.11435535, + 49.19663775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-02T17: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": 118028576, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "playgrounds", + "answer": 2, + "locale": "nl", + "imagery": "SPW_ORTHO_LAST", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9207833, + 50.2868903 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-02T16:57:39Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118026853, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92103, + 50.28615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-02T16:44:33Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118026471, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9152713, + 50.2846641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-02T16:33:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 8, + "modify": 7, + "delete": 0, + "area": 0.0000156045748100339, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118026184, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 15, + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_over_5000m": 8, + "change_within_25m": 21, + "move:node/9550046979": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91693165, + 50.28587745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 531, + "name": "Mapbox: Overlapping features" + } + ], + "tags": [], + "features": [ + { + "url": "way-1036273113", + "osm_id": 1036273113, + "reasons": [ + 531 + ], + "version": 2 + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-02T16:27:07Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 125, + "modify": 193, + "delete": 17, + "area": 0.0000221744451599729, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118025995, + "host": "pietervdvn.github.io", + "move": 178, + "path": "mc/develop/", + "theme": "grb", + "import": 77, + "locale": "nl", + "imagery": "osm", + "conflation": 32 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.231445300000001, + 50.81099415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-02T15:35:21Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.00000231944960000239, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118024290, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9776098, + 51.2035499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-02T14:11:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.716151317232, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118021335, + "host": "127.0.0.1:1234", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80752935, + 50.6676035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-02T12:51:25Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.34642999935934e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118018714, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90311785, + 50.937804549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-02T10:06:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.0000045529246999987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118012467, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 15, + "locale": "nl", + "imagery": "UrbISOrtho", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3723279, + 50.865708749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-02T05:34:53Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 128, + "delete": 0, + "area": 0.00323478817974034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118003572, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 129, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56970615, + 51.1472749 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-02T03:38:30Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118001792, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.36716734999999, + 47.6799218 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-02T03:10:14Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0140705786145602, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 118001446, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9551639000000005, + 51.0026773 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-02T00:39:24Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.02598299996234e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117999381, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3548744500000005, + 50.862126149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-01T20:49:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.703564999961e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117994286, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35540235, + 50.86286735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-01T20:46:42Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117994171, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3549539, + 50.8624438 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-01T20:20:32Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000836689874999971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117993326, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "nl", + "imagery": "UrbISOrtho", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36212115, + 50.8651858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-01T20:10:19Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 4, + "modify": 9, + "delete": 0, + "area": 0.0000769512800100073, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117993019, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 21, + "locale": "nl", + "imagery": "AGIV", + "add-image": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3640687499999995, + 50.866223149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-01T20:08:45Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117992969, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3685793, + 50.8684869 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-01T16:43:52Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117986662, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8804295, + 51.060373 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jan Pirard", + "uid": "13678221", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-01T13:54:57Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00229000742753992, + "is_suspect": true, + "harmful": false, + "checked": true, + "check_date": "2022-03-24T07:51:37.490278Z", + "id": 117981164, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19721585, + 50.7848641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dinn0", + "uid": "14893874", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-01T12:48:44Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117978946, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6101442, + 44.1683316 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 531, + "name": "Mapbox: Overlapping features" + } + ], + "tags": [], + "features": [ + { + "url": "way-1036273114", + "osm_id": 1036273114, + "reasons": [ + 531 + ], + "version": 1 + } + ], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-01T11:06:36Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1202, + "modify": 1340, + "delete": 8, + "area": 0.000123278410240036, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117975552, + "host": "pietervdvn.github.io", + "move": 1184, + "path": "mc/develop/", + "theme": "grb", + "import": 221, + "locale": "nl", + "imagery": "osm", + "conflation": 332 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2327776, + 50.8099914 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-01T10:41:05Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117974627, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "fr", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8806415, + 42.669099 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-01T10:11:50Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 901, + "modify": 1280, + "delete": 20, + "area": 0.000419558006699915, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117973531, + "host": "pietervdvn.github.io", + "move": 1143, + "path": "mc/develop/", + "theme": "grb", + "import": 119, + "locale": "nl", + "imagery": "osm", + "conflation": 296 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2538844000000005, + 50.80518205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-01T09:42:06Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 211, + "modify": 815, + "delete": 20, + "area": 0.0000426360391600502, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117972399, + "host": "pietervdvn.github.io", + "move": 709, + "path": "mc/develop/", + "theme": "grb", + "import": 48, + "locale": "nl", + "imagery": "osm", + "conflation": 218 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2606348, + 50.810620549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jozin-belgium", + "uid": "1947314", + "editor": "MapComplete 0.16.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-03-01T08:20:17Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 1802, + "modify": 1066, + "delete": 3, + "area": 0.0000466022083000098, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117969677, + "host": "pietervdvn.github.io", + "move": 961, + "path": "mc/develop/", + "theme": "grb", + "import": 258, + "locale": "nl", + "imagery": "osm", + "conflation": 248 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2617046, + 50.81067085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.16.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-03-01T06:54:38Z", + "reviewed_features": [], + "tag_changes": {}, + "create": 54, + "modify": 438, + "delete": 6, + "area": 0.0000131484472000013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117967568, + "host": "mapcomplete.osm.be", + "move": 387, + "theme": "grb", + "answer": 3, + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 112 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9790682, + 51.204710899999995 + ] + } + }, + { + "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": { + "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, + "id": 119210331, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3613101499999996, + 50.41441625 + ] + } + }, + { + "type": "Feature", + "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, + "id": 119204588, + "host": "pietervdvn.github.io", + "move": 20, + "theme": "grb", + "import": 132, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4963, + 50.846349149999995 + ] + } + }, + { + "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-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, + "id": 119202793, + "host": "pietervdvn.github.io", + "move": 36, + "theme": "grb", + "import": 110, + "locale": "nl", + "imagery": "osm", + "conflation": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49470215, + 50.8480634 + ] + } + }, + { + "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-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, + "id": 119201367, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 80, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49145615, + 50.84790265 + ] + } + }, + { + "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-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, + "id": 119201258, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 25, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49121925, + 50.849132350000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 119200851, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 136, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4908678, + 50.84766075 + ] + } + }, + { + "type": "Feature", + "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, + "id": 119195383, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 2, + "deletion:node/9628654220": "verkeerd geselecteerd", + "deletion:node/9628655540": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82887225, + 51.134043750000004 + ] + } + }, + { + "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-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, + "id": 119194336, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 91, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4866464, + 50.847848 + ] + } + }, + { + "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-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, + "id": 119193900, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 88, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4821275, + 50.84764925 + ] + } + }, + { + "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-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, + "id": 119193052, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 94, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.481139300000001, + 50.84576355 + ] + } + }, + { + "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-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, + "id": 119192273, + "host": "pietervdvn.github.io", + "theme": "grb", + "import": 80, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48063475, + 50.8441494 + ] + } + }, + { + "type": "Feature", + "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, + "id": 119191159, + "host": "mapcomplete.osm.be", + "theme": "sidewalks", + "answer": 38, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40110585, + 51.0412253 + ] + } + }, + { + "type": "Feature", + "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, + "id": 119191059, + "host": "mapcomplete.osm.be", + "theme": "sidewalks", + "answer": 45, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3945866000000002, + 51.04054405 + ] + } + }, + { + "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 #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, + "id": 119188141, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4185248999999995, + 50.79737415 + ] + } + }, + { + "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 #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, + "id": 119188081, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4076558, + 50.7952296 + ] + } + }, + { + "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 + ] + } + }, + { + "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-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": [], + "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": "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": "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": "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": "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": "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": "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": [ + { + "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": 3, + "modify": 9, + "delete": 0, + "area": 0.000920663745299788, + "is_suspect": true, + "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": "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": "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", + "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": "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, + "id": 120908885, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 2, + "locale": "en", + "imagery": "Mapbox", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.21548605000001, + -39.833171750000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120904993, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4661564, + 51.144889199999994 + ] + } + }, + { + "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-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, + "id": 120903647, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0210572, + 50.9850348 + ] + } + }, + { + "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-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, + "id": 120902380, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3843428, + 50.866721 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120901632, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -57.1506663, + -26.6682613 + ] + } + }, + { + "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 #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, + "id": 120898574, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 4, + "locale": "ca", + "imagery": "PNOA-Spain", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10629540000000001, + 38.82804815 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120896876, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4275114, + 50.8212686 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120896714, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 188, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.66970545, + 45.06383035 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120896533, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "soft-delete": 1, + "soft-delete:way/97752096": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.95353345, + 51.6132111 + ] + } + }, + { + "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 #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, + "id": 120896012, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "locale": "nl", + "imagery": "HDM_HOT", + "change_within_1000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2775745, + 53.2135691 + ] + } + }, + { + "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 #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, + "id": 120895072, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 27, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 27 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2702572, + 53.22977925 + ] + } + }, + { + "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": "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, + "id": 120955711, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7273613, + 51.0427599 + ] + } + }, + { + "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-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, + "id": 120953796, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2329255, + 50.734745700000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120953793, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 102, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.36259415, + 52.5496603 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120949998, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2202923, + 50.748141 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120949018, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7273613, + 51.0427599 + ] + } + }, + { + "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 #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, + "id": 120946554, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2354423, + 50.7343554 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120944469, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 37.4392296, + 55.8524325 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120941137, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "charging_stations", + "answer": 20, + "locale": "en", + "imagery": "CartoDB.Voyager", + "move:node/7184050483": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3397609, + 50.74125675 + ] + } + }, + { + "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-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, + "id": 120937607, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 6, + "move:node/9207458590": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2417084, + 50.74235875 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120937450, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3490074, + 51.3583946 + ] + } + }, + { + "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-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, + "id": 120936490, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 12, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.5901804, + 48.0215783 + ] + } + }, + { + "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-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, + "id": 120935956, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "ca", + "imagery": "cyclosm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0649931, + 38.8175891 + ] + } + }, + { + "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 #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, + "id": 120933362, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "locale": "ca", + "imagery": "HDM_HOT", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1132741, + 38.8340481 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120932739, + "host": "pietervdvn.github.io", + "move": 2028, + "theme": "grb", + "import": 97, + "locale": "nl", + "imagery": "osm", + "conflation": 578 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45313385, + 50.9123236 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120932394, + "host": "pietervdvn.github.io", + "move": 293, + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 84 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4594918, + 50.91857805 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120930463, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 14, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29716145, + 48.8519438 + ] + } + }, + { + "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-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, + "id": 120929304, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.428546, + 50.97943875 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120924883, + "host": "pietervdvn.github.io", + "move": 983, + "theme": "grb", + "import": 37, + "locale": "nl", + "imagery": "osm", + "conflation": 310 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46525535, + 50.92014365 + ] + } + }, + { + "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-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, + "id": 120910073, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.21509745, + -39.8328552 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120995001, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "ca", + "imagery": "PNOA-Spain", + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10366215000000001, + 38.83398 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120994937, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2323441, + -39.8163691 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120993541, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "locale": "nl", + "imagery": "CartoDB.Positron", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3173465, + 50.836684 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120993519, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2235102, + 51.2016792 + ] + } + }, + { + "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-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, + "id": 120986049, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10611745, + 38.8373775 + ] + } + }, + { + "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-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, + "id": 120985573, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.251168, + -39.8318721 + ] + } + }, + { + "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 #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, + "id": 120985441, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1066192, + 38.8368982 + ] + } + }, + { + "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 #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, + "id": 120985421, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0982192, + 38.838321300000004 + ] + } + }, + { + "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 #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, + "id": 120985360, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1122207, + 38.8377625 + ] + } + }, + { + "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-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, + "id": 120985330, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11187685, + 38.8380601 + ] + } + }, + { + "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/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, + "id": 120985124, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7863934, + -34.6513029 + ] + } + }, + { + "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-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, + "id": 120983016, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0344643, + 38.7934335 + ] + } + }, + { + "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 #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, + "id": 120982766, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3255126, + 52.554811650000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120975177, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 10, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -62.5471409, + 34.881100849999996 + ] + } + }, + { + "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-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, + "id": 120974276, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "ca", + "imagery": "PNOA-Spain", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.033415, + 38.7948937 + ] + } + }, + { + "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-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, + "id": 120974122, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0344643, + 38.7934335 + ] + } + }, + { + "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-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, + "id": 120973946, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2368036, + 48.6818495 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120973482, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "charging_stations", + "answer": 18, + "locale": "en", + "imagery": "CartoDB.Voyager", + "move:node/5629724273": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.6947688, + -36.58646175 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121027788, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.4126876, + 39.675823 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121027164, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 4, + "locale": "en", + "imagery": "EsriWorldImageryClarity", + "change_over_5000m": 7, + "move:node/9742149050": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.7208168500000003, + 56.05776255 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121025504, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3267583, + 51.5664038 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121025251, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6765733, + 50.9887729 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121024888, + "host": "pietervdvn.github.io", + "theme": "uk_addresses", + "answer": 6, + "import": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6070376, + 52.28824845 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121024771, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3867069, + 50.8387988 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121024603, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.9321168, + 50.2682484 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121024505, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 15, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_5000m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9924553, + 51.155766549999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121022658, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9565665, + 51.1998854 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121022600, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 15, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.7133237, + -36.8834191 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121021609, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.1357561, + 38.712706 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121021287, + "host": "pietervdvn.github.io", + "move": 46, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "osm", + "conflation": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4567452, + 50.92556795 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121020638, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2190154, + 48.68412645 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121019778, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4968231, + 50.9868935 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121017840, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9510927, + 51.1886189 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121017678, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4384504500000004, + 51.09171195 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121014433, + "host": "pietervdvn.github.io", + "move": 654, + "theme": "grb", + "import": 20, + "locale": "nl", + "imagery": "osm", + "conflation": 180 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4556251499999995, + 50.92499225 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121013943, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.9649317, + 52.3973826 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121012581, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87467515, + 45.74718955 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121011880, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 8, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.787747850000001, + 46.81592825 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121011671, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 34, + "locale": "fr", + "imagery": "fr.ign.bdortho" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0683068, + 46.747389150000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121007973, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1811945, + 48.6889258 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121006684, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.139356, + 50.84089 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121005770, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 17, + "change_within_25m": 17 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87902755, + 51.06082855 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121005536, + "host": "pietervdvn.github.io", + "move": 8, + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45364645, + 50.9121732 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121001868, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 75.7769537, + 31.2197083 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121001712, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6576817, + 42.3412856 + ] + } + }, + { + "type": "Feature", + "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, + "id": 120998384, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7866509, + -34.65123775 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121071618, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49573855, + 51.0880446 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121070082, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 23, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.786809599999998, + 48.423404399999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121068322, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9182296, + 53.5643321 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121067964, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 6, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2916450499999996, + 50.9498031 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121067682, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2917577, + 50.9499323 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121067564, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 15, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.2442442, + 49.78584955 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121067115, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2917577, + 50.9499323 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121066871, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.70416139999998, + -36.87302365 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121066209, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 7, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_1000m": 2, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.78882255000002, + -36.9076607 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121064277, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6142661, + 51.1034952 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121058672, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8444269, + 45.7519499 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121056111, + "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": [ + 4.4252157, + 51.2035611 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121052836, + "host": "pietervdvn.github.io", + "move": 1554, + "theme": "grb", + "import": 79, + "locale": "nl", + "imagery": "osm", + "conflation": 458 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47013805, + 50.92659635 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121051673, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 71, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.9636943, + 45.80016665 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121050789, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 48, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.85481015, + 49.845188300000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121048707, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.5046408500000004, + 42.447854899999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121048036, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.797529850000004, + -32.90942765 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121047493, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4000355, + 50.8497344 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121045103, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.9746415, + 45.802800649999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121042704, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7329603, + 51.3017253 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121042222, + "host": "pietervdvn.github.io", + "move": 2180, + "theme": "grb", + "answer": 1, + "import": 91, + "locale": "nl", + "imagery": "osm", + "conflation": 630 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46744825, + 50.926493449999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121042098, + "host": "pietervdvn.github.io", + "move": 141, + "theme": "grb", + "import": 9, + "locale": "nl", + "imagery": "osm", + "conflation": 36 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.459602, + 50.92471725 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121041011, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67695045, + 51.2888667 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121039870, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0688742, + 48.1870996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121039374, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 14, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.14401065, + 48.13470085 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121038943, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 2, + "deletion:node/9742900587": "not found", + "deletion:node/9742948060": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68906325, + 51.29786355 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121035313, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 8, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.285130800000001, + 48.7867367 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121035206, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 1, + "change_within_25m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7715672, + 50.9107884 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121034216, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.05899685, + 48.83475975 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121034011, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.0941713, + 48.83770185 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121032795, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 22, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 2, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.96224035, + 40.58042825 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121032581, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.97259855, + 40.58104415 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121032203, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 11, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 6, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.94256709999999, + 40.602165400000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121031471, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 41, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 9, + "change_within_5000m": 32 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.97942755, + 40.57754765 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121028937, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.885899, + -36.932216350000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121118922, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.269964250000001, + 53.433861050000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121118640, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53033945, + 44.8563392 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121118554, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "trees", + "answer": 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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.215509, + -39.83243825 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121118487, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3069063, + 43.6187531 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121115858, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/b25da7c21c50e4852eb8230110a028c563d53847/walkingnetworks.json", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3582175, + 44.87587675 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121115735, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/cb8f5e51c869c9dd54221b56e7c771659c69c4a4/walkingnetworks.json", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3650338, + 44.8803151 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121111163, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.531071, + 44.857765 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121110964, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.497941950000001, + 51.5965488 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121109328, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 10, + "locale": "de", + "imagery": "osm", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8733831, + 48.7496917 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121102388, + "host": "mapcomplete.osm.be", + "move": 64, + "theme": "grb", + "import": 888, + "locale": "nl", + "imagery": "osm", + "conflation": 22, + "change_over_5000m": 718 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6341784500000003, + 50.96030745 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121102245, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30708625, + 43.6187436 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121101359, + "host": "pietervdvn.github.io", + "move": 6, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4711423, + 50.926287099999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121101264, + "host": "mapcomplete.osm.be", + "move": 108, + "theme": "grb", + "answer": 1, + "import": 219, + "locale": "nl", + "imagery": "osm", + "conflation": 42, + "change_over_5000m": 220 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6336695, + 50.95552995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121100440, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.658596, + -34.6553642 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121099791, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2, + "move:node/2652967003": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36444075, + 50.9611658 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121097843, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 4, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.97817805, + 48.73133405 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121097619, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste_basket", + "answer": 1, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "move:node/9748960310": "improve_accuracy", + "deletion:node/9748960310": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3069613000000002, + 43.618764799999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121095534, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2099704, + 51.1880573 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121094577, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.301669400000002, + 43.291793799999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121094491, + "host": "mapcomplete.osm.be", + "split": 2, + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.3098956, + 43.28951265 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121094316, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "locale": "ru", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 83.10845075, + 54.8567657 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121094288, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8656479, + 43.3192417 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121094247, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 9, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.3079917, + 43.2873775 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121094108, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.306590700000001, + 43.28827545 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121093446, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 10, + "locale": "en", + "imagery": "PNOA-Spain-TMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.30383945, + 43.2956509 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121093212, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.3119922, + 43.338629999999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121092518, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 9, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.415070700000001, + 43.29059725 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121092413, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "answer": 2, + "locale": "en", + "imagery": "PNOA-Spain-TMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.8949374, + 43.7163683 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121091526, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 56, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.30602245, + 43.289097549999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121091190, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 2, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/9748616614": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.28584285, + 43.294156799999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121090759, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.393875, + 43.371277 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121090489, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.4054228, + 43.3762172 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121089968, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 8, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.3037384, + 43.29253945 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121089902, + "host": "pietervdvn.github.io", + "move": 523, + "theme": "grb", + "import": 18, + "locale": "nl", + "imagery": "osm", + "conflation": 164 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4680029, + 50.9282168 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121089767, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.482241, + 51.16202245 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121089730, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.3072921, + 43.28785635 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121089635, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.30576565, + 43.2878242 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121089147, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 18, + "locale": "es", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.31748765, + 43.2985427 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121088328, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.31384505, + 43.28699405 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121088140, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 10, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.3057629, + 43.28686985 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121087485, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9748423599": "source: https://osm.org/note/3090311" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2272325, + 50.9616092 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121086096, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 17, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3298157, + 50.8558233 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121085448, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 13, + "locale": "en", + "imagery": "nrw_ortho_wms" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7949233, + 51.390878 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121083080, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.076421400000001, + 48.830686799999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121082056, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1, + "change_over_5000m": 2, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51419175, + 53.1977842 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121080104, + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7456988, + 48.4011164 + ] + } + }, + { + "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-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, + "id": 121079478, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.418045, + 52.0983377 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121079411, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9748077287": "source: https://osm.org/note/3161437" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.329815, + 50.9906025 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121075113, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 14, + "locale": "en", + "imagery": "osm", + "change_within_500m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71265915, + 45.17630975 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121074597, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.37559005, + 47.6849813 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121168007, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 438, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62190685, + 45.063253 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121164998, + "host": "mapcomplete.osm.be", + "move": 84, + "theme": "grb", + "answer": 1, + "import": 660, + "locale": "nl", + "imagery": "osm", + "conflation": 24, + "change_over_5000m": 659 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64190105, + 50.9601743 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121164320, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 20, + "change_within_25m": 21 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23154235000001, + -39.8466064 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121162818, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 21, + "change_within_25m": 20, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2320957, + -39.8449302 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121162070, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2, + "change_over_5000m": 2, + "change_within_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2487759, + 53.20008095 + ] + } + }, + { + "type": "Feature", + "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": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121161539, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2499747, + 53.2010715 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121159657, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "AGIV", + "deletion": 1, + "add-image": 2, + "deletion:node/7835232730": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70380875, + 50.88055 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121158699, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0612579, + 53.9353522 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121158296, + "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.5324616, + 44.8568503 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121156660, + "host": "pietervdvn.github.io", + "move": 1217, + "theme": "grb", + "import": 161, + "locale": "nl", + "imagery": "osm", + "conflation": 268 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4270233999999995, + 50.90250475 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121156578, + "host": "pietervdvn.github.io", + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1231735, + 51.2176747 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121156344, + "host": "pietervdvn.github.io", + "move": 369, + "theme": "grb", + "import": 19, + "locale": "nl", + "imagery": "osm", + "conflation": 80 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44747365, + 50.9101161 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121155024, + "host": "pietervdvn.github.io", + "move": 595, + "theme": "grb", + "import": 61, + "locale": "nl", + "imagery": "osm", + "conflation": 170 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4791934, + 50.921263350000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121154484, + "host": "pietervdvn.github.io", + "move": 303, + "theme": "grb", + "import": 32, + "locale": "nl", + "imagery": "osm", + "conflation": 84 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4700783, + 50.92768705 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121153857, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.7932773, + -32.93087755 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121153758, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8107149, + -32.9167368 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121153503, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 13, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.808468700000006, + -32.91222575 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121153048, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.7321845, + -32.9754186 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121152875, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8035978, + -32.9178184 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121152419, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8026939, + -32.9244359 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121152399, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "locale": "es", + "imagery": "EsriWorldImageryClarity", + "add-image": 2, + "change_over_5000m": 3, + "change_within_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2162689, + -39.832222900000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121151414, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1230112, + 51.1711015 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121149322, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2256578, + 48.683025 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121147174, + "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": [ + 4.1142525, + 51.1654236 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121146764, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2340334, + 50.7355016 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121145969, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1434507, + 51.17146075 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121145841, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1436367, + 51.1714072 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121144520, + "host": "pietervdvn.github.io", + "move": 2207, + "theme": "grb", + "import": 54, + "locale": "nl", + "imagery": "osm", + "conflation": 692 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.466303, + 50.9287506 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121143420, + "host": "pietervdvn.github.io", + "move": 388, + "theme": "grb", + "import": 16, + "locale": "nl", + "imagery": "osm", + "conflation": 114 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46672315, + 50.929309 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121143333, + "host": "pietervdvn.github.io", + "move": 70, + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "osm", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4680631, + 50.9299699 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121139553, + "host": "pietervdvn.github.io", + "move": 410, + "theme": "grb", + "import": 18, + "locale": "nl", + "imagery": "osm", + "conflation": 134 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46900345, + 50.9281752 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121134623, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.98066375, + 43.4139032 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121132724, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/95be0f8e9a17cd3c3ad0326a94c81e6452f0fe16/walkingnetworks.json", + "answer": 40, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37937015, + 44.881732150000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121132312, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/b25da7c21c50e4852eb8230110a028c563d53847/walkingnetworks.json", + "answer": 45, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37267165, + 44.8809937 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121128602, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "charging_stations", + "answer": 14, + "locale": "de", + "imagery": "CartoDB.Voyager", + "move:node/9750887298": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.495489899999999, + 49.7731112 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121127575, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3648376, + 50.9612889 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121123128, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3415837, + 50.80844505 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121121367, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "es", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.10977205, + 19.4613425 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121208078, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4267662, + 50.8822279 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121198279, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7216874, + 51.0423994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121197910, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6892122, + 51.0235038 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121197782, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6892122, + 51.0235038 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121195824, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4797189, + 51.0334762 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121192060, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1949374, + 45.7378386 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121191415, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "answer": 9, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71694225, + 47.3101949 + ] + } + }, + { + "type": "Feature", + "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": 1, + "modify": 0, + "delete": 0, + "area": 1.19737800000667e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121189940, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3, + "import:node/9754296735": "source: https://osm.org/note/3090238" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05980195, + 50.8496255 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121187877, + "host": "pietervdvn.github.io", + "move": 558, + "theme": "grb", + "import": 39, + "locale": "nl", + "imagery": "osm", + "conflation": 126 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4194002999999995, + 50.906388 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121186797, + "host": "pietervdvn.github.io", + "move": 450, + "theme": "grb", + "import": 52, + "locale": "nl", + "imagery": "osm", + "conflation": 112 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42097085, + 50.905117700000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121186673, + "host": "pietervdvn.github.io", + "move": 10, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42306595, + 50.90572305 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121186174, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 37, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 1, + "change_within_500m": 1, + "change_within_1000m": 18, + "change_within_5000m": 17 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5662690999999995, + 53.0793891 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121186169, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 11, + "locale": "ca", + "imagery": "osm", + "add-image": 4, + "change_over_5000m": 5, + "change_within_25m": 13, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10625695, + 38.8408718 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121184168, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 15, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11377665, + 50.8373941 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121183621, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74731055, + 51.16418695 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121182527, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "move:node/9753918057": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5874961, + 51.0031459 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121179953, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.435622, + 50.891231 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121177115, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 25, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 26, + "move:node/4777757193": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5713454, + 52.99683505 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121171436, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 2, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2319063, + -39.8456654 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121168411, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "es", + "imagery": "EsriWorldImagery" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6506892, + -33.45158085 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121260521, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 23.9863531, + 49.8128104 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121259376, + "host": "pietervdvn.github.io", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7298474, + 51.060719 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121259173, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "AGIV", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73193715, + 51.064917050000005 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 3, + "delete": 0, + "area": 1.60578600007831e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121258681, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55023305, + 44.8523153 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121258058, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 10, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_over_5000m": 1, + "change_within_1000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75926845, + 50.80301905 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121257936, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1868052, + 48.69337115 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121257577, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_over_5000m": 1, + "change_within_1000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7646634, + 50.8042931 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121257432, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4002316, + 52.3245661 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121255719, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2381583, + 50.73886065 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121254968, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 21, + "locale": "nl", + "imagery": "AGIV", + "add-image": 6, + "change_over_5000m": 10, + "change_within_25m": 25, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75699515, + 50.803179650000004 + ] + } + }, + { + "type": "Feature", + "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", + "id": 121254696, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 10, + "move:node/9757887106": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10069935, + 50.9525184 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121254571, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 22, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 24, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7645358499999997, + 50.8043075 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121254521, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7317896, + 51.06486735 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121252868, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 11, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 12, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76186925, + 50.8032095 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121252818, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7797207, + 50.8072471 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121246319, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "import": 217, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63772685, + 50.9619141 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121244392, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9757347638": "source: https://osm.org/note/3084030" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6264444, + 50.9977497 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121244070, + "host": "pietervdvn.github.io", + "move": 805, + "theme": "grb", + "import": 64, + "locale": "nl", + "imagery": "osm", + "conflation": 176 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.422212549999999, + 50.90766265 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121237686, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "import:node/9757085168": "source: https://osm.org/note/3090202" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1056203, + 50.8328362 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121237011, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 54, + "locale": "it", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.260262950000001, + 40.898389550000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121233337, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3355776, + 50.8363144 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121232316, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 12, + "locale": "de", + "imagery": "osm", + "add-image": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.4417457, + 49.501983300000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121230895, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9756757456": "source: https://osm.org/note/3161473" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2086378, + 50.90608685 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 7, + "delete": 0, + "area": 0.00000625171792002659, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121230531, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 8, + "import": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 4, + "move:node/9756745045": "improve_accuracy", + "import:node/9756907408": "source: https://osm.org/note/3090320" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1035466, + 50.832876999999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121218865, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5903353, + -34.6443169 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121218560, + "host": "mapcomplete.osm.be", + "theme": "swimming_pools", + "answer": 1, + "locale": "en", + "imagery": "USDA-NAIP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.9394415, + 40.70207550000001 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121298909, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9538278, + 49.8499921 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121298903, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2904666999999996, + 51.1167911 + ] + } + }, + { + "type": "Feature", + "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": 5, + "modify": 5, + "delete": 0, + "area": 3.27947000001821e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121296442, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 14, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 2, + "change_within_25m": 7, + "change_within_50m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67678405, + 50.9411522 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121296412, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 14, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.86946105, + 49.83310795 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121295849, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4310101, + 50.8355912 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121295179, + "host": "pietervdvn.github.io", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8949188, + 50.2249054 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121294852, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4714081, + 50.858324749999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121294678, + "host": "pietervdvn.github.io", + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8926497, + 50.2332771 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121294109, + "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": [ + 4.9033517, + 50.2384788 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121292719, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1581552, + 50.6274703 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121291459, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.862110749999999, + 50.46857425 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121291404, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3826417, + 50.8329608 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121289028, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1982605, + 51.1938999 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121286564, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "SPW_ORTHO_LAST", + "deletion": 1, + "change_over_5000m": 2, + "change_within_5000m": 3, + "deletion:node/5042649937": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15442205, + 49.992193400000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121286180, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 4, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_50m": 5, + "move:node/9759648952": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.855287149999995, + 56.25420565 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121284729, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.2075676, + 47.27122 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121281914, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88000885, + 50.77163205 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121281871, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8831099, + 50.7717961 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121281416, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 62, + "locale": "de", + "imagery": "Mapbox" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.8693514, + 49.833061 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121275206, + "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.4464556, + 51.0808207 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121273438, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 17, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 17 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35301315, + 50.1926982 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121271315, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3639437, + 50.18821075 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121271259, + "host": "pietervdvn.github.io", + "move": 81, + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4186335, + 50.90928515 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121270915, + "host": "pietervdvn.github.io", + "move": 438, + "theme": "grb", + "import": 33, + "locale": "nl", + "imagery": "osm", + "conflation": 88 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42320005, + 50.908288049999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121270634, + "host": "pietervdvn.github.io", + "move": 337, + "theme": "grb", + "import": 27, + "locale": "nl", + "imagery": "osm", + "conflation": 70 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42121695, + 50.90863365 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121268941, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7631077, + 50.8042553 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121268750, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 6, + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7556921, + 50.80388215 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121268623, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 110, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39684395, + 50.790325550000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121267812, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9935839, + 51.1553967 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121267574, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9934681, + 51.1547796 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121264626, + "host": "mapcomplete.osm.be", + "theme": "fitness_station", + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7328192, + 51.07210415 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121339529, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.6196963, + -38.7405529 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121337368, + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "it", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6565749, + 45.2285865 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121336893, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 5, + "locale": "en", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7227959, + -33.59269535 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121333914, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 12, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2926626499999996, + 51.113112599999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121330118, + "host": "mapcomplete.osm.be", + "theme": "schools", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -97.1191789, + 33.2184522 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121329433, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29352125, + 51.110736599999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121328566, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7082415, + 51.0339384 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121327494, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3029915499999998, + 51.109736600000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121323947, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6087851, + 50.8417731 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121317921, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.3304968, + 48.1897023 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121317585, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6900422, + 50.904145 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 1, + "delete": 0, + "area": 1.89122200001584e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121317140, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6899591000000003, + 50.9040974 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121313270, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6089696, + 50.841846 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121313064, + "host": "pietervdvn.github.io", + "theme": "climbing", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8923358, + 50.2196764 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121312696, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 5, + "change_within_25m": 6, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.603583, + 50.84060875 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121312559, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 9, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 2, + "change_within_25m": 2, + "change_within_100m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6049082500000003, + 50.838832749999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121312094, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38217, + 50.8566977 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121311050, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 9, + "move:node/9727746215": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8987501, + 50.229272800000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121310706, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1084569, + 38.83635 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121310527, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0291029, + 43.8067524 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121307630, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2912773, + 51.1156159 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121307467, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 3, + "change_within_1000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81918095, + 50.7880412 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121307375, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.8692926, + 49.8150087 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121306907, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "AGIV", + "add-image": 5, + "change_over_5000m": 8, + "change_within_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8401995500000004, + 50.79811345 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121392001, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/5713813873": "shop_closed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.235587499999999, + 50.7354922 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121385909, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.413755849999999, + 50.8451502 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121384724, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6072915500000002, + 37.1721593 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121383029, + "host": "pietervdvn.github.io", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72179845, + 51.026884550000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121371568, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.48019495, + -34.5087254 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121369283, + "host": "mapcomplete.osm.be", + "move": 130, + "theme": "grb", + "answer": 2, + "import": 182, + "locale": "en", + "imagery": "AGIV", + "conflation": 48 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1446783, + 50.89480195 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121365723, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6014409, + 51.1471348 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121359961, + "host": "mapcomplete.osm.be", + "move": 84, + "theme": "grb", + "import": 140, + "locale": "nl", + "imagery": "AGIV", + "conflation": 16, + "change_over_5000m": 66 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.402983450000001, + 50.789644100000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121354132, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2840965, + 51.110878150000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121352814, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "import": 75, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.398899200000001, + 50.793129050000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121352705, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 21, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 21 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2964754000000003, + 51.1108497 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121352599, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 17, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3997271, + 50.79276405 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121352312, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 9, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0042018, + 51.1250421 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121347641, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.64836105, + 52.01502535 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121446476, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 19.936324, + 60.0991293 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121431456, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 320, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 320 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75279335, + 53.154832049999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121429294, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 10, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_over_5000m": 4, + "change_within_500m": 1, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95644025, + 50.791543649999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121428525, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3602318, + 50.8125745 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121427908, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11483005, + 50.79737685 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121420964, + "host": "pietervdvn.github.io", + "move": 634, + "theme": "grb", + "import": 78, + "locale": "nl", + "imagery": "osm", + "conflation": 154 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41666075, + 50.908311499999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121420899, + "host": "pietervdvn.github.io", + "move": 13, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41816385, + 50.90724745 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121420579, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "imagery": "CartoDB.Voyager", + "move:node/9688724314": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4314407, + 50.914687400000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121420125, + "host": "pietervdvn.github.io", + "move": 349, + "theme": "grb", + "import": 24, + "locale": "nl", + "imagery": "osm", + "conflation": 80 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.417728, + 50.90837835 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121418878, + "host": "pietervdvn.github.io", + "move": 470, + "theme": "grb", + "import": 66, + "locale": "nl", + "imagery": "osm", + "conflation": 96 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4201267, + 50.9095224 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121418036, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8630315, + 51.18011885 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121417526, + "host": "mapcomplete.osm.be", + "move": 22, + "theme": "grb", + "import": 12, + "locale": "en", + "imagery": "osm", + "conflation": 4, + "change_over_5000m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.903870449999999, + 50.23784005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121415391, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 13, + "locale": "en", + "imagery": "SPW_ORTHO_LAST", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68631335, + 50.5679164 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121409434, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 38, + "locale": "en", + "imagery": "SPW_ORTHO_LAST", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6931134, + 50.56501625 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121395081, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.21220220000001, + 37.8117886 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121491888, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -46.689729, + -23.532753399999997 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121491116, + "host": "mapcomplete.osm.be", + "theme": "pets", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2326157, + -25.4592628 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121491040, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2312813, + -25.4613879 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121490689, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.2313453, + -25.46120235 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121485997, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3906636, + 51.0715768 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121485747, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 4, + "locale": "en", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3906408, + 51.0715958 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121479693, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7530381, + 50.8628307 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121478703, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71068195, + 51.03352925 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121472054, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1957978, + 48.6772682 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121459068, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9773688, + 51.1091876 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121546262, + "host": "mapcomplete.osm.be", + "move": 161, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 38 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1042156, + 51.11214805 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121542290, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19193805, + 50.84052845 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121539596, + "host": "mapcomplete.osm.be", + "theme": "hackerspaces", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3984885, + 52.5316204 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121538549, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 131, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.56570525000001, + 11.32442045 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121536762, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10833, + 38.8374023 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121536619, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38035795, + 43.6560518 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121536484, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 3, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3802368999999999, + 43.6560792 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121536427, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 1, + "change_within_100m": 4, + "move:node/4374375909": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38065415, + 43.655735899999996 + ] + } + }, + { + "type": "Feature", + "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": 1, + "modify": 11, + "delete": 0, + "area": 0.00154485135251994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121534586, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 19, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.075443, + 51.121387350000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121532256, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.975936, + 49.8462657 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121531215, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 3, + "change_within_50m": 2, + "move:node/9772878554": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3796526999999998, + 43.65560185 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121530935, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 3, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3797605000000002, + 43.6555618 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121530792, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_50m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3812920499999999, + 43.655842199999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121530415, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3802004, + 43.6553677 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121529765, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 9, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3467125, + 52.5232537 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 3, + "delete": 0, + "area": 0.00000639602432000115, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121528477, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3553495, + 48.880919 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121526458, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9879452, + 51.3611379 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121526004, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97660415, + 51.3590472 + ] + } + }, + { + "type": "Feature", + "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": 5, + "modify": 1, + "delete": 0, + "area": 3.28125820002976e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121521094, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3927136, + 43.66369645 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121518153, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 11, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 9, + "change_within_25m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38964575, + 43.66432675 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121516891, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3911314, + 43.6654485 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121516757, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3911317, + 43.6656054 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121516177, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "locale": "en", + "imagery": "osm", + "deletion": 1, + "change_within_25m": 1, + "deletion:node/5559482055": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3929205, + 43.6636889 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121516104, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 8, + "locale": "de", + "imagery": "osm", + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99490695, + 48.502208100000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121515698, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3912236, + 43.66551545 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121508615, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "SPW_ORTHO_LAST", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8940134, + 49.8826473 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121504630, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "fr.ign.bdortho", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8497061, + 49.8960247 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121595516, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4914245, + 43.59026 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121595067, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4357768, + 43.622797500000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121594460, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.241668, + -39.8295339 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121594410, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "HDM_HOT", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2420511, + -39.8294596 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121585213, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7896861, + 50.87463 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121582081, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7912353, + 49.8497599 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121576635, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15249215, + 48.678912749999995 + ] + } + }, + { + "type": "Feature", + "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": 1, + "modify": 9, + "delete": 0, + "area": 0.000544120986080083, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121576404, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 13, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9775033593": "source: https://osm.org/note/3161461" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4610378, + 51.398554950000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121571643, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 19, + "locale": "nl", + "imagery": "SPW_ORTHO_LAST", + "change_over_5000m": 9, + "change_within_25m": 18, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2298537, + 50.60043555 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121569052, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 4, + "change_within_25m": 7, + "change_within_50m": 2, + "deletion:node/4512748291": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2263233, + 50.65783945 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121568785, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0026899, + 51.1264179 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121566441, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 73, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.45256465, + 11.519066200000001 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121565136, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 27, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3014186, + 52.49634225 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121564744, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1822187, + 50.840215 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121564020, + "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.19353685, + 50.83981535 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121563754, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19197825, + 50.840539750000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121563722, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 11, + "locale": "nl", + "imagery": "Berlin-2020-TrueDOP", + "change_over_5000m": 4, + "change_within_25m": 6, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3078872, + 52.45392315 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121563538, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_within_50m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23701335, + 49.77699045 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121563172, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "waste", + "answer": 9, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 12, + "move:node/9774517148": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3073361, + 52.4539119 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121563026, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 24, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 21, + "change_within_500m": 4, + "move:node/9774555889": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.30641445, + 52.453907799999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121553183, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 78, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.12146635, + 11.27735505 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121635305, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "waste", + "locale": "en", + "imagery": "osm", + "move:node/7543489085": "improve_accuracy", + "move:node/7547431985": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.05048575, + 14.703388050000001 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121634200, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.0765944, + 51.9028681 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121631519, + "host": "mapcomplete.osm.be", + "theme": "maps", + "locale": "ca", + "imagery": "PNOA-Spain", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0967807, + 38.8264996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121631032, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3468577, + 49.6363809 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121630944, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3950094, + 50.8672881 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121629949, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste", + "locale": "en", + "imagery": "osm", + "move:node/7547431985": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.04951645, + 14.705745700000001 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121621932, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 10, + "change_within_25m": 1, + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7220914, + 50.7579291 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121620119, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2406021, + 43.5973782 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121619396, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2355515, + 43.5984912 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121619343, + "host": "pietervdvn.github.io", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8286229, + 50.7402858 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121619321, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2355515, + 43.5984912 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121619305, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 7, + "move:node/9776842243": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.694644, + 50.825789549999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121619298, + "host": "pietervdvn.github.io", + "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 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82862875, + 50.740309350000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121617131, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.359126849999999, + 51.6783689 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121615815, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 12, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68406525, + 50.8359433 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121613158, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6857033, + 50.82378435 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121612756, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.341431, + 49.7722838 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121610567, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 5, + "move:node/9776596769": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6792723, + 50.8468435 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121610108, + "host": "pietervdvn.github.io", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8537642, + 50.908502 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121610053, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8556137, + 50.90621015 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121609020, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8388174, + 43.3189397 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121608882, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.3947265, + 48.9928873 + ] + } + }, + { + "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-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, + "id": 121608864, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.9840601, + 51.7697653 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121608618, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.3962462, + 48.9932977 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121608313, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3414291999999999, + 43.6160539 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121608170, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.341357, + 43.61615205 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121608127, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3410653, + 43.6161113 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121607986, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.3958154, + 48.99341545 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121607531, + "host": "mapcomplete.osm.be", + "theme": "hackerspaces", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.5227912, + 47.50864805 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121607290, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7559053, + 50.9459465 + ] + } + }, + { + "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-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, + "id": 121607064, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4334027, + 52.107181 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121680655, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.9104819, + 48.2783052 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121680369, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "de", + "imagery": "osm", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8892294, + 48.3085175 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121680292, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.9137689, + 48.278054 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121680166, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7840615, + 48.9169958 + ] + } + }, + { + "type": "Feature", + "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": 12, + "modify": 9, + "delete": 0, + "area": 0.000276897800970055, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121679920, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.90118095, + 48.28283415 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121679771, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 4, + "locale": "de", + "imagery": "Mapbox" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.9096797, + 48.280034099999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121677447, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4742392, + 51.3950791 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121677201, + "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.4688743, + 51.3941811 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121667744, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "es", + "imagery": "Mapbox", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2529796, + -39.794826549999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121660626, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 6, + "locale": "en", + "imagery": "AGIV", + "deletion": 1, + "deletion:node/5807358349": "shop_closed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7150188, + 51.0305745 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121659160, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5587436, + 52.996223 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121658639, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 13, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7121272999999997, + 51.032765999999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121658394, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70582745, + 50.164630450000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121658110, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.142755, + 50.6919925 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121657979, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 15, + "locale": "nl", + "imagery": "osm", + "move:node/9779253472": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7070422, + 51.029571950000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121656427, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4353967, + 50.7394197 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121656414, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.235992, + 50.7351196 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121653230, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5007266, + 50.702187949999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121651143, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9333741, + 51.3263126 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121650362, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.920232, + 51.32319965 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121649798, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "locale": "nl", + "imagery": "HDM_HOT", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3564265, + 52.5209182 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121649762, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9778990747": "source: https://osm.org/note/3143441" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3936039, + 51.344577 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121648974, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0294986, + 50.0539115 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121648266, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6133834, + 50.6350135 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121647882, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3444539, + 43.5660541 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121647662, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3457065, + 43.5657164 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121646954, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0310504, + 50.0536863 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121646892, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.029868, + 50.053556 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121646658, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3428989, + 43.5679562 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121646086, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.0765944, + 51.9028681 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121645920, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.35611055, + 52.516310950000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121645550, + "host": "mapcomplete.osm.be", + "theme": "maps", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3518577, + 52.5155056 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121645285, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 18, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 9, + "change_within_25m": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3547024, + 52.5158655 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121645212, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "benches", + "answer": 8, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.35204705, + 52.51524145 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121645156, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7143255, + 46.8025602 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121644610, + "host": "mapcomplete.osm.be", + "theme": "lgbtmap", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 120.9907472, + 14.6414205 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121642445, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1589130999999995, + 47.04772855 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121636023, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02331255, + 51.444334049999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121740761, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10833, + 38.8374023 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121740733, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.269453, + 53.2213882 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121740394, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2626188, + 53.2341393 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121740372, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.277287, + 53.2137197 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121740344, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2610765, + 53.2345798 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121739992, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 28, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2692636, + 53.2254321 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121738583, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "Mapbox", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2511205, + -39.7961613 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121737729, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6688421, + 51.0347628 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121736044, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.269453, + 53.2213882 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121732398, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2573881, + 53.2286856 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121732087, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.264015, + 53.2121552 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121728923, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 185, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55634135, + 51.24846545 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121722150, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 55, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49195145, + 51.207456199999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121721508, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "answer": 43, + "locale": "en", + "imagery": "osm", + "change_within_25m": 28, + "change_within_50m": 2, + "change_within_100m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.490637199999995, + -34.50510365 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121719232, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.233405, + 60.287199 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121714365, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5640706, + 46.0452467 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121714130, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.54405585, + 46.0521628 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121711834, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "charging_stations", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "move:node/5094130791": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.54421745, + 46.05596495 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121711267, + "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": [ + 11.9094077, + 48.281617 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121708268, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 42, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.905172499999999, + 48.29646595 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121707614, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.9091943, + 48.284263550000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121707585, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.909126, + 48.2843191 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121699079, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.052361, + 50.9264326 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121691387, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 4, + "locale": "en", + "imagery": "Mapbox" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -89.36606760000001, + 43.09063175 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121685539, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2510992, + -39.7961176 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121786773, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0750231, + 38.8077766 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121786221, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.5560927, + -33.03789175 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121781233, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.22889004999999, + -39.83375755 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121776368, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "en", + "imagery": "SPW_ORTHO_LAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7025535, + 50.5612412 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121772762, + "host": "mapcomplete.osm.be", + "theme": "maps", + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2878655000000006, + 53.21662035 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121771802, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 17, + "locale": "en", + "imagery": "SPW_ORTHO_LAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6754019499999995, + 50.5501315 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121770718, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5653206, + 53.2109057 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121768954, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 14, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 5, + "change_over_5000m": 3, + "change_within_500m": 16, + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6810329, + 50.56093835 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121768770, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.696704, + 50.562178 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121768063, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.41211705, + -34.608595199999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121767695, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4471123, + -34.6206531 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121765066, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 16, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6964903499999995, + 50.560163700000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121764271, + "host": "mapcomplete.osm.be", + "theme": "maps", + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2655383, + 53.2053579 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121764147, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2635859, + 53.2048097 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121764113, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 2, + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2634845, + 53.204879899999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121760604, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2363372, + 50.7396603 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121757751, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69625295, + 50.5636671 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121756893, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69579615, + 50.565556 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 3, + "delete": 0, + "area": 7.27542580002704e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121756868, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48875745, + 44.9030753 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121756160, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 69, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_over_5000m": 1, + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2339768, + 50.7370562 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121754924, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1980994, + 50.912687500000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121746554, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 13, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.544749, + 46.0556194 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121830828, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.47682145, + -34.6311021 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121826070, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4016342, + 50.8594183 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121823684, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32204, + 50.8315324 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 11, + "delete": 0, + "area": 0.0972713705335725, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121822540, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 31, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6013772500000005, + 51.054136650000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121822375, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.401792, + 51.0429294 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121820311, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4401348, + 50.984066 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121818377, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1618575, + 49.6176337 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121815682, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.760968699999999, + 51.16352535 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121813712, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5498025, + -34.639664 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121813330, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6946945, + 50.8257843 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121810416, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.51022235, + 35.9078207 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121807731, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2351238, + 50.73678185 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121797249, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2626188, + 53.2341393 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121871323, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2325055, + -39.83014635 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121871141, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0212511, + 14.5628527 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121869884, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23191159999999, + -39.830541600000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121868369, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2316307, + -39.831060199999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121863141, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.0961074, + 48.8408778 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121859599, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 32, + "locale": "en", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "add-image": 8, + "change_over_5000m": 9, + "change_within_25m": 40, + "deletion:node/9785604436": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6797461, + 50.56222205 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121856741, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "locale": "it", + "imagery": "CartoDB.Voyager", + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6141915, + 43.1816863 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121855658, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 21, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9528269, + 50.9825335 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121854064, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5466312, + 51.16424805 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121853404, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/verkeerdebordendatabank/verkeerdebordendatabank.json", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1523533, + 50.7597604 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121850761, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "en", + "imagery": "cyclosm", + "add-image": 1, + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6622172, + 50.5596732 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121849906, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 2, + "import": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2193010500000003, + 51.2074568 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121847347, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.7841905, + 48.4156942 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121844176, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.786001, + 48.4132021 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121838532, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 11, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69716755, + 50.567450199999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121911414, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1456337, + 52.4187189 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121908433, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.049599, + -36.8139974 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121908299, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.9418558, + 53.43735785 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121907674, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 12, + "locale": "en", + "imagery": "HDM_HOT", + "change_over_5000m": 2, + "change_within_5000m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6643982, + 50.560970600000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121903206, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 3, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28019895, + 47.796135050000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121903039, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.27797695, + 47.79593885 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121902864, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "locale": "en", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7053571, + 51.0278079 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121902857, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.277912, + 47.7960841 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121902736, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "locale": "en", + "imagery": "Cadastre", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.2776398, + 47.7960467 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121902216, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.786211, + 48.413471 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121899091, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 9, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.8446539, + 53.46306375 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121898826, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.9419333, + 53.4380603 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121898273, + "host": "pietervdvn.github.io", + "theme": "climbing", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2431303, + 51.2060932 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 13, + "delete": 0, + "area": 0.000037540414800021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121898202, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 14, + "locale": "en", + "imagery": "Geoportal2-PL-aerial_image_WMTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.7513601, + 53.4845371 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 4, + "delete": 0, + "area": 1.58752859999331e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121895716, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 2, + "change_within_100m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11518225, + 45.012153100000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121893784, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.7841748, + 48.4157049 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121893009, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2919769, + 50.9934448 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121891827, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "it", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8092803, + 43.9475412 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121890920, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "link-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0031754, + 50.9143032 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121888941, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/main/parkingspaces.json", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7128895, + 41.2184252 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121882456, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05793905, + 50.928380649999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121879671, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3006821, + 50.8071335 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121876090, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/main/parkingspaces.json", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7128895, + 41.2184252 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121872925, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5142574, + -34.47132645 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121955897, + "host": "mapcomplete.osm.be", + "theme": "lgbtmap", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.07358095000001, + 14.6125529 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121955635, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 3, + "locale": "en", + "imagery": "osm", + "add-image": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.83409225, + -27.475334150000002 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121954424, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4505474, + 50.86894825 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121952098, + "host": "mapcomplete.osm.be", + "theme": "lgbtmap", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.03028665, + 14.6234979 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121951074, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.1023868, + 14.6034278 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121949177, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3233021, + 50.9978061 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121949096, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.2774142, + 47.7977984 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121949028, + "host": "mapcomplete.osm.be", + "theme": "lgbtmap", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.03395435, + 14.6481591 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121948749, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235955, + 50.997951549999996 + ] + } + }, + { + "type": "Feature", + "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": 4, + "modify": 2, + "delete": 0, + "area": 2.89056250002584e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121948514, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "locale": "nl", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32383985, + 50.99842555 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121948441, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235043, + 50.9986135 + ] + } + }, + { + "type": "Feature", + "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": 7, + "modify": 7, + "delete": 0, + "area": 0.00000121085379999923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 121948275, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 43, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 8, + "change_within_25m": 43, + "import:node/9795328273": "source: https://osm.org/note/3156394" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3236287, + 50.99801885 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121945314, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 2, + "move:node/7376270730": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3526393500000005, + 50.8515533 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121944895, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "locale": "en", + "imagery": "AGIVFlandersGRB", + "move:node/9776597335": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8537268000000005, + 50.90854255 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121943875, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 1, + "change_within_25m": 2, + "deletion:node/1545762872": "shop_closed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81062275, + 51.186257850000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121943283, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.2931119, + 48.3022411 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121942826, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3215027, + 50.8323484 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121941839, + "host": "mapcomplete.osm.be", + "theme": "lgbtmap", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.03028665, + 14.6234979 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121940844, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1090121, + 50.7861001 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121938289, + "host": "mapcomplete.osm.be", + "theme": "lgbtmap", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0000378, + 14.6150336 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121937771, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2201007, + 51.1974825 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121937100, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "en", + "imagery": "AGIV", + "import:node/9794675533": "source: https://osm.org/note/3161429" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5754289, + 51.0642306 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121935902, + "host": "mapcomplete.osm.be", + "theme": "lgbtmap", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.03213, + 14.593289200000001 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121935343, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0509915, + 14.7044834 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121935001, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13799475, + 51.167021 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121934603, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 7, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1307145, + 51.1687748 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121929503, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5476008, + 51.2103174 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121924774, + "host": "mapcomplete.osm.be", + "move": 69, + "theme": "grb", + "import": 26, + "locale": "nl", + "imagery": "AGIV", + "conflation": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86057355, + 51.1422965 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121924745, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85920535, + 51.1426604 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121997486, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.5891619, + 10.27227655 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121994667, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 2, + "change_within_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.5879976, + 10.265922 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121994556, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "cyclosm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.1637305, + 19.4288488 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121992763, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3906408, + 51.0715958 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121987730, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 5, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14465, + 51.1645238 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121981244, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.2925717, + 47.9859552 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121979382, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.2830465, + 47.9484447 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121979162, + "host": "pietervdvn.github.io", + "theme": "fritures", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.159974050000001, + 51.1137418 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121979123, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6175006, + 50.82244955 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121977632, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41271925, + 50.84895255 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121973478, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4262876, + 50.8499172 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121973047, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40958535, + 50.8449504 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121969284, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2177335, + 51.0948239 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121968687, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.095636, + 52.447019 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121958553, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.457513, + 5.6134242 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121957028, + "host": "mapcomplete.osm.be", + "theme": "lgbtmap", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0172092, + 14.583884399999999 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122045776, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20670075, + 51.18633625 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122044896, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1908541, + 51.20403665 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122042046, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23617685, + 50.73789395 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122039704, + "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.3344968, + 51.165771 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122039407, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5783017, + 50.1969804 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122039073, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 4, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.0998057, + 52.3834331 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122038237, + "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.3173243, + 51.1851439 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122037507, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3251960499999997, + 51.177399699999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122037277, + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.5871686, + 10.2680671 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122036342, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 10, + "locale": "en", + "imagery": "osm", + "add-image": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.321262, + 51.175493700000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122033902, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.5854196, + 10.27333535 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122033074, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1406198, + 49.6753384 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122030608, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9902507499999995, + 51.92852505 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122028815, + "host": "mapcomplete.osm.be", + "move": 135, + "theme": "grb", + "import": 19, + "locale": "nl", + "imagery": "AGIV", + "conflation": 54 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86383955, + 51.15308345 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122028580, + "host": "mapcomplete.osm.be", + "move": 153, + "theme": "grb", + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "conflation": 36 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85760785, + 51.14368 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122025572, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3330473, + 51.16424105 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122024785, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7255707, + 51.0426904 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122022132, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.2821246, + 47.7948169 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122021602, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.555473549999999, + 46.055378149999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122021344, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7255707, + 51.0426904 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122020831, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1419604, + 52.404133 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122020332, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "locale": "en", + "imagery": "osm", + "link-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.7387959, + 48.9499483 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122020331, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2895791, + 49.8934254 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122019338, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5627204, + 46.0564451 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122017390, + "host": "mapcomplete.osm.be", + "move": 135, + "theme": "grb", + "import": 29, + "locale": "nl", + "imagery": "AGIV", + "conflation": 54 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85865175, + 51.143181999999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122012198, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4342187, + 50.8140204 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122011281, + "host": "pietervdvn.github.io", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.743345, + 51.1368258 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 4, + "delete": 0, + "area": 4.21933200000063e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 122009699, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3313416, + 50.99583085 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121999758, + "host": "mapcomplete.osm.be", + "theme": "lgbtmap", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.066923, + 14.58598915 + ] + } + }, + { + "type": "Feature", + "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, + "id": 121999500, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -118.35440775000001, + 33.8083814 + ] + } + }, + { + "type": "Feature", + "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": 1, + "modify": 9, + "delete": 0, + "area": 0.00279311857864972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 122091476, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 30, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 2, + "change_within_500m": 1, + "change_within_1000m": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36375375, + 51.021759450000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122091029, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 5, + "change_within_50m": 1, + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2321411, + -39.8436452 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122090831, + "host": "mapcomplete.osm.be", + "move": 524, + "theme": "grb", + "answer": 8, + "import": 65, + "locale": "nl", + "imagery": "osm", + "conflation": 202, + "change_over_5000m": 21 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86033515, + 51.145637 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122090694, + "host": "mapcomplete.osm.be", + "move": 73, + "theme": "grb", + "import": 8, + "locale": "nl", + "imagery": "osm", + "conflation": 26, + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8669560999999995, + 51.1412178 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122089456, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "it", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2875992, + 44.5145978 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122088227, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5241609499999997, + 48.66391805000001 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122087315, + "host": "mapcomplete.osm.be", + "move": 9, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29214715, + 50.8542051 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122086838, + "host": "pietervdvn.github.io", + "theme": "personal", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.6769297, + 49.5971426 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122085495, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 205, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48047765, + 49.165353 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122084191, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "locale": "en", + "imagery": "osmfr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8106191, + 51.1862576 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122083968, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77646685, + 51.1527143 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122081062, + "host": "127.0.0.1:1234", + "theme": "schools", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21382245, + 51.21175205 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122080366, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2277688, + -39.8299036 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122079812, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2402133, + -39.8324051 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122079049, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7268178, + 50.9788521 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 1, + "delete": 0, + "area": 1.84111999999221e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 122074440, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67686, + 49.597162 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122072244, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "charging_stations", + "answer": 3, + "locale": "en", + "imagery": "geodata.md.gov-MD_SixInchImagery", + "move:node/8306579613": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.8176946, + 39.19196825 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122071748, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23788685, + -39.8366867 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122070986, + "host": "pietervdvn.github.io", + "theme": "maxspeed", + "answer": 8, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.64206735, + 47.308028 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122070809, + "host": "mapcomplete.osm.be", + "move": 260, + "theme": "grb", + "import": 76, + "locale": "nl", + "imagery": "osm", + "conflation": 102 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9331762999999995, + 51.13488725 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122070222, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 42, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85456705, + 51.0981597 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122066667, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.4161362, + 54.7781596 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122061460, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.800595, + 49.4297481 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122060732, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 6, + "locale": "en", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 3, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.9621431, + 43.2106457 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122058595, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9055048, + 51.1054154 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122047161, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.2650738, + -32.9929502 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122139207, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 214, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4712899, + 51.22190465 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122138896, + "host": "mapcomplete.osm.be", + "split": 2, + "theme": "cyclestreets", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37162665, + 51.11596625 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122138772, + "host": "pietervdvn.github.io", + "theme": "personal", + "locale": "en", + "imagery": "AGIV", + "deletion": 1, + "change_over_5000m": 1, + "deletion:node/9804602914": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8092537, + 51.1859369 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122137360, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.5055717, + 49.3994916 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122137291, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 4, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/5578933391": "shop_closed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2367476, + 50.7362392 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122137120, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 56, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4240867, + 49.204784599999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122136918, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "shops", + "answer": 12, + "locale": "en", + "imagery": "osm", + "move:node/5578933403": "relocated" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2380174, + 50.7391976 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122135851, + "host": "mapcomplete.osm.be", + "move": 13, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8590541, + 51.144766000000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122135850, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "toerisme_vlaanderen", + "answer": 25, + "locale": "nl", + "imagery": "AGIV", + "move:node/9803297653": "improve_accuracy", + "move:node/9804784310": "improve_accuracy", + "move:node/9804798084": "improve_accuracy", + "move:node/9804809539": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.314056300000001, + 50.94031195 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122135332, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 33, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24347355, + 50.73373755 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122135079, + "host": "pietervdvn.github.io", + "move": 1005, + "theme": "grb", + "import": 241, + "locale": "nl", + "imagery": "osm", + "conflation": 324 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1764434999999995, + 50.7970086 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122134771, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2401776, + 50.7332319 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122133216, + "host": "mapcomplete.osm.be", + "theme": "waste_assen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5404782, + 53.0068111 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122132348, + "host": "pietervdvn.github.io", + "theme": "personal", + "locale": "en", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80924965, + 51.18593105 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122132177, + "host": "mapcomplete.osm.be", + "theme": "waste_assen", + "answer": 30, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 15, + "change_within_500m": 10, + "change_within_1000m": 6, + "change_within_5000m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5770389, + 53.02411215 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122129585, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 27, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82914315, + 51.17492045 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122123900, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39454925, + 51.035496300000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122120290, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 54, + "locale": "it", + "imagery": "osm", + "change_within_500m": 2, + "change_within_1000m": 34, + "change_within_5000m": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.63601185, + 45.499196350000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122119953, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.2657573, + -33.0041202 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122117816, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7659331, + 49.5279807 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122117794, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7659234, + 49.52796 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122110716, + "host": "mapcomplete.osm.be", + "move": 217, + "theme": "grb", + "import": 9, + "locale": "en", + "imagery": "AGIV", + "conflation": 28, + "change_over_5000m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21570515, + 51.19239115 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122107836, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3378272, + 50.9326832 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122107681, + "host": "mapcomplete.osm.be", + "theme": "personal", + "locale": "nl", + "imagery": "osm", + "soft-delete": 1, + "change_within_25m": 1, + "soft-delete:way/451400969": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81159625, + 51.18693525 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122107613, + "host": "pietervdvn.github.io", + "theme": "schools", + "answer": 10, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7869007, + 51.2707367 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122104382, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3211951, + 50.9385987 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122103459, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 4, + "move:node/9803248578": "improve_accuracy", + "move:node/9803265676": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29575285, + 50.9465494 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 18, + "delete": 0, + "area": 0.000708846863499996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 122102126, + "host": "mapcomplete.osm.be", + "move": 5, + "theme": "toerisme_vlaanderen", + "answer": 30, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32219675, + 50.9403437 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122094629, + "host": "127.0.0.1:1234", + "theme": "schools", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7059525, + 50.8814895 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122185440, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.875440899999999, + 53.103191550000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122181171, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5534107, + 47.2144086 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122179854, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2409344, + -39.838186 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122175443, + "host": "pietervdvn.github.io", + "theme": "education", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39077895, + 51.04275 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122173749, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.6167004, + 39.3246027 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122170491, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0998607, + 49.4405031 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122164228, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8247297, + 51.0436833 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122163677, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0887631, + 49.4393812 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122161774, + "host": "pietervdvn.github.io", + "theme": "cycle_infra", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5576502, + 51.2632364 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122159995, + "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.7053098, + 51.0493961 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122158920, + "host": "mapcomplete.osm.be", + "move": 71, + "theme": "grb", + "import": 20, + "locale": "nl", + "imagery": "AGIV", + "conflation": 30 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85115615, + 51.144141399999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122156656, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 9, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8262829, + 51.174387499999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122152916, + "host": "mapcomplete.osm.be", + "theme": "waste_assen", + "answer": 10, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.541154049999999, + 53.0074793 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122152215, + "host": "mapcomplete.osm.be", + "move": 236, + "theme": "grb", + "answer": 2, + "import": 43, + "locale": "nl", + "imagery": "AGIV", + "conflation": 98 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85773145, + 51.1410062 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122149555, + "host": "mapcomplete.osm.be", + "move": 170, + "theme": "grb", + "answer": 4, + "import": 60, + "locale": "nl", + "imagery": "AGIV", + "conflation": 74 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86735425, + 51.141561499999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122142707, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -96.40084519999999, + 30.17283755 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122140479, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "cyclosm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6200059, + -33.4148321 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122139690, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "ru", + "imagery": "osm", + "deletion": 1, + "deletion:node/9805191833": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.85226, + 56.2639233 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122231328, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2450132, + -39.8149123 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122230162, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "lgbtmap", + "answer": 1, + "locale": "en", + "imagery": "osm", + "move:node/7785286853": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 113.43267795, + 17.83522185 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122229746, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1329849999999997, + 57.15484025 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122228138, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24068245000001, + -39.838170500000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122225738, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5592003, + 47.2201371 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122222605, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "move:node/9809414573": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23289925, + -39.84305085 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122220184, + "host": "pietervdvn.github.io", + "theme": "shops", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7175367, + 51.0541085 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122219073, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7003829, + 51.0569982 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122217937, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 9, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7093305, + 51.055981349999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122216870, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 13, + "locale": "de", + "imagery": "Mapbox", + "change_over_5000m": 1, + "change_within_25m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99599175, + 48.5013178 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122213710, + "host": "pietervdvn.github.io", + "theme": "personal", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39895425, + 51.04307105 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122212270, + "host": "pietervdvn.github.io", + "theme": "sport_pitches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7044771499999998, + 51.0532697 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122211833, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.2291585, + 49.4256414 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122210761, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/9808648106": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7297377, + 51.0494191 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122210551, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 14, + "locale": "en", + "imagery": "EsriWorldImageryClarity", + "change_over_5000m": 2, + "change_within_25m": 10, + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.454165599999996, + -34.623142 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122210523, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 28.94159145, + 41.03622745 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122206084, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 14, + "locale": "it", + "imagery": "Mapbox" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7739898499999995, + 45.1108048 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122203701, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 25, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "change_over_5000m": 11, + "change_within_5000m": 16, + "deletion:node/9808305816": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55956365, + 52.993470650000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122203639, + "host": "pietervdvn.github.io", + "theme": "personal", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 7, + "deletion:node/9808316723": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39918465, + 51.04276675 + ] + } + }, + { + "type": "Feature", + "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": 5, + "modify": 2, + "delete": 0, + "area": 0.0000081657914399904, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 122203568, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.395361749999999, + 51.2131753 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122200450, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72722395, + 49.5210057 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122194875, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5523874, + 47.2451549 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122191993, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13100335, + 50.9333866 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122187206, + "host": "pietervdvn.github.io", + "theme": "education", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2449838, + 50.734433949999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122250140, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1010462, + 51.8823722 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 5, + "delete": 0, + "area": 0.00000103330317998608, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 122243633, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1440028, + 50.69256695 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122243627, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 17, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5984210999999995, + 51.1833557 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122243501, + "host": "pietervdvn.github.io", + "theme": "playgrounds", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.2017185, + 49.7080053 + ] + } + }, + { + "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-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, + "id": 122243349, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3655406, + 52.1482692 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122240937, + "host": "mapcomplete.osm.be", + "theme": "gh://mapbeks/mapcomplete_lgbt/main/version 5", + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7270072, + 51.0557241 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122240058, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7728781, + 51.1384228 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122239828, + "host": "pietervdvn.github.io", + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.6763377500000001, + 49.578903499999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122239607, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 7, + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75001065, + 51.14396015 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122239596, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 14, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2813655, + 50.79450475 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122239427, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7326543, + 51.1465674 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122239207, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7323308, + 51.1467587 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122238710, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38339, + 50.8606546 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122238370, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6503974, + 48.3854422 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122236225, + "host": "pietervdvn.github.io", + "theme": "cafes_and_pubs", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3985404, + 51.0404438 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122236165, + "host": "pietervdvn.github.io", + "theme": "cafes_and_pubs", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3985404, + 51.0404438 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122235625, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osmfr", + "add-image": 8, + "change_over_5000m": 1, + "change_within_1000m": 4, + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2405996, + -39.8355734 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122233973, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "gh://mapbeks/mapcomplete_lgbt/main/version 5", + "locale": "en", + "imagery": "osm", + "move:node/7134466090": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.03122830000001, + 14.641678599999999 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122233202, + "host": "mapcomplete.osm.be", + "theme": "gh://mapbeks/mapcomplete_lgbt/main/version 4", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 85.3100405, + 27.7160656 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122299850, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.2076429, + 56.160560000000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122298206, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7085348, + 50.7669909 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122297961, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7070985, + 51.029572200000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122297789, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "street_lighting", + "answer": 3, + "locale": "de", + "imagery": "osm", + "move:node/9674010052": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.09980605, + 52.3834305 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122296228, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 41, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.95494945, + 48.068634599999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122295144, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4519133, + 43.6080802 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122290058, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9865728, + 49.4043395 + ] + } + }, + { + "type": "Feature", + "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": 1, + "modify": 2, + "delete": 0, + "area": 9.71843000035697e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 122289566, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2850489, + 51.34009675 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122289234, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4154851, + 50.848610949999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122288474, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2582681, + 51.3445375 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122287147, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7202609, + 51.0125173 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122286252, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7199919, + 51.0198821 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122285804, + "host": "pietervdvn.github.io", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 2, + "deletion:node/9812384017": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9865781499999999, + 49.4043578 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122284259, + "host": "pietervdvn.github.io", + "theme": "drinking_water", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2957147, + 51.2771474 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122281801, + "host": "pietervdvn.github.io", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.717729, + 51.01544765 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122281708, + "host": "pietervdvn.github.io", + "theme": "personal", + "locale": "en", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7178102, + 51.015712 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122281429, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19814885, + 50.907023699999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122281252, + "host": "pietervdvn.github.io", + "theme": "trees", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9865781499999999, + 49.4043578 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122277981, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 21, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 147.33114875, + -42.8880011 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122275323, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 147.25475955, + -42.7908914 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122274792, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 21, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 147.2536098, + -42.7890065 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122274572, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.21827055, + 49.146974799999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122274526, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 147.2470021, + -42.7905268 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122274466, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 147.2456789, + -42.780184750000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122273277, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 36, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 147.2508182, + -42.786106149999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122271628, + "host": "mapcomplete.osm.be", + "theme": "schools", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 146.9787923, + -42.6390156 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122269081, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.256027750000001, + 40.93683815 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122268781, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 5, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3234594499999996, + 51.0988959 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122268077, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37515645, + 51.07428635 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122267883, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3628822, + 51.0683517 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122267607, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/barriers_bridges/barriers_bridges.json", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36772325, + 51.070594799999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122267335, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37072225, + 51.073465999999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122266562, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9490715, + 47.5519293 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122266264, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9485755, + 47.5509676 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122342463, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28848785, + 50.949074100000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122342462, + "host": "pietervdvn.github.io", + "theme": "charging_stations", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2886765, + 50.9488389 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122339711, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28848785, + 50.949074100000004 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 5, + "delete": 0, + "area": 3.53421719996493e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 122339561, + "host": "pietervdvn.github.io", + "theme": "aed", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28813385, + 50.948965099999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122338849, + "host": "pietervdvn.github.io", + "theme": "charging_stations", + "answer": 24, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 5, + "change_over_5000m": 2, + "change_within_25m": 29 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28870805, + 50.948768099999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122338737, + "host": "pietervdvn.github.io", + "theme": "charging_stations", + "answer": 21, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 19, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1427091999999996, + 49.607896 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122334705, + "host": "pietervdvn.github.io", + "theme": "hackerspaces", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7102741, + 51.0231119 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122325255, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "AGIV", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65521745, + 50.9035732 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122325192, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.54827295, + -34.63969935 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122324459, + "host": "pietervdvn.github.io", + "theme": "charging_stations", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0539164, + 48.37938 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122324144, + "host": "pietervdvn.github.io", + "theme": "campersite", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 8, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05423985, + 48.380948599999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122322337, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "move:node/9782507539": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7872994, + 51.098209499999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122321882, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.2851418, + 46.8275559 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122314712, + "host": "pietervdvn.github.io", + "theme": "waste_assen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5411851, + 52.99782065 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122312262, + "host": "pietervdvn.github.io", + "theme": "benches", + "locale": "en", + "imagery": "osm", + "deletion": 1, + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 2, + "deletion:node/9813966121": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3969668, + 51.0420686 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122308771, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8790023499999999, + 41.6505372 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122308178, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "locale": "da", + "imagery": "osm", + "deletion": 1, + "deletion:node/1241055903": "shop_closed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.2102971, + 56.1396582 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122390594, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.72737, + -37.1330066 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122389273, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.085853999999999, + 51.32167715 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122388502, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 98, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.9569148, + 48.0610795 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122387518, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.4174461, + 48.7098 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122386964, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.472751299999999, + 48.75837355 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122386738, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 13, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14824015, + 50.68494815 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122384113, + "host": "pietervdvn.github.io", + "theme": "cycle_infra", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39632285, + 51.03865745 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122382077, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6958357, + 51.9971968 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122380045, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 1, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2407107, + -39.8384085 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122372833, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2022475, + 51.1793305 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122372460, + "host": "pietervdvn.github.io", + "theme": "cycle_infra", + "answer": 10, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39565345, + 51.04174895 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122363488, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0797582, + 48.3500943 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122363116, + "host": "mapcomplete.osm.be", + "theme": "gh://mapbeks/mapcomplete_lgbt/main/version 5", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 113.42856945, + 17.829896650000002 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122361377, + "host": "pietervdvn.github.io", + "theme": "personal", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08312030000000001, + 48.347817899999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122360242, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0796938, + 48.3498921 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122359546, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "deletion": 2, + "deletion:node/6329699865": "not found", + "deletion:node/8972946744": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3773648000000005, + 50.84791785 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122358017, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7048762, + 45.1841152 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122353667, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 9, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9960345, + 48.5001099 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122350494, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.488849800000001, + 51.24320185 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122347684, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 13, + "locale": "es", + "imagery": "HDM_HOT", + "change_over_5000m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.63757815, + -33.48450765 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122437607, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1951918, + 56.16250655 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122434611, + "host": "pietervdvn.github.io", + "theme": "climbing", + "locale": "en", + "imagery": "osm", + "add-image": 4, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68119295, + 51.04948685 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122433835, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2860799, + 48.6521488 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122431594, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 19, + "locale": "de", + "imagery": "osm", + "change_within_1000m": 12, + "change_within_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0180495, + 48.490749 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122431229, + "host": "pietervdvn.github.io", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7511479, + 51.0615903 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122429682, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2872255, + 48.65285405 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122425359, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 9, + "locale": "de", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2970153, + 48.6508826 + ] + } + }, + { + "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-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, + "id": 122424938, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.37014675, + 52.09946425 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122424567, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 4, + "change_within_25m": 3, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2593561, + 50.83890045 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122424495, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_25m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2591398, + 50.8388477 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122423571, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 5, + "change_within_50m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69839445, + 46.697291750000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122423528, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0749865, + 49.9159915 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122422530, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7065071, + 51.0429488 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122421802, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.605144, + 46.7913485 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122420750, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/6192577523": "shop_closed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.1681653, + 44.0127823 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122419683, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75969735, + 51.0072524 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122417099, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41740635, + 51.473787 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122416962, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4175308, + 51.4742935 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122416802, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4131988, + 51.4923416 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122416624, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 10, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.415305, + 51.4924223 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122412473, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "locale": "de", + "imagery": "osm", + "add-image": 5, + "change_within_25m": 4, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.01775595, + 48.4910526 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122411347, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 124, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7139118499999997, + 50.86489 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122408336, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0717094, + 45.771781 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122408295, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "gh://mapbeks/mapcomplete_lgbt/main/version 5", + "locale": "en", + "imagery": "osm", + "move:node/7785465087": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.06522269999999, + 14.631146050000002 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122408154, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06649, + 45.770927150000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122406965, + "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.7771511, + 43.3562489 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122402015, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.3111936, + 48.2103579 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122401974, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.308395, + 48.2092858 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122484714, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23553755, + 50.4416155 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122480484, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53653085, + 51.071708900000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122479307, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 131, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.9712543499999997, + 48.052709199999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122478970, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 8, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8689812, + 56.26223905 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122478078, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 30, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 32.57085065, + -25.965826999999997 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122476559, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osmfr", + "add-image": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2385208, + -39.84391795 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122472487, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 9, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24078705, + 50.73073945 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122467629, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "move:node/9822866193": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40339265, + 50.9517291 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122465539, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 95, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 31.0230223, + -29.85558365 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122465423, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 3, + "locale": "es", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.55293895, + -34.6410793 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122464908, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6884799, + 51.3974184 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122464609, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7251537500000005, + 51.398314400000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122464315, + "host": "mapcomplete.osm.be", + "theme": "sidewalks", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72661875, + 51.051262449999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122463829, + "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": [ + 5.3338459, + 51.0113061 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122457994, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 4, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70097895, + 50.9256819 + ] + } + }, + { + "type": "Feature", + "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", + "id": 122457242, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6863146, + 51.0025472 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122457016, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7050791, + 50.9255003 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122456889, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70506345, + 50.92560685 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122456781, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7054314, + 50.9258488 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122456057, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 3, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4, + "move:node/9822274396": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9967587, + 48.5025358 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122455998, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 147.25414990000002, + -42.790266 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122455625, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 147.25363535, + -42.790230750000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122454666, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 17, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 8, + "change_within_25m": 17 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7100583, + 50.92188985 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122452556, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.375227500000001, + 52.65358165 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122452393, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7068088, + 50.8941826 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122451034, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8663013, + 56.2511462 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122449944, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "locale": "da", + "imagery": "osm", + "deletion": 3, + "deletion:node/1241055895": "shop_closed", + "deletion:node/1241055897": "shop_closed", + "deletion:node/1241055924": "shop_closed" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.19728855, + 56.137930749999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122449328, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 10, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7026976, + 50.8791716 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122447827, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 11, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.991956550000001, + 48.49876045 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122446861, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.32569405, + 48.6383426 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122444802, + "host": "mapcomplete.osm.be", + "theme": "personal", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.7837658, + 48.415843 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122520479, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3339576, + 48.6267009 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122518353, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.839279400000001, + 50.9834566 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122518122, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/9825985060": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28359845, + 50.7615551 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122518011, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/9825975765": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28365865, + 50.762354450000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122517017, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.364912, + 23.060865999999997 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122512675, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "deletion:node/9825649497": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3298082, + 50.7873786 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122511972, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2331137, + 50.734135 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122508929, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 56, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.9634152, + 48.07136425 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122508729, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4244979, + 52.535006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122506026, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3271183, + 48.6320977 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122501165, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6809335, + 51.4000407 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122498455, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "locale": "en", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "deletion:node/9824824866": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.221397, + 48.8076975 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122494778, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9965647, + 48.4999741 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122492727, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 17, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 14, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9965556, + 48.500485049999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122488273, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.509301, + -31.9103469 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122486466, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 15, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.67604785, + -39.1030995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122485848, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.565468, + -37.0942463 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122560842, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "fr", + "imagery": "AGIV", + "deletion": 3, + "deletion:node/9408613172": "not found", + "deletion:node/9408613173": "not found", + "deletion:node/9408656868": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39587135, + 50.8359301 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122551662, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 93, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15469425, + 54.5147731 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122550540, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.732858350000001, + 45.18206665 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122549736, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.2705637, + 47.7951175 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122547293, + "host": "mapcomplete.osm.be", + "theme": "personal", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3312751, + 48.6262617 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122546842, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.9571255499999998, + 48.07170955 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122546812, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.7022171, + 49.2752682 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122545077, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 7, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84053555, + 49.42721965 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122543157, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2128318, + 51.038212099999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122539368, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3492832, + 43.6133601 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122536617, + "host": "pietervdvn.github.io", + "theme": "entrances", + "answer": 1, + "locale": "en", + "imagery": "osm", + "link-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1445189, + 51.1716739 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122535437, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83385355, + 46.998570650000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122535005, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "EsriWorldImagery", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7720276, + 50.04665465 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122533419, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 123, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5433182, + 54.69750315 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122596396, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0634625, + 50.9218858 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122594891, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.87016025, + 52.48983355 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122592354, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0907022, + 52.0947968 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122592126, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7086741, + 50.15049215 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122591482, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.33712075, + 48.62750145 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122587197, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9418156, + 51.3168686 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122586466, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "locale": "en", + "imagery": "EsriWorldImagery", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 103.0384728, + 13.3538336 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122586234, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2283248, + 48.6778739 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122580429, + "host": "pietervdvn.github.io", + "theme": "hackerspaces", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2164547, + 51.1950847 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122580276, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 11, + "locale": "en", + "imagery": "osm", + "change_within_25m": 9, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.8514955, + 60.3286692 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122580177, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.8521056, + 60.3293556 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122580108, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.85210285, + 60.3293552 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122580084, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.8521223, + 60.3292124 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122579644, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.851860799999997, + 60.3292617 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122579325, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.849807300000002, + 60.329180050000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122578230, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 37, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 28.4353151, + 40.6889961 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122576949, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7540083, + 53.094533 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122574235, + "host": "mapcomplete.osm.be", + "theme": "sidewalks", + "answer": 2, + "locale": "en", + "imagery": "EsriWorldImageryClarity" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.473642649999999, + 49.10476455 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122571316, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2260245, + 43.6437654 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122640479, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9834595164": "source: https://osm.org/note/3156436" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0376711, + 50.7742844 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122639064, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.373757, + 50.9509636 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122638880, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3, + "import:node/9834337616": "source: https://osm.org/note/3143410" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0748208, + 51.1042735 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122636657, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3553743, + 50.9451473 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122635551, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4145360499999997, + 50.9408994 + ] + } + }, + { + "type": "Feature", + "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": 1, + "modify": 16, + "delete": 0, + "area": 0.00304483381383985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 122634743, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3810087500000003, + 50.9408919 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122634050, + "host": "mapcomplete.osm.be", + "theme": "maps", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3302641, + 53.2207045 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122633908, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3311379500000005, + 53.219356250000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122633789, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33207905, + 53.21871204999999 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122633579, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3348922, + 53.2143438 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122623273, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.95819135, + 56.33956425 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122623147, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.1671892, + 47.954379 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122618532, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "Mapbox" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.4424681, + 40.1295472 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122603107, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9965647, + 48.4999741 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122681879, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4459796, + 52.4742489 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122680288, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "locale": "en", + "imagery": "HDM_HOT", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7987028, + 41.6148739 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122670794, + "host": "127.0.0.1:1234", + "theme": "education", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2171876499999996, + 51.19431485 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122664088, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5338753, + 53.2409037 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122661909, + "host": "mapcomplete.osm.be", + "move": 112, + "theme": "grb", + "answer": 4, + "import": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9891822999999995, + 51.160988700000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122655153, + "host": "mapcomplete.osm.be", + "move": 393, + "theme": "grb", + "answer": 1, + "import": 107, + "locale": "nl", + "imagery": "osm", + "conflation": 48 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.048883, + 51.03256785 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122654914, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 36, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98627725, + 51.1615984 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122647591, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 13, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9953294, + 48.499474500000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122643179, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osmfr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2381516, + -39.8439309 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122728566, + "host": "mapcomplete.osm.be", + "theme": "education", + "answer": 6, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2219778999999997, + 51.2155054 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122728251, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7061055, + 51.0302433 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122723547, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 120, + "locale": "nl", + "imagery": "AIV_Wegenregister" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0596117, + 51.1145159 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122723250, + "host": "127.0.0.1:1234", + "move": 8, + "theme": "grb", + "import": 31, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0908070500000004, + 51.1128956 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122723131, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3569772, + 51.0699609 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122722357, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste", + "answer": 6, + "locale": "en", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 2, + "change_within_5000m": 9, + "move:node/9839412029": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3571683500000002, + 51.06963005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122721308, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7061055, + 51.0302433 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122717917, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0295793, + 38.8599969 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122714144, + "host": "mapcomplete.osm.be", + "theme": "education", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7148132499999997, + 51.025038550000005 + ] + } + }, + { + "type": "Feature", + "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": 3, + "modify": 2, + "delete": 0, + "area": 0.00000574667715000375, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 122711801, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.02241055, + 38.81779565 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122710050, + "host": "pietervdvn.github.io", + "theme": "sport_pitches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7500581, + 51.0603551 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122708926, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 14, + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "change_over_5000m": 1, + "change_within_25m": 9, + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.02233295, + 38.8176198 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122706352, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6465344, + 44.8022722 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122703683, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "food", + "answer": 9, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 10, + "move:node/9838328438": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.344756050000001, + 50.94808745 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122703540, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9839678, + 48.3993113 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122697663, + "host": "mapcomplete.osm.be", + "move": 7, + "theme": "toerisme_vlaanderen", + "answer": 48, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3718772999999995, + 50.97612705 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122697102, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 34, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9167633, + 51.2291214 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122696750, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osmfr", + "add-image": 17, + "change_within_5000m": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23144160000001, + -39.81904735 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122696036, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.404724, + 51.21416895 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122692529, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9943828, + 48.499853599999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122775602, + "host": "mapcomplete.osm.be", + "theme": "education", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_1000m": 5, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27778645, + 53.212783599999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122775387, + "host": "mapcomplete.osm.be", + "theme": "education", + "answer": 11, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 5, + "change_within_1000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2718837, + 53.2096564 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122775052, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.252498, + 50.7266434 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122774261, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2098756, + 48.4952882 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122774034, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3417917, + 48.6285894 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122773672, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.207983550000002, + 48.49370225 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122769747, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2264482, + 48.4652879 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122767086, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 15, + "locale": "en", + "imagery": "osm", + "change_within_100m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.9324646, + 49.23916065 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122765386, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4428435, + 51.4027986 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122763270, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -88.1163653, + 41.8641974 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122763113, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -88.31585015, + 41.83988479999999 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122758853, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 22, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7642527, + 51.1632161 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122758118, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 14, + "locale": "ca", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24370925, + 41.45137205 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122754165, + "host": "mapcomplete.osm.be", + "theme": "education", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0106169000000005, + 51.127947750000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122751770, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40199925, + 51.0380398 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122748106, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 9, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.226555000000001, + 48.46529085 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122746332, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.31361380000001, + 47.651112350000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122741992, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.475949, + 51.0416184 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122740024, + "host": "pietervdvn.github.io", + "theme": "education", + "answer": 32, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 12, + "change_within_1000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3600995, + 51.0172472 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122738694, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9958824, + 48.4996256 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122738650, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 5, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9958422, + 48.499610849999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122736860, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6985425, + 50.55973995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122732642, + "host": "mapcomplete.osm.be", + "theme": "education", + "answer": 41, + "locale": "ca", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 32 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0012454999999999966, + 38.72120765 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122821250, + "host": "pietervdvn.github.io", + "theme": "education", + "answer": 7, + "locale": "nl", + "imagery": "AGIV", + "change_within_500m": 2, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2292996499999997, + 51.212881499999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122820823, + "host": "pietervdvn.github.io", + "theme": "street_lighting", + "answer": 30, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 30 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.572820699999999, + 53.01762775 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122814838, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 150, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 82.1984693, + 18.67893075 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122814638, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5846179, + 53.2174089 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122808887, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1196929, + 50.4427759 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122807311, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "en", + "imagery": "EsriWorldImagery" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8275258, + 53.6634973 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122807095, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "cyclosm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8050709, + 53.6515705 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122806720, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 126, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.6698308, + 19.63871655 + ] + } + }, + { + "type": "Feature", + "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": 1, + "modify": 1, + "delete": 0, + "area": 0.000036561705520008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 122806335, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9844320741": "source: https://osm.org/note/3156534" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7232821, + 50.851323050000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122806283, + "host": "mapcomplete.osm.be", + "split": 3, + "theme": "sidewalks", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8028024999999999, + 53.6525787 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122804731, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7096991, + 51.0288973 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122801158, + "host": "mapcomplete.osm.be", + "split": 3, + "theme": "maxspeed", + "answer": 8, + "locale": "en", + "imagery": "osm", + "relation-fix": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72742705, + 41.22040315 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122799647, + "host": "mapcomplete.osm.be", + "theme": "gh://mapbeks/mapcomplete_lgbt/main/version 5", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4430142, + 52.5115736 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122798975, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 47, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71733855, + 51.056591350000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122796496, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 93, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.47592474999999, + 10.91538915 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122794617, + "host": "mapcomplete.osm.be", + "theme": "gh://mapbeks/mapcomplete_lgbt/main/version 5", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 120.8147151, + 14.8594173 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122794320, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 15, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 6, + "change_within_50m": 5, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36651485, + 50.9298836 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122793310, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "gh://mapbeks/mapcomplete_lgbt/main/version 5", + "answer": 2, + "locale": "en", + "imagery": "osm", + "move:node/9805222041": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 105.83193185, + 21.03291615 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122792395, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 14, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1, + "change_over_5000m": 7, + "change_within_25m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5835482, + 53.21728365 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122792275, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5838801, + 53.2169562 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122786051, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "osm", + "import:node/9843295448": "source: https://osm.org/note/3044726" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.331234, + 50.8769235 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122782692, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "es", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.0539498, + -36.8271536 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122781993, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0363956, + 14.6522853 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122781189, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.386939, + 52.6535987 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122779083, + "host": "mapcomplete.osm.be", + "theme": "education", + "answer": 8, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5554685500000005, + 51.23601765 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122778870, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.3336252, + -25.4349445 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122852090, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7164735, + 51.0397186 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122850312, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "answer": 9, + "import": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60934, + 52.28912135 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122850293, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "answer": 8, + "import": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6087196000000001, + 52.288797349999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122848809, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 51, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4640208, + 49.1408421 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122846671, + "host": "pietervdvn.github.io", + "theme": "education", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66316, + 51.0739649 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122846614, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6524124, + 51.0794013 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122845718, + "host": "pietervdvn.github.io", + "theme": "sport_pitches", + "answer": 4, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6589328, + 51.0809111 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122844691, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "en", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 2, + "change_within_25m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6677358499999997, + 51.10336795 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122843300, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "answer": 12, + "import": 7, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 10, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6079150000000002, + 52.2884997 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122843152, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 143, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.20505345000001, + 21.4901391 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122842190, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.781909300000001, + 51.01754375 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122842168, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "de", + "imagery": "osm", + "link-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.408581850000001, + 52.5362719 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122841333, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6829574, + 51.1275467 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122841247, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 14, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3275818, + 50.8130345 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122839087, + "host": "pietervdvn.github.io", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6118158, + 51.092757 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122837723, + "host": "pietervdvn.github.io", + "theme": "climbing", + "answer": 7, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6114936, + 51.09283795 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122835034, + "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": [ + 2.6719341, + 50.9434783 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122835000, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6524124, + 51.0794013 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122834302, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 189, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 82.6591245, + 20.7772771 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122833536, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.85987945, + 56.23452005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122833082, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.75224135, + 53.48216965 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122833024, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.7487037, + 53.4944466 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122829516, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9598022, + 51.100282 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122827545, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 21, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9975694, + 52.261865150000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122826903, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 65, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 82.0639262, + 20.52340955 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122826382, + "host": "mapcomplete.osm.be", + "move": 73, + "theme": "grb", + "import": 63, + "locale": "nl", + "imagery": "AGIV", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86466005, + 51.1461208 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122824169, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 77.69522, + 12.939410500000001 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122822795, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.836744, + 40.710394300000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122881974, + "host": "mapcomplete.osm.be", + "move": 6, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0650437, + 50.986465100000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122881908, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0656526, + 50.9881896 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122879886, + "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.2269764, + 51.1929774 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122879807, + "host": "pietervdvn.github.io", + "theme": "aed", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2289143, + 51.192964 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122879158, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -81.5545867, + 41.12966275 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122877193, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "answer": 6, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2355769, + 51.1856173 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122870580, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8411583, + 56.2366261 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122870355, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0004418, + 52.27027245 + ] + } + }, + { + "type": "Feature", + "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": 9, + "modify": 14, + "delete": 0, + "area": 0.0000741037202099465, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 122870318, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 37, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07887795, + 48.840348250000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122868917, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_1000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.9810692, + 40.7299222 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122868281, + "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": [ + 2.5766567, + 51.0622524 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122867372, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 6, + "move:node/9848052021": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95071125, + 51.199681749999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122863186, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01671415, + 52.23543545 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122861803, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 6, + "locale": "de", + "imagery": "CartoDB.Voyager", + "link-image": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.410550749999999, + 52.53608 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122860428, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 857, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 82.33575665000001, + 20.399641300000003 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122860275, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5554056, + 52.6682847 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122859998, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9055055, + 51.1053873 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122859932, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0053827, + 50.3230578 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122858648, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 30, + "locale": "en", + "imagery": "osm", + "change_within_500m": 7, + "change_within_1000m": 7, + "change_within_5000m": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00321495, + 52.259871700000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122857582, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5504414, + 52.6702289 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122857255, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 32, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 76.74789355, + 23.606943649999998 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122929248, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.160487, + 50.9922665 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122929032, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0750291, + 50.9840998 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122924567, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 155, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.3779093, + 46.9773158 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122923456, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "answer": 28, + "import": 14, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 14, + "change_within_25m": 20, + "change_within_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2482959, + 52.380242800000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122919237, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.815219, + 47.223940150000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122917202, + "host": "pietervdvn.github.io", + "theme": "hackerspaces", + "answer": 10, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5699075, + 51.1342257 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122916165, + "host": "mapcomplete.osm.be", + "theme": "education", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2541835, + 50.7397728 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122916111, + "host": "mapcomplete.osm.be", + "theme": "education", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83363215, + 50.32022145 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122914694, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 5, + "locale": "es", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4633741, + -34.5475963 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122907297, + "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": [ + 6.5944496, + 53.2385611 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122906015, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "Mapbox" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.9874669, + 43.4163635 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122895348, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "answer": 2, + "import": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2727753, + 51.4911096 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122890001, + "host": "pietervdvn.github.io", + "theme": "aed", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_over_5000m": 6, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8365734, + 51.0835602 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122978177, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "link-image": 2, + "import:node/9854536427": "source: https://osm.org/note/3143403" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4796941, + 51.3550793 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122972363, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "street_lighting", + "answer": 25, + "locale": "de", + "imagery": "osm", + "change_within_25m": 26, + "move:node/9072887735": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3714558, + 52.53964265 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122972282, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.0996481, + 39.9855193 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122969849, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.39186135, + 52.5042859 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122969425, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 85.3123226, + 27.7134188 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122969252, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4416698, + 51.2425369 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122969040, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4309258, + 50.9390764 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122968650, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.485047699999999, + 51.55980395 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122968636, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3734491, + 53.158111250000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122968283, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1943926000000005, + 51.01815935 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122968053, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1800287, + 51.0102086 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122966539, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0649207, + 50.9864937 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122966477, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4488122, + 52.4513655 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122965755, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.24452915, + 52.7620065 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122963306, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 19, + "locale": "en", + "imagery": "USDA-NAIP", + "change_over_5000m": 11, + "change_within_5000m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.13098740000001, + 39.99597425 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122962113, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6435579, + 47.9524817 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122961458, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2368904, + 50.7355966 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122961067, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23593435, + 50.7357148 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122956870, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 14, + "locale": "en", + "imagery": "USDA-NAIP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.1024539, + 40.00141215 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122954524, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1265289, + 52.0783022 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122947876, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "import:node/9852865729": "source: https://osm.org/note/3156356" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3688066, + 50.74495 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122947761, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48216085, + 43.63794325 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122945411, + "host": "mapcomplete.osm.be", + "theme": "education", + "answer": 10, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.882058, + 50.99261435 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122945100, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.863106, + 56.2488845 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123022095, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3754852, + 52.5692824 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123021994, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "de", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3755981, + 52.5695314 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123021791, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 67, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "change_within_25m": 62, + "change_within_50m": 6, + "deletion:node/9172254141": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3754308, + 52.56948095 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123021737, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 13, + "locale": "de", + "imagery": "osm", + "change_within_25m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.375313550000001, + 52.5697081 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123021456, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 143, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 142, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.37369175, + 52.57036655 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123018657, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.37305835, + 52.633651549999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123016842, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "answer": 8, + "import": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.252818, + 52.376515749999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123015647, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3321316, + 52.474583300000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123014096, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 17, + "locale": "ru", + "imagery": "EsriWorldImageryClarity", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8760996, + 56.2670164 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123013389, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6137448, + 47.7819293 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123012196, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.244684199999998, + 52.7635752 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123011018, + "host": "pietervdvn.github.io", + "theme": "waste_assen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5570506, + 53.01615 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123010647, + "host": "pietervdvn.github.io", + "theme": "waste_assen", + "answer": 14, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_500m": 2, + "change_within_1000m": 10, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.561320050000001, + 53.0125893 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123008555, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2681166, + 53.2107031 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123006999, + "host": "pietervdvn.github.io", + "split": 3, + "theme": "personal", + "answer": 1, + "locale": "en", + "imagery": "osm", + "relation-fix": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81577395, + 51.185652950000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123006898, + "host": "pietervdvn.github.io", + "theme": "personal", + "answer": 13, + "locale": "en", + "imagery": "osm", + "change_within_50m": 7, + "change_within_100m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8160592500000003, + 51.186721899999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123004687, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.1297169, + 39.97489505 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123003798, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "import": 1, + "locale": "fr", + "imagery": "AGIV", + "link-image": 1, + "import:node/9855796278": "source: https://osm.org/note/3084035" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3726726, + 50.9369797 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123002129, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.1265885, + 40.0052251 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123001445, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4291074, + 50.9236608 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122998796, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.0210153, + 47.5543206 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122997347, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.24491495, + 52.77093205 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122996837, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1, + "change_within_50m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.02306655, + 47.55406565 + ] + } + }, + { + "type": "Feature", + "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, + "id": 122978497, + "host": "mapcomplete.osm.be", + "theme": "education", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.615679999999999, + 50.9392161 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123064229, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1120733, + 38.8376833 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123062710, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "street_lighting", + "answer": 6, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 9, + "move:node/9859182147": "improve_accuracy", + "move:node/9859207883": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3705746, + 52.563815149999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123060568, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8590768, + 56.2553563 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123058538, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 42, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3585817, + 52.574047750000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123057475, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7429211999999996, + 51.086223149999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123055599, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 24, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.37446675, + 52.5692326 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123055172, + "host": "mapcomplete.osm.be", + "move": 6, + "theme": "grb", + "import": 287, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06875705, + 50.9080857 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123054665, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74587045, + 50.91842595 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123052549, + "host": "mapcomplete.osm.be", + "move": 59, + "theme": "grb", + "import": 18, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51160295, + 51.0959435 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123051593, + "host": "mapcomplete.osm.be", + "move": 88, + "theme": "grb", + "import": 191, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 38 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5118922, + 51.095462600000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123051545, + "host": "mapcomplete.osm.be", + "move": 39, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5106364, + 51.0958328 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123049927, + "host": "mapcomplete.osm.be", + "theme": "education", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20332155, + 51.187157049999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123049737, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4998004, + 52.51469285 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123047271, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.97244085, + 45.7645787 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123046909, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "en", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2485726, + 50.7246783 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123039312, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.264015, + 53.2121552 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123038116, + "host": "mapcomplete.osm.be", + "theme": "waste", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2635859, + 53.2048097 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123037903, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 3, + "move:node/9785285079": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2634709, + 53.20483925 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 2, + "delete": 0, + "area": 1.66875000019695e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123031977, + "host": "pietervdvn.github.io", + "theme": "kerbs_and_crossings", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55885255, + 53.01785255 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123023415, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.0251903, + 47.5533321 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123023332, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.0251696, + 47.5537683 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123102504, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6067006, + 47.78487079999999 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123102333, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.60674445, + 47.78494155 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123102060, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.60522585, + 47.7838349 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123101845, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2614436, + 53.2052951 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123101816, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1, + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2690246, + 53.209405000000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123099712, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 16, + "locale": "nl", + "imagery": "AGIV", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 19 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20026615, + 51.333110250000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123099673, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.05746725, + 20.28158625 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123098929, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 174, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.360753500000001, + 46.94600495 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123098867, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.3669651, + 46.95798145 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123098816, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.3655027, + 46.9572601 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123098781, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.3650806, + 46.9592081 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123097417, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 11, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3621741, + 52.5735993 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123097150, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 17, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 17 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3483944, + 52.5755382 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123097070, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 10, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "change_within_25m": 11, + "deletion:node/9725266729": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.34864415, + 52.575723249999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123097044, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "locale": "de", + "imagery": "osm", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.34923005, + 52.57573535 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123096956, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 34, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 3, + "change_over_5000m": 2, + "change_within_500m": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.637818, + 50.9276307 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123096733, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 19, + "locale": "de", + "imagery": "osm", + "change_within_25m": 19 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.349098099999999, + 52.57607915 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123096629, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 15, + "locale": "de", + "imagery": "osm", + "change_within_25m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3494705, + 52.57570295 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123096481, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 28, + "locale": "de", + "imagery": "osm", + "change_within_25m": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.35031575, + 52.57543485 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123096440, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 4, + "locale": "de", + "imagery": "osm", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.35140935, + 52.57534885 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123096273, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "locale": "ca", + "imagery": "PNOA-Spain", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1723883, + 38.7879042 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123095949, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 55, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 55 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3522237, + 52.5728136 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123095673, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 20, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 6, + "change_over_5000m": 3, + "change_within_25m": 25 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8556329, + 56.24119965 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123095409, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "ru", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8455725, + 56.2429602 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123094059, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1106824, + 48.728252350000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123093627, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.21855235, + 48.08813035 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123093379, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1118259, + 48.726658 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123087824, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4465267, + 52.54192 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123087463, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "link-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5990097, + 50.36365965 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123086886, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 11, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.41837265, + 52.53290825 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123085602, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 10, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.557987499999999, + 53.216504799999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123085581, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5578491, + 53.2164214 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123085423, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 12, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 5, + "change_within_25m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5580607, + 53.2165044 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123085257, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.0211251, + 47.5541624 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123078949, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3794023, + 52.5095536 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123073629, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6435579, + 47.9524817 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123073404, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 10, + "locale": "ca", + "imagery": "PNOA-Spain", + "add-image": 5, + "change_over_5000m": 3, + "change_within_25m": 11, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10376465, + 38.82940345 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123073149, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.61772145, + 47.78110085 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123071297, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "locale": "es", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6160285, + 47.7799357 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123068416, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 190, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.10973205, + 19.9200267 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123064756, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_5000m": 5, + "move:node/2881241124": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.1358449, + 39.992751150000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123132619, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3495036, + 52.5769612 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123130543, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 14, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31195015, + 48.905352 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123130500, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 4, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3108688, + 48.90075255 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123130452, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31233115, + 48.90557645 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123130375, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 12, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31204025, + 48.9053805 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123130341, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 6, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3119395000000003, + 48.905216100000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123130285, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3172724, + 48.9018478 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123127334, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5578959, + 53.2164286 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123124392, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 10, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0091920000000005, + 51.12046875 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123122965, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3748425, + 50.86618595 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123122612, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29681505, + 51.231588599999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123120706, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2632479, + 51.2141668 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123118856, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1457578, + 48.7505944 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123118741, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 6, + "locale": "de", + "imagery": "osm", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.14569185, + 48.75065965 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123118710, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1456259, + 48.7507249 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123115749, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.9352727, + 43.3113341 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123114381, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 12, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2335913, + 50.7345064 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123114043, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2215331, + 51.208375 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123113517, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6144978, + 47.7819559 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123113172, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.614654, + 47.7819341 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123112961, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7053477, + 51.0277952 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123112457, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2550068, + 52.758976 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123111262, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.84258435, + 53.125665350000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123106266, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 18, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 103.85622885000001, + 1.3059229 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123167136, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.2161179, + 53.3089194 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123167114, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.2086915, + 53.30786 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123167073, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.2083869, + 53.3081214 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123164586, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.374284450000001, + 48.5541323 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123163942, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3594285, + 52.5658738 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123163740, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.5824727, + 48.3263817 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123163227, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 9, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.375362299999999, + 52.56784315 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123162947, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2156997, + 48.4903402 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123162744, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "street_lighting", + "answer": 17, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 19, + "move:node/8697947638": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.37675885, + 52.5689513 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123161219, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "street_lighting", + "answer": 14, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 6, + "change_within_50m": 9, + "move:node/9864437530": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3802627, + 52.5644537 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123158262, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4237184, + 52.5639202 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123157750, + "host": "pietervdvn.github.io", + "theme": "benches", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.317558050000001, + 50.8520343 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123157634, + "host": "pietervdvn.github.io", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3202102, + 50.8514867 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123156215, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.41946, + 52.4790857 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123153738, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.565864099999999, + 52.4426151 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123153198, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "de", + "imagery": "osm", + "link-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4351166, + 52.479370700000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123149774, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47089975, + 51.06721675 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123149564, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.320623, + 50.8489438 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123149162, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "it", + "imagery": "osm", + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3297269, + 44.4874685 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123149147, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "it", + "imagery": "osm", + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.32952575, + 44.48775725 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123149031, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 5, + "locale": "it", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.32066145, + 44.491067799999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123149004, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "it", + "imagery": "osm", + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3298928, + 44.487819599999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123148929, + "host": "mapcomplete.osm.be", + "theme": "waste", + "locale": "ca", + "imagery": "PNOA-Spain-TMS", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0965594, + 38.8252344 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123148490, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 213, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.01220115, + 18.546699 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123147389, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2363142, + 50.7315571 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123146240, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3094274, + 51.1985679 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123146141, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.5827676, + 55.70698535 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123140440, + "host": "mapcomplete.osm.be", + "move": 229, + "theme": "grb", + "answer": 10, + "import": 10, + "locale": "nl", + "imagery": "AGIV", + "conflation": 64 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95401395, + 51.201172 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123140244, + "host": "mapcomplete.osm.be", + "move": 183, + "theme": "grb", + "answer": 10, + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "conflation": 46 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.958468849999999, + 51.20860125 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123140240, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2504983, + 52.66339275 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123140237, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9628829, + 51.2056161 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123140214, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 420, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 76.92122185, + 19.52831915 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123139944, + "host": "mapcomplete.osm.be", + "move": 198, + "theme": "grb", + "answer": 8, + "import": 9, + "locale": "nl", + "imagery": "AGIV", + "conflation": 64 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9649377999999995, + 51.20321185 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123139711, + "host": "mapcomplete.osm.be", + "move": 188, + "theme": "grb", + "answer": 5, + "import": 11, + "locale": "nl", + "imagery": "AGIV", + "conflation": 58, + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9617236, + 51.20123735 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123139277, + "host": "mapcomplete.osm.be", + "move": 306, + "theme": "grb", + "answer": 1, + "import": 13, + "locale": "nl", + "imagery": "AGIV", + "conflation": 110, + "change_over_5000m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.957478350000001, + 51.199434600000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123209408, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/crossingtime.json", + "answer": 4, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.367085549999999, + 46.9591365 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123206929, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3761694, + 48.5556275 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 1, + "delete": 0, + "area": 7.42377600001896e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123205666, + "host": "pietervdvn.github.io", + "theme": "entrances", + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3486504, + 50.84785 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123204635, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1454779, + 48.7505859 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123203657, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1676516, + 48.6924021 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123201766, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4601745, + 51.2526896 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123201433, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 327, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.4121288, + 19.44209135 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123199079, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5156385, + 51.079959 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123198591, + "host": "mapcomplete.osm.be", + "move": 101, + "theme": "grb", + "answer": 1, + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "conflation": 32 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98184895, + 51.1791192 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123198570, + "host": "mapcomplete.osm.be", + "move": 18, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98149305, + 51.1800917 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123198326, + "host": "mapcomplete.osm.be", + "move": 111, + "theme": "grb", + "answer": 4, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 34 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98151085, + 51.18046215 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123197824, + "host": "mapcomplete.osm.be", + "move": 326, + "theme": "grb", + "answer": 11, + "import": 14, + "locale": "nl", + "imagery": "AGIV", + "conflation": 90 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9804771, + 51.1772915 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123191932, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 4, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5827691999999995, + 53.216485649999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123191890, + "host": "mapcomplete.osm.be", + "theme": "waste", + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5812226, + 53.2166886 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123191863, + "host": "mapcomplete.osm.be", + "theme": "waste", + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5812226, + 53.2166886 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123191667, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58169635, + 53.2166218 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123190471, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 6, + "locale": "nl", + "imagery": "fr.ign.bdortho", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9937018, + 49.356321 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123189685, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 568, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.6192983, + 20.40930745 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123186721, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.369058949999999, + 50.83688745 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123185883, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6303094, + 50.7737438 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123184977, + "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": [ + 5.9936655, + 49.3563223 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123182646, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6913992, + 50.1303574 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123182334, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 4, + "locale": "de", + "imagery": "osm", + "move:node/9865496705": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.89710555, + 50.2097343 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123182193, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8475558, + 52.8271882 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123178163, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.238242450000001, + 52.75213995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123176729, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 8, + "locale": "en", + "imagery": "fr.ign.bdortho" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3966043, + 45.4399591 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123175700, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.06039625, + 48.8374142 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123172273, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 4, + "locale": "ca", + "imagery": "osm", + "deletion": 1, + "add-image": 1, + "change_over_5000m": 6, + "deletion:node/9621654230": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1045707, + 38.834620099999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123252804, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 7, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3234463000000005, + 50.85378005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123252648, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4022181, + 52.5528387 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123250025, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3475309, + 50.8456127 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123248251, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7368936, + 50.0999954 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123248107, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 11, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_1000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.724153, + 50.1006582 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123247553, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 14, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7336387, + 50.09884395 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123247458, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9770677, + 51.032575 + ] + } + }, + { + "type": "Feature", + "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": 4, + "modify": 4, + "delete": 0, + "area": 0.0000366555933899371, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123247368, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 5, + "locale": "de", + "imagery": "osm", + "change_within_25m": 8, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.731505349999999, + 50.09861215 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123247296, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 11, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 4, + "change_within_25m": 11, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.731618300000001, + 50.098122599999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123247208, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.88796405, + 51.93446935 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123242689, + "host": "pietervdvn.github.io", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35012175, + 50.85339235 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123242631, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.581702700000001, + 55.70692645 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123237405, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9771864, + 51.0325165 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123237046, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 11, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23837425, + 50.7409488 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123237022, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2314671, + 50.7387163 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123236640, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 4, + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2325292, + 50.736611350000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123236066, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 5, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2360158, + 50.7313348 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123235464, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 332, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 82.46647795000001, + 20.39550055 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123234753, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6786802, + 50.0832972 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123234454, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.732138, + 50.0978891 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123233216, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2687791, + 53.208491550000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123232237, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 36, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47759805, + 50.8700484 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123232149, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 4, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7038165, + 50.1310675 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123232069, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3360868, + 50.8391168 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123231988, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0397407, + 50.9399552 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123231506, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 15, + "locale": "de", + "imagery": "Hessen-DOP20", + "add-image": 3, + "change_over_5000m": 3, + "change_within_25m": 14, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.703976149999999, + 50.13219775 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123231379, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.316601, + 50.8537057 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123231330, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "drinking_water", + "locale": "en", + "imagery": "CartoDB.Voyager", + "move:node/9860430193": "improve_accuracy", + "move:node/9860528200": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.421323350000002, + 52.555412950000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123230722, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.706001350000001, + 50.1327534 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123230411, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 9, + "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 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.704630250000001, + 50.13280425 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123230214, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 11, + "locale": "de", + "imagery": "Hessen-DOP20", + "add-image": 3, + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_50m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.705058300000001, + 50.1329532 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123229704, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 4, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.704203249999999, + 50.130189849999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123229452, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 23, + "locale": "de", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.70385945, + 50.1301372 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123229305, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "parkings", + "answer": 1, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.70865255, + 50.13439095 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123229163, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7055278, + 50.1307477 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123228977, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 162, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.58117425, + 20.45753985 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123228917, + "host": "pietervdvn.github.io", + "theme": "aed", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3178672, + 50.8563182 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123228876, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 6, + "locale": "de", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.70442105, + 50.1308371 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123228569, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "street_lighting", + "answer": 17, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.70791895, + 50.134321299999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123228456, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.70559485, + 50.1309592 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123228072, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "locale": "de", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.70564435, + 50.13229235 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123227716, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "street_lighting", + "answer": 14, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 17, + "move:node/9867916999": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.70720245, + 50.13419665 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123227355, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 15, + "locale": "de", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7058631, + 50.132867649999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123227004, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "locale": "de", + "imagery": "Hessen-DOP20", + "deletion": 1, + "change_over_5000m": 1, + "change_within_25m": 1, + "deletion:node/9867859922": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.70729, + 50.1342826 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123226529, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1224413, + 52.0718285 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123226513, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.8265496, + 51.29561325 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123226225, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 7, + "locale": "en", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 3, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1246373, + 52.07097625 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123225591, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6718616, + 50.8108499 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123225522, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6705815, + 50.8098967 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123225481, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6705815, + 50.8098967 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123224074, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 3, + "locale": "de", + "imagery": "osm", + "deletion": 2, + "deletion:node/9867677240": "testing point", + "deletion:node/9867741024": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.70578255, + 50.133472850000004 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 7, + "delete": 0, + "area": 0.0000129138609599925, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123224050, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 15, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.670014800000001, + 50.81153235 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123223362, + "host": "mapcomplete.osm.be", + "move": 60, + "theme": "grb", + "answer": 1, + "import": 12, + "locale": "nl", + "imagery": "AGIV", + "conflation": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0226856, + 51.16713915 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123222892, + "host": "mapcomplete.osm.be", + "move": 114, + "theme": "grb", + "answer": 2, + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "conflation": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02464745, + 51.167491749999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123222850, + "host": "mapcomplete.osm.be", + "move": 30, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.024857750000001, + 51.16783245 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123222833, + "host": "mapcomplete.osm.be", + "move": 5, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0250832, + 51.1677405 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123222810, + "host": "mapcomplete.osm.be", + "move": 45, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02538865, + 51.16743275 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123222681, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0239463, + 51.16610225 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123221859, + "host": "mapcomplete.osm.be", + "move": 194, + "theme": "grb", + "answer": 4, + "import": 6, + "locale": "nl", + "imagery": "AGIV", + "conflation": 48 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02313685, + 51.16560885 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123221849, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0219883, + 51.1657838 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123220842, + "host": "mapcomplete.osm.be", + "move": 178, + "theme": "grb", + "answer": 8, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 58 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02071565, + 51.1651279 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123220828, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0187690499999995, + 51.1645713 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123220814, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01871805, + 51.164439099999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123220805, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01853075, + 51.164741750000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123220789, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01831775, + 51.16476095 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123220780, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0183548, + 51.1646789 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123220143, + "host": "mapcomplete.osm.be", + "move": 128, + "theme": "grb", + "answer": 3, + "import": 10, + "locale": "nl", + "imagery": "AGIV", + "conflation": 42 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01660315, + 51.164446350000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123219853, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3761769, + 48.5554512 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123215119, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 45, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.6051961, + 21.9256546 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123295811, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "ca", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.090692, + 38.84743255 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123290413, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "answer": 31, + "import": 16, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2510205, + 52.3775404 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123288305, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.893483100000001, + 51.931309549999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123285972, + "host": "pietervdvn.github.io", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3335740000000005, + 50.870166299999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123285203, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 386, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.4675421, + 20.676624750000002 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123284110, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 10, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3248052, + 50.853042650000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123282216, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.254011049999999, + 52.76404325 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123282048, + "host": "pietervdvn.github.io", + "theme": "food", + "locale": "en", + "imagery": "osm", + "special-delete": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.316601, + 50.8537057 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123281287, + "host": "mapcomplete.osm.be", + "theme": "pets", + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.5830426, + 55.7072202 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123281172, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "LV_ORTOFOTO_C6", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 21.1372986, + 56.2122503 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123274521, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 5, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51963915, + 51.1549215 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123272200, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "locale": "en", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "deletion:node/9860430193": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4466715, + 52.5418311 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123270189, + "host": "mapcomplete.osm.be", + "theme": "pets", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.548343500000001, + 55.646708700000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123269792, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4760549, + 51.0309255 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123269175, + "host": "1234-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu51.gitpod.io", + "theme": "doctors", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2212722, + 51.2177581 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123263942, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.24605335, + 52.7443232 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123261767, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.977572, + 51.0337812 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123261274, + "host": "mapcomplete.osm.be", + "move": 78, + "theme": "grb", + "answer": 7, + "import": 7, + "locale": "nl", + "imagery": "AGIV", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97734585, + 51.0341993 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123256718, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 112, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.0731569, + 21.219516 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123337320, + "host": "mapcomplete.osm.be", + "move": 170, + "theme": "grb", + "answer": 3, + "import": 7, + "locale": "nl", + "imagery": "AGIV", + "conflation": 40 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01119525, + 51.165757549999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123337192, + "host": "mapcomplete.osm.be", + "move": 153, + "theme": "grb", + "import": 4, + "locale": "nl", + "imagery": "AGIV", + "conflation": 40 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.014655250000001, + 51.177172600000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123337147, + "host": "mapcomplete.osm.be", + "move": 67, + "theme": "grb", + "answer": 1, + "import": 3, + "locale": "nl", + "imagery": "AGIV", + "conflation": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0126683, + 51.1757078 + ] + } + }, + { + "type": "Feature", + "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": 1, + "modify": 2, + "delete": 0, + "area": 1.98112049999008e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123334133, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 39.12866445, + 51.65122045 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123334053, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 39.128990200000004, + 51.65118995 + ] + } + }, + { + "type": "Feature", + "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": 6, + "modify": 14, + "delete": 0, + "area": 3.05619839999085e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123333755, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 16, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 39.1291075, + 51.650946399999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123333237, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1172919, + 49.890911349999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123330501, + "host": "pietervdvn.github.io", + "theme": "fritures", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.352734849999999, + 50.856284 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123328508, + "host": "pietervdvn.github.io", + "theme": "fritures", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.352734849999999, + 50.856284 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123327996, + "host": "pietervdvn.github.io", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3523693, + 50.8564732 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 1, + "delete": 0, + "area": 8.74109199997864e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123326665, + "host": "pietervdvn.github.io", + "theme": "entrances", + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3523242, + 50.8565174 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123326096, + "host": "pietervdvn.github.io", + "theme": "toilets", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3529386, + 50.8564443 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123324547, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "trees", + "answer": 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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53898555, + 53.2275899 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123324537, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 3, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53906465, + 53.22740745 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123324460, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5450419, + 53.2255425 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123324045, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 37, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 12, + "change_within_25m": 28, + "change_within_50m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.553661399999999, + 53.216467550000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123320682, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 3, + "locale": "es", + "imagery": "osm", + "change_within_25m": 1, + "change_within_100m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.671420749999996, + -34.65507375 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123311529, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95568895, + 50.41570955 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123311469, + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3551079, + 50.8601402 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 1, + "delete": 0, + "area": 0.00000109834690000477, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123311316, + "host": "pietervdvn.github.io", + "theme": "entrances", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.354290349999999, + 50.860322499999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123310431, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4810843, + 52.4992968 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123309962, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 9, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26930625, + 53.2115793 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123309936, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2738183, + 53.2128636 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123309918, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 3, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27379215, + 53.21293765 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123309879, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 4, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2708255, + 53.21030505 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123308447, + "host": "mapcomplete.osm.be", + "move": 21, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01601245, + 51.1774846 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123308401, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 8, + "locale": "en", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27400675, + 53.2128497 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123307620, + "host": "mapcomplete.osm.be", + "move": 204, + "theme": "grb", + "answer": 2, + "import": 9, + "locale": "nl", + "imagery": "AGIV", + "conflation": 70 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0242524500000005, + 51.17689785 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123307609, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03024385, + 51.17425475 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123307600, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0301202499999995, + 51.1742572 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123306976, + "host": "mapcomplete.osm.be", + "move": 192, + "theme": "grb", + "answer": 9, + "import": 8, + "locale": "nl", + "imagery": "AGIV", + "conflation": 68 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0295691, + 51.172965149999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123306471, + "host": "mapcomplete.osm.be", + "move": 209, + "theme": "grb", + "answer": 5, + "import": 10, + "locale": "nl", + "imagery": "AGIV", + "conflation": 68 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02787455, + 51.1708804 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123306459, + "host": "mapcomplete.osm.be", + "move": 6, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0276141, + 51.1698564 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123306367, + "host": "mapcomplete.osm.be", + "move": 79, + "theme": "grb", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "conflation": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0268204999999995, + 51.16967915 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123306278, + "host": "mapcomplete.osm.be", + "move": 73, + "theme": "grb", + "answer": 1, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0254864, + 51.16883895 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123306091, + "host": "mapcomplete.osm.be", + "move": 64, + "theme": "grb", + "answer": 7, + "import": 3, + "locale": "nl", + "imagery": "AGIV", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0237792500000005, + 51.1686906 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123306086, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0231072999999995, + 51.1692078 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123305140, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 8, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.042586, + 50.94084145 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123305049, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.724225349999999, + 50.882357150000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123304530, + "host": "mapcomplete.osm.be", + "move": 252, + "theme": "grb", + "answer": 7, + "import": 11, + "locale": "nl", + "imagery": "AGIV", + "conflation": 76 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.018079950000001, + 51.16813465 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123304503, + "host": "mapcomplete.osm.be", + "move": 24, + "theme": "grb", + "answer": 1, + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.015393700000001, + 51.166972 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123302179, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4884889, + 51.2887072 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123301202, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -92.7451367, + 44.9763355 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123384491, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.2722887, + 48.0803802 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123384045, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "en", + "imagery": "Lombardia-Italy-CTR-DBT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.22097, + 45.5040643 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123383628, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.247095, + 45.5092449 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123383452, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.7243775, + -37.1400266 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123381036, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0192806, + 47.2529863 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123380714, + "host": "mapcomplete.osm.be", + "theme": "aed", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.711743, + 51.1322974 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123379734, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 3, + "locale": "it", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 3, + "change_within_25m": 4, + "deletion:node/9875165003": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6551553, + 45.22353285 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123377600, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3227687, + 50.849219 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123377563, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3227687, + 50.849219 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123377138, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 3, + "locale": "it", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 2, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6556573, + 45.224999 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123376043, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2367048, + 50.733657449999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123375189, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "food", + "answer": 3, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "move:node/9874872650": "improve_accuracy", + "deletion:node/9874872650": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.84802490000001, + 36.15596325 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123372433, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.370657, + 50.8626484 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123369179, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "fr", + "imagery": "fr.ign.bdortho" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7927293, + 45.1826286 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123363719, + "host": "pietervdvn.github.io", + "theme": "healthcare", + "answer": 7, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_500m": 5, + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.274313149999999, + 53.210387 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123362150, + "host": "pietervdvn.github.io", + "theme": "healthcare", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2157316, + 51.2021457 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123361805, + "host": "pietervdvn.github.io", + "theme": "healthcare", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72738975, + 51.0234795 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123360380, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2317284, + 51.2097688 + ] + } + }, + { + "type": "Feature", + "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": 4, + "modify": 4, + "delete": 0, + "area": 3.83384899999256e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123359792, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2482201, + 51.21430065 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123359687, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 3, + "import": 8, + "locale": "en", + "imagery": "osm", + "change_within_25m": 6, + "change_within_50m": 1, + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2483082000000003, + 51.2144464 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123355591, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5371124, + 44.8588263 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123353062, + "host": "pietervdvn.github.io", + "move": 1, + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2, + "move:node/6765253841": "relocated" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2346975000000002, + 51.2148086 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123350623, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 6, + "locale": "ca", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24067845, + 41.4394001 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123345976, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00532105, + 51.12607385 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123341467, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -92.7341457, + 44.955753349999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123341400, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -92.75185605, + 44.98040355 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123339532, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.021087, + 14.6670112 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123339507, + "host": "mapcomplete.osm.be", + "theme": "gh://mapbeks/mapcomplete_lgbt/main/version 5", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0198417, + 14.668093 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123415379, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.00872275, + 37.5417372 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123414601, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2552034499999998, + 50.99526815 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123412164, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4751139, + 50.794601549999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123403351, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.69396275, + 45.38946215 + ] + } + }, + { + "type": "Feature", + "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": 3, + "modify": 6, + "delete": 0, + "area": 0.00000183675378000127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123402197, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 1, + "change_within_25m": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.692764050000001, + 45.3871053 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123399197, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4619609, + 50.814777 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123398690, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 4, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0906582, + 45.3804684 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123398224, + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5401096, + 48.0179075 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123396778, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.19854625, + 52.7395868 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123396773, + "host": "mapcomplete.osm.be", + "theme": "fitness_station", + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3280661, + 50.8509734 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123396693, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 21, + "locale": "nl", + "imagery": "AGIV", + "add-image": 2, + "change_over_5000m": 5, + "change_within_25m": 10, + "change_within_50m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1571807, + 51.1630458 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123395798, + "host": "pietervdvn.github.io", + "theme": "drinking_water", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3238281999999995, + 50.84938835 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123395416, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 1, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6807523, + 44.4028939 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123394629, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35005275, + 50.8505425 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123394076, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 66, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 75.5928081, + 20.4675921 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123393800, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47113325, + 50.977705900000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123393015, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43689075, + 50.8266165 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 5, + "delete": 0, + "area": 4.39812800010563e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123390948, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "locale": "sl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.86321515, + 45.7419469 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123389016, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 95, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.60362495, + 24.7701855 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123388308, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "SPW_ORTHO_LAST", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1025454, + 50.4525125 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123387154, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 5, + "locale": "en", + "imagery": "USDA-NAIP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -92.73772065, + 44.957399800000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123386401, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 6, + "locale": "en", + "imagery": "USDA-NAIP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -92.7276188, + 44.956314250000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123386260, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 23, + "locale": "en", + "imagery": "USDA-NAIP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -92.72554745, + 44.9548793 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123448923, + "host": "pietervdvn.github.io", + "theme": "healthcare", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3942232, + 51.0424636 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123448906, + "host": "pietervdvn.github.io", + "theme": "healthcare", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3942232, + 51.0424636 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123447997, + "host": "mapcomplete.osm.be", + "move": 411, + "theme": "grb", + "answer": 5, + "import": 89, + "locale": "nl", + "imagery": "AGIV", + "conflation": 142 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89896445, + 51.1692921 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123447987, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89999675, + 51.166742150000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123447961, + "host": "mapcomplete.osm.be", + "move": 45, + "theme": "grb", + "import": 3, + "locale": "nl", + "imagery": "AGIV", + "conflation": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.900828450000001, + 51.166401 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123443911, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6478455, + 50.1416569 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123443641, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6475458, + 50.141623 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123443255, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.60396595, + 53.26197205 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123441645, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 9, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_25m": 4, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.01543805, + 39.957763 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123440075, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2326157, + -39.8414862 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123439303, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5685555, + 47.55526405 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123439236, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -92.74295570000001, + 44.977345650000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123438304, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -92.5990713, + 38.1499529 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123436871, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.88428695, + 49.802873000000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123432869, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4758835, + 46.990792 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123429820, + "host": "mapcomplete.osm.be", + "theme": "waste", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.545827, + 48.015408 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123429607, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5319128, + 48.036259799999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123428098, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 1, + "change_within_25m": 2, + "deletion:node/2560337679": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0175450999999995, + 50.945856649999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123426168, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3226006, + 52.4735694 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123425965, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6301946, + 52.4521252 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123424395, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3628262, + 52.48134 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123424289, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6324487, + 52.450505 + ] + } + }, + { + "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-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, + "id": 123422569, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.932564, + 48.504119700000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123421596, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 82, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6871397, + 50.5612681 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123421013, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5823176, + 51.1427792 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123420942, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5823152, + 51.1427924 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123420883, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5823152, + 51.1427924 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123418574, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.23390365, + 52.72556065 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123493714, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6103063000000004, + 50.835102250000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123493413, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.11560165, + 50.29126825 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123493410, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "locale": "de", + "imagery": "osm", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.11560165, + 50.29126825 + ] + } + }, + { + "type": "Feature", + "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": 6, + "modify": 1, + "delete": 1, + "area": 0.00260993232828998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123493269, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 6, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 6, + "change_within_1000m": 6, + "change_within_5000m": 1, + "deletion:node/9881975006": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.12023485, + 50.24758425 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123492994, + "host": "mapcomplete.osm.be", + "split": 3, + "theme": "maxspeed", + "answer": 14, + "locale": "de", + "imagery": "osm", + "relation-fix": 1, + "change_over_5000m": 8, + "change_within_5000m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.465053000000001, + 49.5560988 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123491914, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0077544, + 51.1302393 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123490669, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "locale": "de", + "imagery": "osmfr", + "add-image": 1, + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2312099, + 48.8079918 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123489845, + "host": "mapcomplete.osm.be", + "move": 380, + "theme": "grb", + "answer": 5, + "import": 83, + "locale": "nl", + "imagery": "AGIV", + "conflation": 136 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89849425, + 51.16053265 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123489623, + "host": "mapcomplete.osm.be", + "move": 105, + "theme": "grb", + "answer": 2, + "import": 13, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 42 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8995370000000005, + 51.16265025 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123489599, + "host": "mapcomplete.osm.be", + "move": 24, + "theme": "grb", + "locale": "nl", + "imagery": "AGIV", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89940835, + 51.16527125 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123489214, + "host": "mapcomplete.osm.be", + "move": 184, + "theme": "grb", + "import": 19, + "locale": "nl", + "imagery": "AGIV", + "conflation": 56 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89915145, + 51.1662039 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123489177, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7194186, + 50.9324716 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123488941, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7185752, + 50.9330447 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123488284, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3403407, + 52.4648407 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123487988, + "host": "mapcomplete.osm.be", + "move": 385, + "theme": "grb", + "answer": 6, + "import": 80, + "locale": "nl", + "imagery": "AGIV", + "conflation": 144 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.903324, + 51.168999299999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123487924, + "host": "mapcomplete.osm.be", + "move": 60, + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "AGIV", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.903224, + 51.16813715 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123487799, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.449419500000001, + 47.63106415 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123486536, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7192899, + 50.932463799999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123484705, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29555255, + 51.3852373 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123483512, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3356943, + 52.46039435 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123482406, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3226006, + 52.4735694 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123479757, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6913764, + 50.1230201 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123479728, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6913764, + 50.1230201 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123479694, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6914623, + 50.1232161 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123479294, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 1, + "change_within_50m": 2, + "deletion:node/9881200327": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6920269, + 50.1245385 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123479223, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "de", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 1, + "change_within_25m": 2, + "deletion:node/9881135668": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6915374, + 50.1247896 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123479188, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6919343, + 50.1246297 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123478902, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69161785, + 50.124689000000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123478549, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6922026, + 50.1268565 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123478422, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69173585, + 50.12542415 + ] + } + }, + { + "type": "Feature", + "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": 8, + "modify": 5, + "delete": 0, + "area": 0.00000287375065001092, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123478373, + "host": "mapcomplete.osm.be", + "theme": "kerbs_and_crossings", + "answer": 8, + "locale": "de", + "imagery": "osm", + "change_within_25m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69162955, + 50.125074850000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123478363, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69173855, + 50.1256683 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123478351, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6919665, + 50.1277404 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123478212, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.692173050000001, + 50.127889100000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123478172, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6923796, + 50.1280378 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123478167, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 12, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 3, + "change_within_25m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69185925, + 50.126054350000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123477968, + "host": "mapcomplete.osm.be", + "theme": "kerbs_and_crossings", + "answer": 5, + "locale": "de", + "imagery": "osm", + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6919912, + 50.12884405 + ] + } + }, + { + "type": "Feature", + "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": 8, + "modify": 6, + "delete": 0, + "area": 0.0000182454571200201, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123477719, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 13, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_25m": 17 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6895947, + 50.1277962 + ] + } + }, + { + "type": "Feature", + "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": 6, + "modify": 4, + "delete": 0, + "area": 0.00000387253650000138, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123477649, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 7, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_25m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6919912, + 50.12780455 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123477531, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3276934, + 52.4746317 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123477331, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 5, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69204835, + 50.126283799999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123477218, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7432115, + 50.9570524 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123477207, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 10, + "locale": "de", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69310645, + 50.1290721 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123477140, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6914757, + 50.1229754 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123477106, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 7, + "locale": "de", + "imagery": "osm", + "add-image": 6, + "change_over_5000m": 7, + "change_within_25m": 12, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.692195900000002, + 50.12611875 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123476859, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.26092675, + 52.77349355 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123476840, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6932312, + 50.12955785 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123476802, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69134, + 50.1242818 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123476508, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69272525, + 50.129039950000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123476013, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 1, + "change_within_25m": 1, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69346475, + 50.129491200000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123475919, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "street_lighting", + "answer": 13, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.692793349999999, + 50.1294951 + ] + } + }, + { + "type": "Feature", + "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": 3, + "modify": 4, + "delete": 0, + "area": 2.5027200000225e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123475855, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6928234, + 50.129319699999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123475411, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9088002, + 51.218563 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123475293, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 33, + "locale": "es", + "imagery": "EsriWorldImageryClarity", + "change_over_5000m": 2, + "change_within_25m": 23, + "change_within_50m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.64560045, + -34.6522871 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123474099, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 68, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.48960055, + 22.2138646 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123471923, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6469427000000003, + 50.866638449999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123471410, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6028758, + 50.7487772 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123470798, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "deletion": 1, + "deletion:node/9880818368": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6687225, + 50.1139187 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123468355, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 12, + "locale": "en", + "imagery": "UrbisAdmNL", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3543008, + 50.8582307 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123467762, + "host": "pietervdvn.github.io", + "theme": "healthcare", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3419465, + 50.8574806 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123467434, + "host": "mapcomplete.osm.be", + "split": 9, + "theme": "maxspeed", + "answer": 22, + "locale": "de", + "imagery": "osm", + "relation-fix": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2958872, + 50.7185388 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123467406, + "host": "pietervdvn.github.io", + "theme": "campersite", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33484565, + 50.8531936 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123467289, + "host": "pietervdvn.github.io", + "theme": "sport_pitches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.334718, + 50.8529461 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123466602, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 12, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69311365, + 50.13003315 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123466505, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6919799, + 50.1303918 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123466376, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6927471, + 50.1303557 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123466264, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 11, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.692612950000001, + 50.1303617 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123466143, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 5, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.692670199999998, + 50.1304904 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123465979, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 8, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69263575, + 50.1303677 + ] + } + }, + { + "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.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, + "id": 123465315, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 2, + "import:node/9880599835": "source: https://osm.org/note/3261655" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9056906, + 51.2270708 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123464127, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5171091, + 44.8753434 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123461340, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0299578, + 49.59787275 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123460536, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_1000m": 2, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2135026, + 51.448665399999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123460484, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5823176, + 51.1427792 + ] + } + }, + { + "type": "Feature", + "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", + "id": 123460405, + "host": "pietervdvn.github.io", + "theme": "uk_addresses", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96062815, + 54.43353625 + ] + } + }, + { + "type": "Feature", + "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": 3, + "modify": 1, + "delete": 0, + "area": 0.00000371916640000556, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123457873, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8835677, + 50.901721699999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123456373, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7782664500000003, + 51.0313905 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123452760, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "es", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2326157, + -39.8414862 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123539087, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "US_Forest_Service_roads", + "change_over_5000m": 1, + "change_within_500m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.1283817, + 39.9631764 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123536568, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60192385, + 50.9219644 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123530414, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 132, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 81.29876095, + 21.50988335 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123526942, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3389398, + 50.8554437 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123524309, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3276934, + 52.4746317 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123523395, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "en", + "imagery": "US_Forest_Service_roads", + "change_over_5000m": 1, + "change_within_25m": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.12977595000001, + 39.97835 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123523022, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5319971, + 50.8025429 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123522299, + "host": "mapcomplete.osm.be", + "theme": "kerbs_and_crossings", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6865672, + 50.1149765 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123522092, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "locale": "de", + "imagery": "osm", + "deletion": 1, + "change_over_5000m": 2, + "deletion:node/9883245813": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0222752, + 50.3444745 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123521283, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6009434000000002, + 50.954047700000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123519910, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 11, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 17 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.10072715, + 50.2927502 + ] + } + }, + { + "type": "Feature", + "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": 10, + "modify": 8, + "delete": 0, + "area": 0.00000711804872999865, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123519605, + "host": "mapcomplete.osm.be", + "theme": "kerbs_and_crossings", + "answer": 12, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.102233349999999, + 50.29029165 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123519352, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 6, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.64257445, + 50.253342700000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123518163, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3441644, + 50.8698144 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123517910, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 5, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3270144, + 50.8738529 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123517478, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 1, + "deletion:node/8528356079": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6023241, + 50.9514423 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123517283, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3188122, + 50.8748549 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123517139, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3066028, + 50.8794616 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123517034, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 4, + "locale": "de", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.31895815, + 50.87707975 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123516811, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3054226, + 50.8788369 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123516508, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.30326995, + 50.88698215 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123516301, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3087137, + 50.8793023 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123516050, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3332078, + 50.8515033 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123515973, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.514606149999999, + 50.5447064 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123515759, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 4, + "locale": "de", + "imagery": "osm", + "move:node/9882977876": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.308798849999999, + 50.8848313 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123513965, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 77.2278029, + 28.540292299999997 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123513059, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6012911, + 50.9007556 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123511246, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34972475, + 50.853354800000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123510338, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5640763, + 53.0198777 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123507890, + "host": "pietervdvn.github.io", + "theme": "healthcare", + "answer": 4, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75479625, + 51.0543655 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123507240, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "charging_stations", + "answer": 10, + "locale": "de", + "imagery": "CartoDB.Voyager", + "move:node/9882637868": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.973530699999998, + 49.15683595 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123506946, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 9, + "locale": "de", + "imagery": "osm", + "move:node/9882666500": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.969486250000003, + 49.1522355 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123506496, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.92277665, + 49.2064162 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123505300, + "host": "127.0.0.1:1234", + "theme": "rainbow_crossings", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2136858, + 51.2096294 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123504800, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97468455, + 51.2524631 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123503971, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 18, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.98691975, + 49.7466383 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123503961, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5337258, + 53.2412012 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123503896, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5337258, + 53.2412012 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123503619, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.686402300000001, + 50.114918 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123500798, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "street_lighting", + "locale": "de", + "imagery": "Mapbox", + "change_over_5000m": 6, + "change_within_25m": 1, + "move:node/9882447303": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.05608175, + 48.514451449999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123500387, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4669206, + 50.8169471 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123496828, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 82.28504065, + 17.2896523 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123583324, + "host": "pietervdvn.github.io", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3965915, + 51.0414568 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 2, + "delete": 0, + "area": 1.76101600000539e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123582881, + "host": "pietervdvn.github.io", + "theme": "onwheels", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_50m": 2, + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.334566, + 50.85282875 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123581789, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51038285, + 50.7472396 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123580447, + "host": "mapcomplete.osm.be", + "theme": "maps", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77348755, + 50.9699747 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123578265, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5338631, + 50.8408215 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123577170, + "host": "pietervdvn.github.io", + "theme": "artwork", + "answer": 3, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 2, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33777605, + 50.85328695 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123576595, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.244235150000002, + 53.305176849999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123576498, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6609496000000004, + 50.9018874 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123576355, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39271165, + 50.975826 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123575910, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5514969, + 50.8702317 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123573901, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "nl", + "imagery": "UrbISOrtho", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39073475, + 50.857740050000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123573298, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3382987, + 50.8527023 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123573111, + "host": "mapcomplete.osm.be", + "theme": "fitness_station", + "locale": "en", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3385817, + 50.8525592 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123570562, + "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.2844324, + 50.8089564 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123569966, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5660331000000003, + 50.87679815 + ] + } + }, + { + "type": "Feature", + "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": 1, + "modify": 0, + "delete": 0, + "area": 0.00000400166457998013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123568212, + "host": "localhost:1234", + "theme": "street_lighting_assen", + "import": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5693743, + 53.03102955 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123567799, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5565109, + 50.8930177 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123566608, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5514928, + 50.8898673 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123562801, + "host": "pietervdvn.github.io", + "theme": "rainbow_crossings", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55951405, + 52.9945467 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123562789, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.4150697, + 39.50862 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123561105, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 8, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.0083082, + 56.32945825 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123559287, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5797394999999996, + 50.9509128 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123555663, + "host": "localhost:1234", + "theme": "street_lighting_assen", + "import": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5687446, + 53.0315828 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123551822, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3495739, + 53.2272169 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123551791, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3495438, + 53.2272128 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123551582, + "host": "mapcomplete.osm.be", + "theme": "personal", + "answer": 1, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7367824, + 44.4245821 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123550356, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1721384, + 50.8861478 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123550329, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1721384, + 50.8861478 + ] + } + }, + { + "type": "Feature", + "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": 5, + "modify": 5, + "delete": 0, + "area": 3.82586469996871e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123550018, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 20, + "locale": "nl", + "imagery": "AGIV", + "add-image": 1, + "change_over_5000m": 5, + "change_within_25m": 11, + "change_within_100m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17266745, + 50.88569085 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123549605, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40858775, + 53.24424365 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123549269, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 20, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2, + "change_over_5000m": 11, + "change_within_25m": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.408651949999999, + 53.244034049999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123549234, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "import": 22, + "locale": "en", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6072188, + 49.975134049999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123549223, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48670965, + 53.1321753 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123548310, + "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.8009799, + 43.3224615 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123627638, + "host": "pietervdvn.github.io", + "theme": "rainbow_crossings", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3530562, + 50.8494852 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123625442, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "Mapbox", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.748499800000001, + 53.1294085 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123625070, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 4, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.257382, + 53.2308391 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123625047, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2574178, + 53.2308134 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123625006, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 6, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "add-image": 1, + "change_within_25m": 8, + "move:node/2961150141": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25738445, + 53.23295915 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123624840, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2597489, + 53.234356 + ] + } + }, + { + "type": "Feature", + "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": 5, + "modify": 12, + "delete": 0, + "area": 18.2421325076716, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123624359, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 21, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 29 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9187388499999996, + 48.40095665 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123623904, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.842235, + 50.9133423 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123623175, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.3466049, + 51.6684015 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123623127, + "host": "pietervdvn.github.io", + "theme": "artwork", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3537472, + 50.8614361 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123621853, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5186683, + 50.5592132 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123621793, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 6, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5166972, + 50.5518221 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123621751, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 4, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.526132, + 50.529706149999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123621481, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4734148, + 50.5334662 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123621468, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7230132, + 53.0752917 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123621382, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9641853, + 48.8335071 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123621151, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 3, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9622671, + 48.833303 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123621088, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9620207, + 48.8329258 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123620962, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5329719, + 50.5529775 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123620887, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 8, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5331395, + 50.553031849999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123620884, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5333071, + 50.5530862 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123620618, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.535273700000001, + 50.545664 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123620597, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5372403, + 50.5382418 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123620588, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5372403, + 50.5382418 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123620576, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5372403, + 50.5382418 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123620174, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 11, + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4856884, + 50.5407609 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123620138, + "host": "pietervdvn.github.io", + "theme": "rainbow_crossings", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.242761, + 50.7348997 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123618326, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3503419, + 52.3227754 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123618296, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.73725, + 53.10148865 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123618212, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.80405515, + 53.161050700000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123618140, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "Mapbox", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7471712, + 53.1687541 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123618133, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7553549, + 53.1319227 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123617797, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3353671, + 52.4741701 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123617278, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.0700356, + 40.0035473 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123616728, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 10, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.00421665, + 49.59526795 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123616349, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 71, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.017350350000001, + 49.597511850000004 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123614214, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 4, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08363225, + 53.1146534 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123612418, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "de", + "imagery": "EsriWorldImagery", + "change_over_5000m": 1, + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3085216, + 50.986428 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123611712, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.5085103, + 48.435458 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123611469, + "host": "mapcomplete.osm.be", + "theme": "kerbs_and_crossings", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3542622, + 50.84900815 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123611387, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.5086042, + 48.4356241 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123611264, + "host": "mapcomplete.osm.be", + "theme": "kerbs_and_crossings", + "answer": 21, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3545867000000005, + 50.849776199999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123609185, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8668697, + 50.9147932 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123608457, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "basemap.at-orthofoto", + "move:node/9887293853": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.203389900000001, + 47.27520455 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123608350, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.064464, + 48.8763218 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123608313, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0644565, + 48.8763257 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123607966, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "locale": "en", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2270991, + 50.84403035 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123607149, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.5298026, + 62.5495334 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123604343, + "host": "pietervdvn.github.io", + "theme": "food", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3547137, + 50.8587929 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123598974, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.962196599999999, + 48.834944750000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123598933, + "host": "mapcomplete.osm.be", + "theme": "education", + "answer": 4, + "locale": "nl", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3689584, + 53.1618661 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123597930, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "ru", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8774472, + 56.2496226 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123590499, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_within_1000m": 3, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.95422765, + 48.8313603 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123587834, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "locale": "de", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.391646, + 47.4549286 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123669775, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6812917, + 50.843940599999996 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123667622, + "host": "pietervdvn.github.io", + "theme": "uk_addresses", + "answer": 9, + "import": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_25m": 7, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0711343, + 51.74703395 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123667202, + "host": "pietervdvn.github.io", + "theme": "uk_addresses", + "answer": 12, + "import": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.07138655, + 51.74715655 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123666797, + "theme": "climbing", + "language": "de", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.4192769, + 47.2154267 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123665710, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3309292, + 51.12872265 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123664117, + "host": "pietervdvn.github.io", + "theme": "rainbow_crossings", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "link-image": 2, + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3972354, + 51.2213769 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123663987, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.329485, + 51.1278819 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123663056, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.5030391, + 48.449626 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123660836, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9461899, + 48.8319112 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123660757, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9461018, + 48.8318732 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123660664, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9472149, + 48.831522250000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123660657, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.760752400000001, + 53.09548625 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123659355, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "AGIV", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3289462, + 51.1282551 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123659333, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3289462, + 51.1282551 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123659305, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3293506, + 51.1282639 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123659301, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7121933, + 53.16558465 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123659213, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.81609175, + 53.1606221 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123658369, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "Mapbox", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.793873, + 53.12854575 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123657462, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 2, + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2738593, + 53.3025364 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123657454, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2737144, + 53.3025769 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123657435, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 2, + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27371845, + 53.302613699999995 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123657426, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 5, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 3, + "change_within_1000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2737298500000005, + 53.3026786 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123657397, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 1, + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2736393, + 53.3027251 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123657156, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6718392, + 50.1353073 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123657071, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "locale": "de", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6719519, + 50.1343686 + ] + } + }, + { + "type": "Feature", + "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": 3, + "modify": 0, + "delete": 0, + "area": 0.0000013993483700001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123657021, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.671927749999998, + 50.13502015 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123656265, + "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": [ + 3.3856934, + 51.3450867 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123654507, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 18, + "locale": "nl", + "imagery": "Actueel_orthoHR_WMTS", + "change_over_5000m": 10, + "change_within_25m": 10, + "change_within_50m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2732968, + 53.30264215 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123653060, + "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": [ + 3.3816379, + 51.3054761 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123653017, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "it", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.010827899999999, + 45.83011205 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123652668, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 5, + "locale": "it", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.0121658, + 45.838027249999996 + ] + } + }, + { + "type": "Feature", + "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": 1, + "modify": 2, + "delete": 0, + "area": 0.00000762820683999604, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123651552, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 14, + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8646532000000002, + 51.20831045 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123651528, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8662432, + 51.2093176 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123651427, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "osm", + "move:node/7816741287": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8662080999999997, + 51.20931985 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123646769, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "answer": 2, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4989511, + 50.5558146 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123644215, + "host": "pietervdvn.github.io", + "theme": "shops", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2480663, + 51.2142315 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123644146, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6703506, + 50.1395089 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123644098, + "host": "mapcomplete.osm.be", + "theme": "maxspeed", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.67023875, + 50.1398563 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123643833, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_25m": 3, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6701434, + 50.1399228 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123643753, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6693475, + 50.1414944 + ] + } + }, + { + "type": "Feature", + "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": 1, + "modify": 2, + "delete": 0, + "area": 0.00000224968160999742, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123643697, + "host": "mapcomplete.osm.be", + "theme": "kerbs_and_crossings", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.66968775, + 50.14085815 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123643547, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "locale": "de", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.4933667, + 48.4126507 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123643496, + "host": "mapcomplete.osm.be", + "theme": "waste", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6690691, + 50.1426789 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123643367, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 10, + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.468154949999999, + 50.53631505 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123643355, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "locale": "de", + "imagery": "osm", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.66893975, + 50.1425447 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123643234, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 2, + "locale": "de", + "imagery": "osm", + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.66963975, + 50.14388625 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123642872, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 6, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 2, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.49281165, + 48.413225350000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123642665, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.743342, + 53.1618607 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123642608, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 8, + "locale": "de", + "imagery": "CartoDB.Voyager", + "add-image": 4, + "change_within_25m": 11, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.492398699999999, + 48.41170955 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123642565, + "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.493946, + 48.4134178 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123640144, + "host": "mapcomplete.osm.be", + "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" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3352758, + 52.4905674 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123639752, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 3, + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4959418, + 50.5265573 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123639606, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 4, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5368651, + 50.5536447 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123639530, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.501719, + 50.5519811 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123639459, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5001204, + 50.55348865 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123639444, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.71727695, + 53.089279000000005 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123639442, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.498566199999999, + 50.55496905 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123638349, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4597009, + 50.5488264 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123638325, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4597009, + 50.5488264 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123638251, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.46977255, + 50.5507462 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123638242, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.46977255, + 50.5507462 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123637547, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 11, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.50674995, + 50.5506229 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 3, + "delete": 0, + "area": 1.169829000018e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123637388, + "host": "pietervdvn.github.io", + "theme": "entrances", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3963503, + 51.04184085 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123637196, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 13, + "locale": "de", + "imagery": "Hessen-DOP20" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.496289999999998, + 50.5416746 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 3, + "delete": 0, + "area": 4.27752900008529e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123637085, + "host": "pietervdvn.github.io", + "theme": "entrances", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39655575, + 51.04171245 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123636917, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 7, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.489703550000002, + 50.5353536 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123636861, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4906037, + 50.5305179 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123636824, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 7, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.497633650000001, + 50.5309527 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123636765, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 5, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5027568, + 50.55260175 + ] + } + }, + { + "type": "Feature", + "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": 2, + "modify": 4, + "delete": 0, + "area": 7.54526640004576e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123636516, + "host": "pietervdvn.github.io", + "theme": "entrances", + "answer": 3, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3987954, + 51.042190899999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123636499, + "host": "pietervdvn.github.io", + "theme": "entrances", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3996335, + 51.04234115 + ] + } + }, + { + "type": "Feature", + "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": 10, + "modify": 14, + "delete": 0, + "area": 0.00000540273583998972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 123636231, + "host": "pietervdvn.github.io", + "theme": "entrances", + "answer": 17, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 25 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3979549000000002, + 51.0418691 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123635991, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.727663100000001, + 53.131462799999994 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123635852, + "host": "pietervdvn.github.io", + "theme": "onwheels", + "answer": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 3, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3599881, + 51.02213405 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123635809, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.379381, + 50.8641872 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123635795, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.379381, + 50.8641872 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123635252, + "host": "pietervdvn.github.io", + "theme": "healthcare", + "answer": 3, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32288045, + 51.002000300000006 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123632557, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.962014, + 48.8340852 + ] + } + }, + { + "type": "Feature", + "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, + "id": 123632252, + "host": "mapcomplete.osm.be", + "theme": "maps", + "answer": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8040841, + 50.9455809 + ] + } + } + ] +} \ No newline at end of file diff --git a/hospital.svg b/hospital.svg deleted file mode 100644 index 5ef1a4b63..000000000 --- a/hospital.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - diff --git a/langs/en.json b/langs/en.json index e893fb262..aa7323d5c 100644 --- a/langs/en.json +++ b/langs/en.json @@ -235,6 +235,8 @@ "skip": "Skip this question", "skippedQuestions": "Some questions are skipped", "testing": "Testing - changes won't be saved", + "useSearch": "Use the search above to see presets", + "useSearchForMore": "Use the search function to search within {total} more values....", "weekdays": { "abbreviations": { "friday": "Fri", diff --git a/langs/layers/de.json b/langs/layers/de.json index bfe2f47f8..b563fa055 100644 --- a/langs/layers/de.json +++ b/langs/layers/de.json @@ -5122,6 +5122,11 @@ } }, "tagRenderings": { + "8": { + "override": { + "question": "Was ist die Hauptsprache dieser Schule?
Welche Sprache wird mit den Schülern in den nicht sprachbezogenen Kursen und mit der Verwaltung gesprochen?
" + } + }, "capacity": { "question": "Wie viele Schüler können sich maximal an dieser Schule anmelden?", "render": "Diese Schule kann höchstens {capacity} Schüler aufnehmen" @@ -5169,30 +5174,6 @@ }, "question": "Welche Geschlechter können sich an dieser Schule anmelden?" }, - "language": { - "freeform": { - "placeholder": "Sprache in Englisch in Kleinbuchstaben" - }, - "mappings": { - "0": { - "then": "Die Hauptsprache dieser Schule ist unbekannt" - }, - "1": { - "then": "Französisch ist die Hauptsprache von {name}" - }, - "2": { - "then": "Niederländisch ist die Hauptsprache von {name}" - }, - "3": { - "then": "Deutsch ist die Hauptsprache von {name}" - }, - "4": { - "then": "Die Hauptsprache dieser Schule ist unbekannt" - } - }, - "question": "Was ist die Hauptsprache dieser Schule?
Welche Sprache wird mit den Schülern in den nicht sprachbezogenen Kursen und mit der Verwaltung gesprochen?
", - "render": "{school:language} ist die Hauptsprache von {title()}" - }, "school-name": { "question": "Wie lautet der Name dieser Schule?", "render": "Diese Schule heißt {name}" diff --git a/langs/layers/en.json b/langs/layers/en.json index deb5fa46e..b83c28225 100644 --- a/langs/layers/en.json +++ b/langs/layers/en.json @@ -5469,6 +5469,16 @@ } }, "tagRenderings": { + "8": { + "override": { + "+mappings": { + "0": { + "then": "The main language of this school is unknown" + } + }, + "question": "What is the main language of this school?
What language is spoken with the students in non-language related courses and with the administration?
" + } + }, "capacity": { "question": "How much students can at most enroll in this school?", "render": "This school can enroll at most {capacity} students" @@ -5516,30 +5526,6 @@ }, "question": "Which genders can enroll at this school?" }, - "language": { - "freeform": { - "placeholder": "Language in lowercase English" - }, - "mappings": { - "0": { - "then": "The main language of this school is unknown" - }, - "1": { - "then": "French is the main language of {name}" - }, - "2": { - "then": "Dutch is the main language of {name}" - }, - "3": { - "then": "German is the main language of {name}" - }, - "4": { - "then": "The main language of this school is unknown" - } - }, - "question": "What is the main language of this school?
What language is spoken with the students in non-language related courses and with the administration?
", - "render": "{school:language} is the main language of {title()}" - }, "school-name": { "question": "What is the name of this school?", "render": "This school is named {name}" diff --git a/langs/layers/fr.json b/langs/layers/fr.json index 388f83931..3ff5eb6e6 100644 --- a/langs/layers/fr.json +++ b/langs/layers/fr.json @@ -2419,6 +2419,11 @@ } }, "tagRenderings": { + "8": { + "override": { + "question": "Quelle est la langue principale de cette école ?
Quelle langue est parlée avec les élèves des cours non linguistiques et avec l'administration ?
" + } + }, "capacity": { "question": "Combien d'élèves peuvent s'inscrire au maximum dans cette école ?", "render": "Cette école peut accueillir au maximum {capacity} étudiants" @@ -2466,18 +2471,6 @@ }, "question": "Quels genres de personnes peuvent s'inscrire dans cette école ?" }, - "language": { - "mappings": { - "0": { - "then": "La langue principale de cette école est inconnue" - }, - "4": { - "then": "La langue principale de cette école est inconnue" - } - }, - "question": "Quelle est la langue principale de cette école ?
Quelle langue est parlée avec les élèves des cours non linguistiques et avec l'administration ?
", - "render": "{school:language} est la langue principale de {title()}" - }, "school-name": { "question": "Quel est le nom de cet établissement scolaire?", "render": "Cet établissement scolaire s'appelle {name}" diff --git a/langs/layers/nl.json b/langs/layers/nl.json index 18c26b124..548a74d7f 100644 --- a/langs/layers/nl.json +++ b/langs/layers/nl.json @@ -5125,6 +5125,16 @@ } }, "tagRenderings": { + "8": { + "override": { + "+mappings": { + "0": { + "then": "De voertaal van deze school is niet gekend" + } + }, + "question": "Wat is de voertaal van deze school?
Welke taal wordt met de studenten gesproken in niet-taal-gerelateerde vakken en met de administratie?
" + } + }, "capacity": { "question": "Ten hoogste hoeveel studenten kunnen er les volgen in deze school?", "render": "Deze school kan maximaal {capacity} studenten lesgeven" @@ -5172,30 +5182,6 @@ }, "question": "Mogen jongens en meisjes les volgen op deze school?" }, - "language": { - "freeform": { - "placeholder": "Taal in lowercase Engel" - }, - "mappings": { - "0": { - "then": "De voertaal van deze school is niet gekend" - }, - "1": { - "then": "Frans is de voertaal van {name}" - }, - "2": { - "then": "Nederlands is de voertaal van {name}" - }, - "3": { - "then": "Duits is de voertaal van {name}" - }, - "4": { - "then": "De voertaal van deze school is niet gekend" - } - }, - "question": "Wat is de voertaal van deze school?
Welke taal wordt met de studenten gesproken in niet-taal-gerelateerde vakken en met de administratie?
", - "render": "{school:language} is de voertaal van {title()}" - }, "school-name": { "question": "Wat is de naam van deze school?", "render": "Deze school heet {name}" diff --git a/missing_editor.json b/missing_editor.json new file mode 100644 index 000000000..6b53805a1 --- /dev/null +++ b/missing_editor.json @@ -0,0 +1,12 @@ +[ + "https://www.osm.org/changeset/117826283", + "https://www.osm.org/changeset/117742017", + "https://www.osm.org/changeset/117522028", + "https://www.osm.org/changeset/117244083", + "https://www.osm.org/changeset/117010979", + "https://www.osm.org/changeset/118422299", + "https://www.osm.org/changeset/118344062", + "https://www.osm.org/changeset/118281107", + "https://www.osm.org/changeset/118228793", + "https://www.osm.org/changeset/118092916" +] \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 98f04eb85..b3193671f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -48,7 +48,7 @@ "libphonenumber-js": "^1.10.8", "lz-string": "^1.4.4", "mangrove-reviews": "^0.1.3", - "moment": "^2.29.2", + "moment": "^2.29.4", "opening_hours": "^3.6.0", "osm-auth": "^1.0.2", "osmtogeojson": "^3.0.0-beta.4", @@ -9831,9 +9831,9 @@ } }, "node_modules/moment": { - "version": "2.29.2", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.2.tgz", - "integrity": "sha512-UgzG4rvxYpN15jgCmVJwac49h9ly9NurikMWGPdVxm8GZD6XjkKPxDTjQQ43gtGgnV3X0cAyWDdP2Wexoquifg==", + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", "engines": { "node": "*" } @@ -24448,9 +24448,9 @@ "integrity": "sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA==" }, "moment": { - "version": "2.29.2", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.2.tgz", - "integrity": "sha512-UgzG4rvxYpN15jgCmVJwac49h9ly9NurikMWGPdVxm8GZD6XjkKPxDTjQQ43gtGgnV3X0cAyWDdP2Wexoquifg==" + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" }, "monotone-convex-hull-2d": { "version": "1.0.1", diff --git a/package.json b/package.json index 18abddf4c..efefdc6ee 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,8 @@ "generate:schemas": "ts2json-schema -p Models/ThemeConfig/Json/ -o Docs/Schemas/ -t tsconfig.json -R . -m \".*ConfigJson\" && ts-node scripts/fixSchemas.ts ", "generate:service-worker": "tsc service-worker.ts && git_hash=$(git rev-parse HEAD) && sed -i \"s/GITHUB-COMMIT/$git_hash/\" service-worker.js", "optimize-images": "cd assets/generated/ && find -name '*.png' -exec optipng '{}' \\; && echo 'PNGs are optimized'", - "reset:layeroverview": "echo {\\\"layers\\\":[], \\\"themes\\\":[]} > ./assets/generated/known_layers_and_themes.json && echo {\\\"layers\\\": []} > ./assets/generated/known_layers.json && rm -f ./asssets/generated/layers/*.json && rm -f ./assets/generated/themes/*.json && npm run generate:layeroverview && ts-node scripts/generateLayerOverview.ts --force", + "generate:graphs": "ts-node Docs/Tools/GenerateSeries.ts", + "reset:layeroverview": "echo {\\\"layers\\\":[], \\\"themes\\\":[]} > ./assets/generated/known_layers_and_themes.json && echo {\\\"layers\\\": []} > ./assets/generated/known_layers.json && rm -f ./assets/generated/layers/*.json && rm -f ./assets/generated/themes/*.json && npm run generate:layeroverview && ts-node scripts/generateLayerOverview.ts --force", "generate": "mkdir -p ./assets/generated; npm run reset:layeroverview; npm run generate:images; npm run generate:charging-stations; npm run generate:translations; npm run generate:licenses; npm run generate:layeroverview; npm run generate:service-worker", "generate:charging-stations": "cd ./assets/layers/charging_station && ts-node csvToJson.ts && cd -", "prepare-deploy": "npm run generate:service-worker && ./scripts/build.sh", @@ -52,7 +53,7 @@ "weblate-fix-heavy": "git remote rm weblate-layers; git remote add weblate-layers https://hosted.weblate.org/git/mapcomplete/layers/; git remote update weblate-layers; git merge weblate-layers/master", "housekeeping": "npm run generate && npm run generate:docs && npm run generate:contributor-list && git add Docs/* && git commit assets/ langs/ Docs/ -m 'Housekeeping...'", "parseSchools": "ts-node scripts/schools/amendSchoolData.ts", - "steal": "ts-node scripts/readIdPresets.ts" + "steal": "ts-node scripts/thieves/stealLanguages.ts" }, "keywords": [ "OpenStreetMap", @@ -106,7 +107,7 @@ "libphonenumber-js": "^1.10.8", "lz-string": "^1.4.4", "mangrove-reviews": "^0.1.3", - "moment": "^2.29.2", + "moment": "^2.29.4", "opening_hours": "^3.6.0", "osm-auth": "^1.0.2", "osmtogeojson": "^3.0.0-beta.4", diff --git a/scripts/fetchLanguages.ts b/scripts/fetchLanguages.ts index 12c9f4ae6..a622a8c07 100644 --- a/scripts/fetchLanguages.ts +++ b/scripts/fetchLanguages.ts @@ -6,19 +6,10 @@ import * as wds from "wikidata-sdk" import {Utils} from "../Utils"; import ScriptUtils from "./ScriptUtils"; import {existsSync, readFileSync, writeFileSync} from "fs"; -import * as used_languages from "../assets/generated/used_languages.json" import {QuestionableTagRenderingConfigJson} from "../Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson"; import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; - -const languageRemap = { - // MapComplete (or weblate) on the left, language of wikimedia on the right - "nb":"nb_NO", - "zh-hant":"zh_Hant", - "zh-hans":"zh_Hans", - "pt-br":"pt_BR" -} - -const usedLanguages : Set = new Set(used_languages.languages) +import WikidataUtils from "../Utils/WikidataUtils"; +import LanguageUtils from "../Utils/LanguageUtils"; async function fetch(target: string){ const regular = await fetchRegularLanguages() @@ -75,32 +66,13 @@ async function fetchSpecial(id: number, code: string) { return bindings } -function extract(data){ - console.log("Got "+data.length+" entries") - const perId = new Map>(); - for (const element of data) { - let id = element.code.value - id = languageRemap[id] ?? id - let labelLang = element.label["xml:lang"] - labelLang = languageRemap[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 -} - function getNativeList(langs: Map>){ const native = {} const keys: string[] = Array.from(langs.keys()) keys.sort() for (const key of keys) { const translations: Map = langs.get(key) - if(!usedLanguages.has(key)){ + if(!LanguageUtils.usedLanguages.has(key)){ continue } native[key] = translations.get(key) @@ -143,17 +115,17 @@ async function main(wipeCache = false){ console.log("Reusing the cached file") } const data = JSON.parse(readFileSync( cacheFile, "UTF8")) - const perId = extract(data) + const perId = WikidataUtils.extractLanguageData(data, WikidataUtils.languageRemapping) const nativeList = getNativeList(perId) writeFileSync("./assets/language_native.json", JSON.stringify(nativeList, null, " ")) const translations = Utils.MapToObj(perId, (value, key) => { - if(!usedLanguages.has(key)){ + if(!LanguageUtils.usedLanguages.has(key)){ return undefined // Remove unused languages } return Utils.MapToObj(value, (v, k ) => { - if(!usedLanguages.has(k)){ + if(!LanguageUtils.usedLanguages.has(k)){ return undefined } return v diff --git a/scripts/fixSchemas.ts b/scripts/fixSchemas.ts index aa2020523..ad71e2efa 100644 --- a/scripts/fixSchemas.ts +++ b/scripts/fixSchemas.ts @@ -5,9 +5,11 @@ import {readFileSync, writeFileSync} from "fs"; * Extracts the data from the scheme file and writes them in a flatter structure */ -interface JsonSchema { +export type JsonSchemaType = string | {$ref: string, description: string} | {type: string} | JsonSchemaType[] + +export interface JsonSchema { description?: string, - type?: string, + type?: JsonSchemaType, properties?: any, items?: JsonSchema, allOf?: JsonSchema[], diff --git a/scripts/generateLayerOverview.ts b/scripts/generateLayerOverview.ts index 36fb6d9e5..3bc8fc720 100644 --- a/scripts/generateLayerOverview.ts +++ b/scripts/generateLayerOverview.ts @@ -20,6 +20,7 @@ import {PrepareLayer} from "../Models/ThemeConfig/Conversion/PrepareLayer"; import {PrepareTheme} from "../Models/ThemeConfig/Conversion/PrepareTheme"; import {DesugaringContext} from "../Models/ThemeConfig/Conversion/Conversion"; import {Utils} from "../Utils"; +import {AllKnownLayouts} from "../Customizations/AllKnownLayouts"; // This scripts scans 'assets/layers/*.json' for layer definition files and 'assets/themes/*.json' for theme definition files. // It spits out an overview of those to be used to load them @@ -216,7 +217,7 @@ class LayerOverviewUtils { writeFileSync("./assets/generated/known_layers.json", JSON.stringify({layers: Array.from(sharedLayers.values())})) - if (recompiledThemes.length > 0) { + if (recompiledThemes.length > 0 && !(recompiledThemes.length === 1 && recompiledThemes[0] === "mapcomplete-changes")) { // mapcomplete-changes shows an icon for each corresponding mapcomplete-theme const iconsPerTheme = Array.from(sharedThemes.values()).map(th => ({ @@ -231,9 +232,13 @@ class LayerOverviewUtils { } this.checkAllSvgs() - - const green = s => '\x1b[92m' + s + '\x1b[0m' - console.log(green("All done!")) + + if(AllKnownLayouts.getSharedLayersConfigs().size == 0){ + console.error( "This was a bootstrapping-run. Run generate layeroverview again!") + }else{ + const green = s => '\x1b[92m' + s + '\x1b[0m' + console.log(green("All done!")) + } } private buildLayerIndex(doesImageExist: DoesImageExist, forceReload: boolean): Map { @@ -242,11 +247,11 @@ class LayerOverviewUtils { console.log(" ---------- VALIDATING BUILTIN LAYERS ---------") const sharedTagRenderings = this.getSharedTagRenderings(doesImageExist); - const sharedLayers = new Map() const state: DesugaringContext = { tagRenderings: sharedTagRenderings, - sharedLayers + sharedLayers: AllKnownLayouts.getSharedLayersConfigs() } + const sharedLayers = new Map() const prepLayer = new PrepareLayer(state); const skippedLayers: string[] = [] const recompiledLayers: string[] = [] @@ -258,6 +263,7 @@ class LayerOverviewUtils { const sharedLayer = JSON.parse(readFileSync(targetPath, "utf8")) sharedLayers.set(sharedLayer.id, sharedLayer) skippedLayers.push(sharedLayer.id) + console.log("Loaded "+sharedLayer.id) continue; } diff --git a/scripts/readIdPresets.ts b/scripts/thieves/readIdPresets.ts similarity index 95% rename from scripts/readIdPresets.ts rename to scripts/thieves/readIdPresets.ts index 5ed2023fb..0420c7064 100644 --- a/scripts/readIdPresets.ts +++ b/scripts/thieves/readIdPresets.ts @@ -1,16 +1,12 @@ /*** * Parses presets from the iD repository and extracts some usefull tags from them */ -import ScriptUtils from "./ScriptUtils"; +import ScriptUtils from "../ScriptUtils"; import {existsSync, readFileSync, writeFileSync} from "fs"; -import * as known_languages from "../assets/language_native.json" -import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; -import { - MappingConfigJson, - - QuestionableTagRenderingConfigJson -} from "../Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson"; -import SmallLicense from "../Models/smallLicense"; +import * as known_languages from "../../assets/language_native.json" +import {LayerConfigJson} from "../../Models/ThemeConfig/Json/LayerConfigJson"; +import {MappingConfigJson} from "../../Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson"; +import SmallLicense from "../../Models/smallLicense"; interface IconThief { steal(iconName: string): boolean diff --git a/scripts/thieves/stealLanguages.ts b/scripts/thieves/stealLanguages.ts new file mode 100644 index 000000000..cc775babf --- /dev/null +++ b/scripts/thieves/stealLanguages.ts @@ -0,0 +1,98 @@ +/* +* Uses the languages in and to every translation from wikidata to generate a language question in wikidata/wikidata +* */ + +import WikidataUtils from "../../Utils/WikidataUtils"; +import {existsSync, mkdirSync, readFileSync, writeFileSync} from "fs"; +import {LayerConfigJson} from "../../Models/ThemeConfig/Json/LayerConfigJson"; +import {MappingConfigJson} from "../../Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson"; +import LanguageUtils from "../../Utils/LanguageUtils"; +import * as perCountry from "../../assets/language_in_country.json" +import {Utils} from "../../Utils"; +function main(){ + const sourcepath = "assets/generated/languages-wd.json"; + console.log(`Converting language data file '${sourcepath}' into a tagMapping`) + const languages = WikidataUtils.extractLanguageData(JSON.parse(readFileSync(sourcepath, "utf8")), {}) + const mappings : MappingConfigJson[] = [] + const schoolmappings : MappingConfigJson[] = [] + + const countryToLanguage : Record = perCountry + const officialLanguagesPerCountry = Utils.TransposeMap(countryToLanguage); + + languages.forEach((l, code) => { + const then : Record= {} + l.forEach((tr, lng) => { + const languageCodeWeblate = WikidataUtils.languageRemapping[lng] ?? lng; + if(!LanguageUtils.usedLanguages.has(languageCodeWeblate)){ + return; + } + then[languageCodeWeblate] = tr + }) + + const officialCountries = Utils.Dedup(officialLanguagesPerCountry[code]?.map(s => s.toLowerCase()) ?? []) + const prioritySearch = officialCountries.length > 0 ? "_country~" + officialCountries.map(c => "((^|;)"+c+"($|;))").join("|") : undefined + mappings.push({ + if: "language:" + code + "=yes", + ifnot: "language:" + code + "=", + searchTerms: { + "*": [code] + }, + then, + priorityIf: prioritySearch + }) + + schoolmappings.push({ + if: "school:language=" + code, + then, + priorityIf: prioritySearch, + searchTerms: { + "*":[code] + } + }) + }) + + + const wikidataLayer = { + id: "wikidata", + description: "Various tagrenderings which are generated from Wikidata. Automatically generated with a script, don't edit manually", + "#dont-translate": "*", + "source": { + "osmTags": "id~*" + }, + "mapRendering": null, + tagRenderings: [ + { + id: "language", + // @ts-ignore + description: "Enables to pick *a single* 'language:=yes' within the mappings", + mappings, + }, + { + builtin: "wikidata.language", + override: { + id: "language-multi", + // @ts-ignore + description: "Enables to pick *multiple* 'language:=yes' within the mappings", + multiAnswer: true + } + + }, + { + id:"school-language", + // @ts-ignore + description: "Enables to pick a single 'school:language=' within the mappings", + multiAnswer: true, + mappings: schoolmappings + } + ] + } + const dir = "./assets/layers/wikidata/" + if(!existsSync(dir)){ + mkdirSync(dir) + } + const path = dir + "wikidata.json" + writeFileSync(path, JSON.stringify(wikidataLayer, null, " ")) + console.log("Written "+path) +} + +main() \ No newline at end of file diff --git a/test/Models/ThemeConfig/Conversion/CreateNoteImportLayer.spec.ts b/test/Models/ThemeConfig/Conversion/CreateNoteImportLayer.spec.ts index be13f28bf..6cf14a4ef 100644 --- a/test/Models/ThemeConfig/Conversion/CreateNoteImportLayer.spec.ts +++ b/test/Models/ThemeConfig/Conversion/CreateNoteImportLayer.spec.ts @@ -20,7 +20,7 @@ describe("CreateNoteImportLayer", () => { const layer = layerPrepare.convertStrict(bookcases, "ImportLayerGeneratorTest:Parse bookcases") const generator = new CreateNoteImportLayer() const generatedLayer: LayerConfigJson = generator.convertStrict(layer, "ImportLayerGeneratorTest: convert") - expect(generatedLayer.isShown.mappings[1].if["and"][1].or[0].and[0]).deep.equal("_tags~(^|.*;)amenity=public_bookcase($|;.*)") + expect(generatedLayer.isShown["and"][1].or[0].and[0]).deep.equal("_tags~(^|.*;)amenity=public_bookcase($|;.*)") expect(generatedLayer.minzoom <= layer.minzoom, "Zoomlevel is to high").true let renderings = Utils.NoNull(Utils.NoNull(generatedLayer.tagRenderings .map(tr => (tr).render))